summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2020-11-30 15:21:25 +0100
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-05-02 03:41:16 +0200
commit846e8d6576a3fe01ebee71355447dd767c7fae09 (patch)
tree37e42276581d7135f9fd1784df6b53e95cae8997
parent29aaff7edb69c3aecd0592020a6f102e331e8b84 (diff)
avcodec/cdgraphics: Mark decoder as init-threadsafe
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
-rw-r--r--libavcodec/cdgraphics.c1
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,
};