diff options
author | Nicolas George <nicolas.george@normalesup.org> | 2011-09-25 13:24:40 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-09-28 16:11:01 +0200 |
commit | 80287854c2ac2ace8045d9e157459b46dc292dde (patch) | |
tree | 6ad43378b5a5a7b4b927d55feb3571c8ec61baa1 /libswresample | |
parent | 4a14dd76cffa5cfed8629732a7dbfbe800b08182 (diff) | |
download | ffmpeg-streaming-80287854c2ac2ace8045d9e157459b46dc292dde.zip ffmpeg-streaming-80287854c2ac2ace8045d9e157459b46dc292dde.tar.gz |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libswresample/rematrix.c b/libswresample/rematrix.c index f8ba737..eaf7653 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; |