summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2020-12-01 15:48:33 +0100
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-05-02 05:14:42 +0200
commitb3108b1cbc3ea67b80564e0b1302665125360ee9 (patch)
treed1d115a66e76d3f66a832b1e322a398f1c17997d /libavcodec
parent834ef6f4a9af80f8a9b0029c03a9b9e12bb36acc (diff)
avcodec/dvbsubdec: Make decoder init-threadsafe
Note: This decoder uses a static variable in save_display_set() (which is only enabled if DEBUG is defined); yet said function can't be reached from the decoder's init function at all, so it is no problem for setting the FF_CODEC_CAP_INIT_THREADSAFE flag. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/dvbsubdec.c55
1 files changed, 32 insertions, 23 deletions
diff --git a/libavcodec/dvbsubdec.c b/libavcodec/dvbsubdec.c
index 0cbfefcd36..e45c14e878 100644
--- a/libavcodec/dvbsubdec.c
+++ b/libavcodec/dvbsubdec.c
@@ -26,6 +26,7 @@
#include "libavutil/colorspace.h"
#include "libavutil/imgutils.h"
#include "libavutil/opt.h"
+#include "libavutil/thread.h"
#define DVBSUB_PAGE_SEGMENT 0x10
#define DVBSUB_REGION_SEGMENT 0x11
@@ -254,31 +255,9 @@ static void delete_regions(DVBSubContext *ctx)
}
}
-static av_cold int dvbsub_init_decoder(AVCodecContext *avctx)
+static av_cold void init_default_clut(void)
{
int i, r, g, b, a = 0;
- DVBSubContext *ctx = avctx->priv_data;
-
- if (ctx->substream < 0) {
- ctx->composition_id = -1;
- ctx->ancillary_id = -1;
- } else if (!avctx->extradata || (avctx->extradata_size < 4) || ((avctx->extradata_size % 5 != 0) && (avctx->extradata_size != 4))) {
- av_log(avctx, AV_LOG_WARNING, "Invalid DVB subtitles stream extradata!\n");
- ctx->composition_id = -1;
- ctx->ancillary_id = -1;
- } else {
- if (avctx->extradata_size > 5*ctx->substream + 2) {
- ctx->composition_id = AV_RB16(avctx->extradata + 5*ctx->substream);
- ctx->ancillary_id = AV_RB16(avctx->extradata + 5*ctx->substream + 2);
- } else {
- av_log(avctx, AV_LOG_WARNING, "Selected DVB subtitles sub-stream %d is not available\n", ctx->substream);
- ctx->composition_id = AV_RB16(avctx->extradata);
- ctx->ancillary_id = AV_RB16(avctx->extradata + 2);
- }
- }
-
- ctx->version = -1;
- ctx->prev_start = AV_NOPTS_VALUE;
default_clut.id = -1;
default_clut.next = NULL;
@@ -339,6 +318,35 @@ static av_cold int dvbsub_init_decoder(AVCodecContext *avctx)
}
default_clut.clut256[i] = RGBA(r, g, b, a);
}
+}
+
+static av_cold int dvbsub_init_decoder(AVCodecContext *avctx)
+{
+ static AVOnce init_static_once = AV_ONCE_INIT;
+ DVBSubContext *ctx = avctx->priv_data;
+
+ if (ctx->substream < 0) {
+ ctx->composition_id = -1;
+ ctx->ancillary_id = -1;
+ } else if (!avctx->extradata || (avctx->extradata_size < 4) || ((avctx->extradata_size % 5 != 0) && (avctx->extradata_size != 4))) {
+ av_log(avctx, AV_LOG_WARNING, "Invalid DVB subtitles stream extradata!\n");
+ ctx->composition_id = -1;
+ ctx->ancillary_id = -1;
+ } else {
+ if (avctx->extradata_size > 5*ctx->substream + 2) {
+ ctx->composition_id = AV_RB16(avctx->extradata + 5*ctx->substream);
+ ctx->ancillary_id = AV_RB16(avctx->extradata + 5*ctx->substream + 2);
+ } else {
+ av_log(avctx, AV_LOG_WARNING, "Selected DVB subtitles sub-stream %d is not available\n", ctx->substream);
+ ctx->composition_id = AV_RB16(avctx->extradata);
+ ctx->ancillary_id = AV_RB16(avctx->extradata + 2);
+ }
+ }
+
+ ctx->version = -1;
+ ctx->prev_start = AV_NOPTS_VALUE;
+
+ ff_thread_once(&init_static_once, init_default_clut);
return 0;
}
@@ -1747,4 +1755,5 @@ const AVCodec ff_dvbsub_decoder = {
.close = dvbsub_close_decoder,
.decode = dvbsub_decode,
.priv_class = &dvbsubdec_class,
+ .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE,
};