diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-11-30 17:24:54 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-05-02 03:51:17 +0200 |
commit | e6f13f9a3791b2601a05894355cd731db096dfa1 (patch) | |
tree | 9fa8af31961f55ac28af69b8e15da0f2e723ceeb /libavcodec | |
parent | c549a94b9d2e8501d0ed809d0014483c05a1f8d5 (diff) | |
download | ffmpeg-e6f13f9a3791b2601a05894355cd731db096dfa1.tar.gz |
avcodec/bitpacked: Mark decoder as init-threadsafe
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/bitpacked.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/bitpacked.c b/libavcodec/bitpacked.c index 57ae93b6b4..8143151bc7 100644 --- a/libavcodec/bitpacked.c +++ b/libavcodec/bitpacked.c @@ -150,4 +150,5 @@ const AVCodec ff_bitpacked_decoder = { MKTAG('U', 'Y', 'V', 'Y'), FF_CODEC_TAGS_END, }, + .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE, }; |