diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2015-03-11 20:43:59 +0000 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2015-03-13 19:48:07 +0000 |
commit | 5a0e953c2465be9d449d5f523c3d3e2b886910b2 (patch) | |
tree | 6151a1ed76d62e26d9e67e1828b0a25aa00afc6d /libavcodec/mxpegdec.c | |
parent | 117b432748ca87de4cd0f09d9b1495545e264733 (diff) | |
download | ffmpeg-5a0e953c2465be9d449d5f523c3d3e2b886910b2.tar.gz |
mjpeg: Mark decoder family as thread safe
No global variables are used and the VLC tables are allocated without
static elements. This will allow using a JPEG decoding context within
other decoders.
Diffstat (limited to 'libavcodec/mxpegdec.c')
-rw-r--r-- | libavcodec/mxpegdec.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/mxpegdec.c b/libavcodec/mxpegdec.c index bfaae34b76..46536981e4 100644 --- a/libavcodec/mxpegdec.c +++ b/libavcodec/mxpegdec.c @@ -346,4 +346,5 @@ AVCodec ff_mxpeg_decoder = { .close = mxpeg_decode_end, .decode = mxpeg_decode_frame, .capabilities = CODEC_CAP_DR1, + .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE, }; |