summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2020-11-30 20:16:19 +0100
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-05-02 04:12:10 +0200
commitdcad67583178f4d4215f2dc97941b405d2978865 (patch)
treea6e4b7d410767830de8bc198bf2b3022bc7e33a7 /libavcodec
parenta2ba5bcb56d8f548dc65bcc62f084051e543b85c (diff)
avcodec/v210x: Mark decoder as init-threadsafe
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/v210x.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/v210x.c b/libavcodec/v210x.c
index da9e2e3649..88143d16d1 100644
--- a/libavcodec/v210x.c
+++ b/libavcodec/v210x.c
@@ -128,4 +128,5 @@ const AVCodec ff_v210x_decoder = {
.init = decode_init,
.decode = decode_frame,
.capabilities = AV_CODEC_CAP_DR1,
+ .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE,
};