diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-05-05 19:53:16 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-05-10 22:12:02 +0200 |
commit | af7468a28222195245e2a856a1b2407ed8f10252 (patch) | |
tree | 6695f51fb4bee342a44bd74e2b3b40dbf7f5584c /libavcodec | |
parent | 8f9a4ae63e5d7e997ccbd6fa56d173d7cff51163 (diff) | |
download | ffmpeg-af7468a28222195245e2a856a1b2407ed8f10252.tar.gz |
avcodec/ttmlenc: Mark encoder as init-threadsafe
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/ttmlenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ttmlenc.c b/libavcodec/ttmlenc.c index e274a92e04..5cab33cc60 100644 --- a/libavcodec/ttmlenc.c +++ b/libavcodec/ttmlenc.c @@ -392,5 +392,5 @@ const AVCodec ff_ttml_encoder = { .init = ttml_encode_init, .encode_sub = ttml_encode_frame, .close = ttml_encode_close, - .caps_internal = FF_CODEC_CAP_INIT_CLEANUP, + .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE | FF_CODEC_CAP_INIT_CLEANUP, }; |