diff mbox series

[FFmpeg-devel] avcodec/8bps: Mark decoder as init-threadsafe

Message ID AM7PR03MB6660509783989590373619538F309@AM7PR03MB6660.eurprd03.prod.outlook.com
State Accepted
Commit c38a8576fea2de04b33234db13fd8d486d640451
Headers show
Series [FFmpeg-devel] avcodec/8bps: Mark decoder as init-threadsafe | expand

Checks

Context Check Description
yinshiyou/configure_loongarch64 warning Failed to run configure
andriy/make_aarch64_jetson success Make finished
andriy/make_fate_aarch64_jetson success Make fate finished
andriy/make_x86 success Make finished
andriy/make_fate_x86 success Make fate finished
andriy/make_ppc success Make finished
andriy/make_fate_ppc success Make fate finished
andriy/make_armv7_RPi4 success Make finished
andriy/make_fate_armv7_RPi4 success Make fate finished

Commit Message

Andreas Rheinhardt Feb. 11, 2022, 9:47 a.m. UTC
The only unorthodox thing that this codec's init function does
is calling ff_get_format(). Yet this is supposed to be save,
as any get_format callback already has to deal with the scenario
of different AVCodecContext's calling it simultaneously.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
---
 libavcodec/8bps.c | 1 +
 1 file changed, 1 insertion(+)
diff mbox series

Patch

diff --git a/libavcodec/8bps.c b/libavcodec/8bps.c
index 6865b9b12e..46419b978b 100644
--- a/libavcodec/8bps.c
+++ b/libavcodec/8bps.c
@@ -182,4 +182,5 @@  const AVCodec ff_eightbps_decoder = {
     .init           = decode_init,
     .decode         = decode_frame,
     .capabilities   = AV_CODEC_CAP_DR1,
+    .caps_internal  = FF_CODEC_CAP_INIT_THREADSAFE,
 };