diff mbox series

[FFmpeg-devel,57/72] avcodec/rpza: Mark decoder as init-threadsafe

Message ID 20201127174652.2838198-12-andreas.rheinhardt@gmail.com
State Accepted
Commit 3e732426d183e84d4b2d9153443797ff50494cb2
Headers show
Series [FFmpeg-devel,01/45] avcodec/a64multienc: Fix memleak upon init failure | expand

Checks

Context Check Description
andriy/x86_make success Make finished
andriy/x86_make_fate success Make fate finished

Commit Message

Andreas Rheinhardt Nov. 27, 2020, 5:46 p.m. UTC
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
---
 libavcodec/rpza.c | 1 +
 1 file changed, 1 insertion(+)
diff mbox series

Patch

diff --git a/libavcodec/rpza.c b/libavcodec/rpza.c
index 02bbfe753f..416af2d6c5 100644
--- a/libavcodec/rpza.c
+++ b/libavcodec/rpza.c
@@ -296,4 +296,5 @@  AVCodec ff_rpza_decoder = {
     .close          = rpza_decode_end,
     .decode         = rpza_decode_frame,
     .capabilities   = AV_CODEC_CAP_DR1,
+    .caps_internal  = FF_CODEC_CAP_INIT_THREADSAFE,
 };