diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-07-09 22:25:41 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-07-18 19:58:56 +0200 |
commit | 6aad1204ccea90113d19a8b829c8b81891f9474e (patch) | |
tree | 8610a6ee598d1ff4cbf8225877a11b4c6713a244 /libavcodec/libshine.c | |
parent | c597510434f2950df09d218106279c880bdc146c (diff) | |
download | ffmpeg-6aad1204ccea90113d19a8b829c8b81891f9474e.tar.gz |
avcodec: Add FF_CODEC_CAP_NOT_INIT_THREADSAFE
This is in preparation of switching the default init-thread-safety
to a codec being init-thread-safe.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/libshine.c')
-rw-r--r-- | libavcodec/libshine.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/libshine.c b/libavcodec/libshine.c index 9bc545689a..123b1a0847 100644 --- a/libavcodec/libshine.c +++ b/libavcodec/libshine.c @@ -137,6 +137,7 @@ const FFCodec ff_libshine_encoder = { .p.type = AVMEDIA_TYPE_AUDIO, .p.id = AV_CODEC_ID_MP3, .p.capabilities = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_DELAY, + .caps_internal = FF_CODEC_CAP_NOT_INIT_THREADSAFE, .priv_data_size = sizeof(SHINEContext), .init = libshine_encode_init, FF_CODEC_ENCODE_CB(libshine_encode_frame), |