diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-11-29 20:40:02 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-05-02 03:05:46 +0200 |
commit | 995ac7b55ab297615f9234f1c54427500822d2ec (patch) | |
tree | 405f24b4f52c978349f8aac455926c6ba4df6d3f | |
parent | 2079f95b3808f3275ddcc824d615d76bc95ea553 (diff) | |
download | ffmpeg-995ac7b55ab297615f9234f1c54427500822d2ec.tar.gz |
avcodec/g723_1enc: Mark encoder as init-threadsafe
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
-rw-r--r-- | libavcodec/g723_1enc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/g723_1enc.c b/libavcodec/g723_1enc.c index 2fb4b7fc82..64899efc84 100644 --- a/libavcodec/g723_1enc.c +++ b/libavcodec/g723_1enc.c @@ -1256,4 +1256,5 @@ const AVCodec ff_g723_1_encoder = { .sample_fmts = (const enum AVSampleFormat[]) { AV_SAMPLE_FMT_S16, AV_SAMPLE_FMT_NONE }, + .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE, }; |