From 0cff3e130bfe0471d58ca55655a9d2b73a2873f5 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Tue, 10 Apr 2012 20:30:06 +0200 Subject: [PATCH] swr: remove unused variable Signed-off-by: Michael Niedermayer --- libswresample/swresample.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)