diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-11-30 20:15:25 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-05-02 04:11:32 +0200 |
commit | a2ba5bcb56d8f548dc65bcc62f084051e543b85c (patch) | |
tree | 3ef169a648a7f2890568c7215d0df55df188fdb9 /libavcodec/v210dec.c | |
parent | 28b63eb005de024e70ea114ee198080d38b18383 (diff) | |
download | ffmpeg-a2ba5bcb56d8f548dc65bcc62f084051e543b85c.tar.gz |
avcodec/v210dec: Mark decoder as init-threadsafe
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Diffstat (limited to 'libavcodec/v210dec.c')
-rw-r--r-- | libavcodec/v210dec.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/v210dec.c b/libavcodec/v210dec.c index 868822e298..fe63518c3c 100644 --- a/libavcodec/v210dec.c +++ b/libavcodec/v210dec.c @@ -226,4 +226,5 @@ const AVCodec ff_v210_decoder = { AV_CODEC_CAP_SLICE_THREADS | AV_CODEC_CAP_FRAME_THREADS, .priv_class = &v210dec_class, + .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE, }; |