Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2020-12-01 18:49:02 +0300
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-05-02 06:14:42 +0300
commit1c7e52f8fff36bd67917cdc3fe9f523258659cbc (patch)
treea9480637579de781cc58f23ca84821ea51c731a8 /libavcodec/subviewerdec.c
parenta380343c759861dd958316f5d64e2d668610aa33 (diff)
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 <andreas.rheinhardt@gmail.com>
Diffstat (limited to 'libavcodec/subviewerdec.c')
-rw-r--r--libavcodec/subviewerdec.c2
1 files changed, 2 insertions, 0 deletions
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,
};