diff mbox series

[FFmpeg-devel,10/45] avcodec/yop: Mark decoder as init-threadsafe

Message ID 20201127010249.2724610-10-andreas.rheinhardt@gmail.com
State Accepted
Commit c53f39abc33348e7d111ffaaabe638ef19cb6e92
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, 1:02 a.m. UTC
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
---
 libavcodec/yop.c | 1 +
 1 file changed, 1 insertion(+)

Comments

Anton Khirnov Dec. 4, 2020, 10:55 a.m. UTC | #1
Quoting Andreas Rheinhardt (2020-11-27 02:02:14)
> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
> ---
>  libavcodec/yop.c | 1 +
>  1 file changed, 1 insertion(+)

Most likely ok
diff mbox series

Patch

diff --git a/libavcodec/yop.c b/libavcodec/yop.c
index aff28ef3fc..8f8ed940ec 100644
--- a/libavcodec/yop.c
+++ b/libavcodec/yop.c
@@ -274,4 +274,5 @@  AVCodec ff_yop_decoder = {
     .init           = yop_decode_init,
     .close          = yop_decode_close,
     .decode         = yop_decode_frame,
+    .caps_internal  = FF_CODEC_CAP_INIT_THREADSAFE,
 };