summaryrefslogtreecommitdiff
path: root/libswresample
diff options
context:
space:
mode:
authorNicolas George <nicolas.george@normalesup.org>2011-09-25 13:35:03 +0200
committerMichael Niedermayer <michaelni@gmx.at>2011-09-28 16:11:01 +0200
commita34869ed7dc83dd2be170fe3d476b5b77435e79e (patch)
tree0fe0c8335e9f29656072ec87d0adb0839c5c0080 /libswresample
parent80287854c2ac2ace8045d9e157459b46dc292dde (diff)
libswr/rematrix: remove unused variable.
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 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;