summaryrefslogtreecommitdiff
path: root/libswresample
diff options
context:
space:
mode:
authorNicolas George <nicolas.george@normalesup.org>2011-09-25 13:24:40 +0200
committerMichael Niedermayer <michaelni@gmx.at>2011-09-28 16:11:01 +0200
commit80287854c2ac2ace8045d9e157459b46dc292dde (patch)
tree6ad43378b5a5a7b4b927d55feb3571c8ec61baa1 /libswresample
parent4a14dd76cffa5cfed8629732a7dbfbe800b08182 (diff)
libswr/rematrix: add braces to silence a warning.
Signed-off-by: Nicolas George <nicolas.george@normalesup.org> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libswresample')
-rw-r--r--libswresample/rematrix.c2
1 files changed, 1 insertions, 1 deletions
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;