mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-08 13:22:53 +02:00
avcodec/mv30: fix warning: suggest braces around initialization of subobject [-Wmissing-braces]
Signed-off-by: Limin Wang <lance.lmwang@gmail.com>
This commit is contained in:
parent
6f8826e4aa
commit
b1cc6b9496
@ -421,7 +421,7 @@ static int decode_intra(AVCodecContext *avctx, GetBitContext *gb, AVFrame *frame
|
||||
|
||||
for (int y = 0; y < avctx->height; y += 16) {
|
||||
GetByteContext gbyte;
|
||||
int pfill[3][1] = { 0 };
|
||||
int pfill[3][1] = { {0} };
|
||||
int nb_codes = get_bits(gb, 16);
|
||||
|
||||
av_fast_padded_malloc(&s->coeffs, &s->coeffs_size, nb_codes * sizeof(*s->coeffs));
|
||||
@ -504,7 +504,7 @@ static int decode_inter(AVCodecContext *avctx, GetBitContext *gb,
|
||||
|
||||
for (int y = 0; y < avctx->height; y += 16) {
|
||||
GetByteContext gbyte;
|
||||
int pfill[3][1] = { 0 };
|
||||
int pfill[3][1] = { {0} };
|
||||
int nb_codes = get_bits(gb, 16);
|
||||
|
||||
skip_bits(gb, 8);
|
||||
|
Loading…
Reference in New Issue
Block a user