From 95cdf03cf3694bad1da1f22c4fac1ce102ad675a Mon Sep 17 00:00:00 2001
From: Martin Vignali <martin.vignali@gmail.com>
Date: Sat, 28 Oct 2017 23:15:23 +0200
Subject: [PATCH 1/2] libavcodec/magicyuvenc : fix warning

---
 libavcodec/magicyuvenc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/magicyuvenc.c b/libavcodec/magicyuvenc.c
index f948b03e4b..5e6e216866 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);
-- 
2.11.0 (Apple Git-81)

