summaryrefslogtreecommitdiff
path: root/libswresample
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-01-09 18:41:40 +0100
committerMichael Niedermayer <michaelni@gmx.at>2013-01-09 18:41:40 +0100
commit8514d5bcf7808da20b3ae469651ed850dca34af6 (patch)
tree45e7cadfeb4380a3e632bbc5c32424bc733f6da8 /libswresample
parent3ab1970612b5d343d013d57083c2bf0f01d997ca (diff)
swr: remove unused variable
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libswresample')
-rw-r--r--libswresample/swresample.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libswresample/swresample.c b/libswresample/swresample.c
index 218d346816..7001f23201 100644
--- a/libswresample/swresample.c
+++ b/libswresample/swresample.c
@@ -644,7 +644,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, len1;
+ int ch;
int dither_count= FFMAX(out_count, 1<<16);
av_assert0(preout != in);