diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-11-27 14:46:23 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-05-02 02:35:37 +0200 |
commit | 659c2aa35c1a35ffde7fd948b907d79c302036d4 (patch) | |
tree | be126a777227651c4fcfd20044600343a2947bbc | |
parent | 6834c796366fe92b8513ca0f09e5969c60bcdc1e (diff) | |
download | ffmpeg-659c2aa35c1a35ffde7fd948b907d79c302036d4.tar.gz |
avcodec/proresdec2: Mark decoder as init-threadsafe
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
-rw-r--r-- | libavcodec/proresdec2.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/proresdec2.c b/libavcodec/proresdec2.c index a57cece99b..fe1f3a28bd 100644 --- a/libavcodec/proresdec2.c +++ b/libavcodec/proresdec2.c @@ -831,4 +831,5 @@ const AVCodec ff_prores_decoder = { .decode = decode_frame, .capabilities = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_SLICE_THREADS | AV_CODEC_CAP_FRAME_THREADS, .profiles = NULL_IF_CONFIG_SMALL(ff_prores_profiles), + .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE, }; |