From 1c7e52f8fff36bd67917cdc3fe9f523258659cbc Mon Sep 17 00:00:00 2001 From: Andreas Rheinhardt Date: Tue, 1 Dec 2020 16:49:02 +0100 Subject: avcodec: Mark ff_ass_subtitle_header based decoders as init-threadsafe ff_ass_subtitle_header_full() just uses av_asprintf() and is therefore thread-safe itself. Signed-off-by: Andreas Rheinhardt --- libavcodec/subviewerdec.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'libavcodec/subviewerdec.c') diff --git a/libavcodec/subviewerdec.c b/libavcodec/subviewerdec.c index 35c1ad78dd..5c650d0cde 100644 --- a/libavcodec/subviewerdec.c +++ b/libavcodec/subviewerdec.c @@ -26,6 +26,7 @@ #include "avcodec.h" #include "ass.h" +#include "internal.h" #include "libavutil/bprint.h" static int subviewer_event_to_ass(AVBPrint *buf, const char *p) @@ -74,4 +75,5 @@ const AVCodec ff_subviewer_decoder = { .init = ff_ass_subtitle_header_default, .flush = ff_ass_decoder_flush, .priv_data_size = sizeof(FFASSDecoderContext), + .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE, }; -- cgit v1.2.3