diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-11-30 13:53:47 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-05-02 03:35:33 +0200 |
commit | fc2522c9c54f3715656f7fc38c710bab62096ca3 (patch) | |
tree | 3623a535b950387f4228c2ab214ea877d49782bf | |
parent | 55e23c5241d572e529e271571c0ce73e60d37ec0 (diff) | |
download | ffmpeg-fc2522c9c54f3715656f7fc38c710bab62096ca3.tar.gz |
avcodec/dfa: Mark decoder as init-threadsafe
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
-rw-r--r-- | libavcodec/dfa.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/dfa.c b/libavcodec/dfa.c index 13d1e71f82..0cf3641a38 100644 --- a/libavcodec/dfa.c +++ b/libavcodec/dfa.c @@ -424,4 +424,5 @@ const AVCodec ff_dfa_decoder = { .close = dfa_decode_end, .decode = dfa_decode_frame, .capabilities = AV_CODEC_CAP_DR1, + .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE, }; |