1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-15 14:13:16 +02:00

avcodec/pgssubdec: Mark decoder as init-threadsafe

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
This commit is contained in:
Andreas Rheinhardt
2020-11-27 14:21:44 +01:00
committed by Andreas Rheinhardt
parent f8667163dd
commit 6834c79636

View File

@@ -713,4 +713,5 @@ const AVCodec ff_pgssub_decoder = {
.close = close_decoder, .close = close_decoder,
.decode = decode, .decode = decode,
.priv_class = &pgsdec_class, .priv_class = &pgsdec_class,
.caps_internal = FF_CODEC_CAP_INIT_THREADSAFE,
}; };