diff options
author | Martin Vignali <martin.vignali@gmail.com> | 2017-10-28 23:15:23 +0200 |
---|---|---|
committer | Martin Vignali <martin.vignali@gmail.com> | 2017-12-16 14:21:07 +0100 |
commit | ee2dfa34a25e0c5bf85f464be64e5bc78489abf9 (patch) | |
tree | 8455b4aa7fee0c7ad2ef344b795822224e409242 /libavcodec/magicyuvenc.c | |
parent | 1f1207145a0f2d26e5e3525bea6cc417a3ec39cf (diff) | |
download | ffmpeg-ee2dfa34a25e0c5bf85f464be64e5bc78489abf9.tar.gz |
libavcodec/magicyuvenc : fix warning
Diffstat (limited to 'libavcodec/magicyuvenc.c')
-rw-r--r-- | libavcodec/magicyuvenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/magicyuvenc.c b/libavcodec/magicyuvenc.c index a30922f570..c784221e1c 100644 --- a/libavcodec/magicyuvenc.c +++ b/libavcodec/magicyuvenc.c @@ -337,7 +337,7 @@ static int encode_table(AVCodecContext *avctx, uint8_t *dst, int width, int height, PutBitContext *pb, HuffEntry *he) { - PTable counts[256] = { 0 }; + PTable counts[256] = { {0} }; int i; count_usage(dst, width, height, counts); |