diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-01-09 18:41:40 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-01-09 18:41:40 +0100 |
commit | 8514d5bcf7808da20b3ae469651ed850dca34af6 (patch) | |
tree | 45e7cadfeb4380a3e632bbc5c32424bc733f6da8 /libswresample/swresample.c | |
parent | 3ab1970612b5d343d013d57083c2bf0f01d997ca (diff) | |
download | ffmpeg-8514d5bcf7808da20b3ae469651ed850dca34af6.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 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); |