From 80287854c2ac2ace8045d9e157459b46dc292dde Mon Sep 17 00:00:00 2001 From: Nicolas George Date: Sun, 25 Sep 2011 13:24:40 +0200 Subject: [PATCH] libswr/rematrix: add braces to silence a warning. Signed-off-by: Nicolas George Signed-off-by: Michael Niedermayer --- libswresample/rematrix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libswresample/rematrix.c b/libswresample/rematrix.c index f8ba737ae4..eaf7653735 100644 --- a/libswresample/rematrix.c +++ b/libswresample/rematrix.c @@ -83,7 +83,7 @@ static int sane_layout(int64_t layout){ int swr_rematrix_init(SwrContext *s){ int i, j, in_i, out_i; - double matrix[64][64]={0}; + double matrix[64][64]={{0}}; int64_t unaccounted= s->in_ch_layout & ~s->out_ch_layout; double maxcoef=0;