Commit ee2dfa34 authored by Martin Vignali's avatar Martin Vignali

libavcodec/magicyuvenc : fix warning

parent 1f120714
...@@ -337,7 +337,7 @@ static int encode_table(AVCodecContext *avctx, uint8_t *dst, ...@@ -337,7 +337,7 @@ static int encode_table(AVCodecContext *avctx, uint8_t *dst,
int width, int height, int width, int height,
PutBitContext *pb, HuffEntry *he) PutBitContext *pb, HuffEntry *he)
{ {
PTable counts[256] = { 0 }; PTable counts[256] = { {0} };
int i; int i;
count_usage(dst, width, height, counts); count_usage(dst, width, height, counts);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment