diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-11-29 23:35:59 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-05-02 03:28:21 +0200 |
commit | 1d5945cd0fdc9de31a0b578fdb043e410a4519a7 (patch) | |
tree | 42c9c07cf83c22b10241e73e8ae714af5093e935 | |
parent | ec7925c45418345efa81c74c66c67d062ab461fd (diff) | |
download | ffmpeg-1d5945cd0fdc9de31a0b578fdb043e410a4519a7.tar.gz |
avcodec/eacmv: Mark decoder as init-threadsafe
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
-rw-r--r-- | libavcodec/eacmv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/eacmv.c b/libavcodec/eacmv.c index 6c4a85214f..572eb8e1bb 100644 --- a/libavcodec/eacmv.c +++ b/libavcodec/eacmv.c @@ -240,5 +240,5 @@ const AVCodec ff_eacmv_decoder = { .close = cmv_decode_end, .decode = cmv_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, }; |