diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-11-26 18:53:24 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-12-04 15:46:46 +0100 |
commit | bfee34caaeaf40e911ae0c3612729ed179148c5f (patch) | |
tree | c8bbd1d5de0e4370941041d8ca2896f26da07e8c | |
parent | 9a7fe43c0f88fd77fae137e56a80f759c968a593 (diff) | |
download | ffmpeg-bfee34caaeaf40e911ae0c3612729ed179148c5f.tar.gz |
avcodec/ws-snd1: Mark decoder as init-threadsafe
Reviewed-by: Anton Khirnov <anton@khirnov.net>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
-rw-r--r-- | libavcodec/ws-snd1.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/ws-snd1.c b/libavcodec/ws-snd1.c index 0f005807ae..bc9ed00938 100644 --- a/libavcodec/ws-snd1.c +++ b/libavcodec/ws-snd1.c @@ -178,4 +178,5 @@ AVCodec ff_ws_snd1_decoder = { .init = ws_snd_decode_init, .decode = ws_snd_decode_frame, .capabilities = AV_CODEC_CAP_DR1, + .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE, }; |