diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-11-30 15:21:25 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-05-02 03:41:16 +0200 |
commit | 846e8d6576a3fe01ebee71355447dd767c7fae09 (patch) | |
tree | 37e42276581d7135f9fd1784df6b53e95cae8997 /libavcodec/cdgraphics.c | |
parent | 29aaff7edb69c3aecd0592020a6f102e331e8b84 (diff) | |
download | ffmpeg-846e8d6576a3fe01ebee71355447dd767c7fae09.tar.gz |
avcodec/cdgraphics: Mark decoder as init-threadsafe
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Diffstat (limited to 'libavcodec/cdgraphics.c')
-rw-r--r-- | libavcodec/cdgraphics.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/cdgraphics.c b/libavcodec/cdgraphics.c index faa43c1c83..731d800666 100644 --- a/libavcodec/cdgraphics.c +++ b/libavcodec/cdgraphics.c @@ -397,4 +397,5 @@ const AVCodec ff_cdgraphics_decoder = { .decode = cdg_decode_frame, .flush = cdg_decode_flush, .capabilities = AV_CODEC_CAP_DR1, + .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE, }; |