diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-11-30 16:30:34 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-05-02 03:49:24 +0200 |
commit | beaf065f82d479f4f2fedf806c8c86da1d387134 (patch) | |
tree | 598602918b7bfd1f84db27c81912ef922cf9b628 /libavcodec | |
parent | 4405633e6f1e2ddbb078405dfcf4413dd305ac05 (diff) | |
download | ffmpeg-beaf065f82d479f4f2fedf806c8c86da1d387134.tar.gz |
avcodec/alacenc: Mark encoder as init-threadsafe
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/alacenc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/alacenc.c b/libavcodec/alacenc.c index d6b2e1c991..eddd9c97c3 100644 --- a/libavcodec/alacenc.c +++ b/libavcodec/alacenc.c @@ -646,4 +646,5 @@ const AVCodec ff_alac_encoder = { .sample_fmts = (const enum AVSampleFormat[]){ AV_SAMPLE_FMT_S32P, AV_SAMPLE_FMT_S16P, AV_SAMPLE_FMT_NONE }, + .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE, }; |