diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-11-27 14:10:44 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-11-29 00:01:53 +0100 |
commit | 54135a0bd2f8bfd19e203269c93aefee0ba9aef5 (patch) | |
tree | cdd2b7e5376db88499264ce121abc3ecf1936c06 /libavcodec | |
parent | ef04afa730f938a94b1624fd19bdd20d8a7e3e7f (diff) | |
download | ffmpeg-54135a0bd2f8bfd19e203269c93aefee0ba9aef5.tar.gz |
avcodec/pafvideo: Mark decoder as init-threadsafe
Reviewed-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/pafvideo.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/pafvideo.c b/libavcodec/pafvideo.c index 07fa05caf8..22ae26ac10 100644 --- a/libavcodec/pafvideo.c +++ b/libavcodec/pafvideo.c @@ -419,4 +419,5 @@ AVCodec ff_paf_video_decoder = { .close = paf_video_close, .decode = paf_video_decode, .capabilities = AV_CODEC_CAP_DR1, + .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE, }; |