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