diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-05-07 06:34:27 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-05-12 06:00:14 +0200 |
commit | 175f675f7bf1065f02bfbc676f081e369027bce5 (patch) | |
tree | 43dcfa39fde839514f240c5b7c094487e002acb0 | |
parent | adf9dd1dec3cdcb57bac42ff43e7d02ca9aeb4e1 (diff) | |
download | ffmpeg-175f675f7bf1065f02bfbc676f081e369027bce5.tar.gz |
avcodec/dvdsubdec: Mark decoder as init-threadsafe
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-rw-r--r-- | libavcodec/dvdsubdec.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/dvdsubdec.c b/libavcodec/dvdsubdec.c index e164745561..52259f0730 100644 --- a/libavcodec/dvdsubdec.c +++ b/libavcodec/dvdsubdec.c @@ -764,4 +764,5 @@ const AVCodec ff_dvdsub_decoder = { .decode = dvdsub_decode, .flush = dvdsub_flush, .priv_class = &dvdsub_class, + .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE, }; |