Browse Source

libavcodec/magicyuvenc : fix warning

tags/n4.0
Martin Vignali 8 years ago
parent
commit
ee2dfa34a2
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/magicyuvenc.c

+ 1
- 1
libavcodec/magicyuvenc.c 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);


Loading…
Cancel
Save