Message ID | tencent_3AB40868EA03656ADA7D4AAD0E3AD1C19D0A@qq.com |
---|---|
State | Accepted |
Commit | e8a49b1424d405441fb23c2850274a84e95bd892 |
Headers | show |
Series | [FFmpeg-devel] avcodec/mmaldec: fix build error | expand |
Context | Check | Description |
---|---|---|
yinshiyou/make_loongarch64 | success | Make finished |
yinshiyou/make_fate_loongarch64 | success | Make fate finished |
andriy/make_x86 | success | Make finished |
andriy/make_fate_x86 | success | Make fate finished |
diff --git a/libavcodec/mmaldec.c b/libavcodec/mmaldec.c index 4bb3eb22ef..2dc7bbee04 100644 --- a/libavcodec/mmaldec.c +++ b/libavcodec/mmaldec.c @@ -843,7 +843,7 @@ static const AVClass ffmmal_dec_class = { .flush = ffmmal_flush, \ .p.priv_class = &ffmmal_dec_class, \ .p.capabilities = AV_CODEC_CAP_DELAY | AV_CODEC_CAP_HARDWARE, \ - .caps_internal = FF_CODEC_CAP_NOT_INIT_THREADSAFE \ + .caps_internal = FF_CODEC_CAP_NOT_INIT_THREADSAFE, \ .p.pix_fmts = (const enum AVPixelFormat[]) { AV_PIX_FMT_MMAL, \ AV_PIX_FMT_YUV420P, \ AV_PIX_FMT_NONE}, \