diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-04-10 20:30:06 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-04-10 21:18:32 +0200 |
commit | 0cff3e130bfe0471d58ca55655a9d2b73a2873f5 (patch) | |
tree | 07f6e840fffdd51a77c7f684721db68165552b34 /libswresample/swresample.c | |
parent | 017088937252a765ac0ffc30a49ef4d03534976f (diff) | |
download | ffmpeg-0cff3e130bfe0471d58ca55655a9d2b73a2873f5.tar.gz |
swr: remove unused variable
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libswresample/swresample.c')
-rw-r--r-- | libswresample/swresample.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libswresample/swresample.c b/libswresample/swresample.c index c60233ca3e..8b06061e7c 100644 --- a/libswresample/swresample.c +++ b/libswresample/swresample.c @@ -512,7 +512,7 @@ static int swr_convert_internal(struct SwrContext *s, AudioData *out, int out_co if(preout != out && out_count){ if(s->dither_method){ - int ch, i; + int ch; av_assert0(preout != in); if((ret=realloc_audio(&s->dither, out_count))<0) |