summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-05-06 07:24:18 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-05-10 22:12:02 +0200
commit8f9a4ae63e5d7e997ccbd6fa56d173d7cff51163 (patch)
tree2f00d3a380adb27786ec9b75239bce800e0a978e
parentb15fcdfe5c724f3e0a8b28e6b4f8c9ef0c3ad6fe (diff)
avcodec/vmdvideo: Mark decoder as init-threadsafe
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-rw-r--r--libavcodec/vmdvideo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vmdvideo.c b/libavcodec/vmdvideo.c
index ad88a43ae3..e0349cba6a 100644
--- a/libavcodec/vmdvideo.c
+++ b/libavcodec/vmdvideo.c
@@ -475,5 +475,5 @@ const AVCodec ff_vmdvideo_decoder = {
.close = vmdvideo_decode_end,
.decode = vmdvideo_decode_frame,
.capabilities = AV_CODEC_CAP_DR1,
- .caps_internal = FF_CODEC_CAP_INIT_CLEANUP,
+ .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE | FF_CODEC_CAP_INIT_CLEANUP,
};