diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-11-17 11:22:09 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-11-24 11:35:03 +0100 |
commit | 0339af05a4eaa1adbf153b7fa2213eea7e531573 (patch) | |
tree | fc0642b1f119e1006ba12cc61beeda8c0637a909 | |
parent | 73b3ea572819a79e7896627e4c1daf74ce1dfe46 (diff) | |
download | ffmpeg-0339af05a4eaa1adbf153b7fa2213eea7e531573.tar.gz |
avcodec/truemotion2: Mark decoder as init-threadsafe
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
-rw-r--r-- | libavcodec/truemotion2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/truemotion2.c b/libavcodec/truemotion2.c index 0f4f345a6c..ac3294d89c 100644 --- a/libavcodec/truemotion2.c +++ b/libavcodec/truemotion2.c @@ -1022,5 +1022,5 @@ AVCodec ff_truemotion2_decoder = { .close = decode_end, .decode = decode_frame, .capabilities = AV_CODEC_CAP_DR1, - .caps_internal = FF_CODEC_CAP_INIT_CLEANUP, + .caps_internal = FF_CODEC_CAP_INIT_CLEANUP | FF_CODEC_CAP_INIT_THREADSAFE, }; |