libavcodec/magicyuvenc : fix warning

This commit is contained in:
Martin Vignali 2017-10-28 23:15:23 +02:00
parent 1f1207145a
commit ee2dfa34a2
1 changed files with 1 additions and 1 deletions

View File

@ -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);