From a34869ed7dc83dd2be170fe3d476b5b77435e79e Mon Sep 17 00:00:00 2001 From: Nicolas George Date: Sun, 25 Sep 2011 13:35:03 +0200 Subject: [PATCH] libswr/rematrix: remove unused variable. 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 eaf7653735..87fd35a477 100644 --- a/libswresample/rematrix.c +++ b/libswresample/rematrix.c @@ -82,7 +82,7 @@ static int sane_layout(int64_t layout){ } int swr_rematrix_init(SwrContext *s){ - int i, j, in_i, out_i; + int i, j, out_i; double matrix[64][64]={{0}}; int64_t unaccounted= s->in_ch_layout & ~s->out_ch_layout; double maxcoef=0;