Files
mozjpeg/turbojpeg-mapfile
DRC b9ab64d8db TurboJPEG: Thread-safe error message retrieval
Introduce a new C API function (tjGetErrorStr2()) that can be used to
retrieve compression/decompression/transform error messages in a
thread-safe (i.e. instance-specific) manner.  Retrieving error messages
from global functions is still thread-unsafe.

Addresses a concern expressed in #151.
2017-06-27 10:58:36 -05:00

63 lines
855 B
Plaintext
Executable File

TURBOJPEG_1.0
{
global:
tjInitCompress;
tjCompress;
TJBUFSIZE;
tjInitDecompress;
tjDecompressHeader;
tjDecompress;
tjDestroy;
tjGetErrorStr;
local:
*;
};
TURBOJPEG_1.1
{
global:
TJBUFSIZEYUV;
tjDecompressHeader2;
tjDecompressToYUV;
tjEncodeYUV;
} TURBOJPEG_1.0;
TURBOJPEG_1.2
{
global:
tjAlloc;
tjBufSize;
tjBufSizeYUV;
tjCompress2;
tjDecompress2;
tjEncodeYUV2;
tjFree;
tjGetScalingFactors;
tjInitTransform;
tjTransform;
} TURBOJPEG_1.1;
TURBOJPEG_1.4
{
global:
tjBufSizeYUV2;
tjCompressFromYUV;
tjCompressFromYUVPlanes;
tjDecodeYUV;
tjDecodeYUVPlanes;
tjDecompressHeader3;
tjDecompressToYUV2;
tjDecompressToYUVPlanes;
tjEncodeYUV3;
tjEncodeYUVPlanes;
tjPlaneHeight;
tjPlaneSizeYUV;
tjPlaneWidth;
} TURBOJPEG_1.2;
TURBOJPEG_1.6
{
global:
tjGetErrorStr2;
} TURBOJPEG_1.4;