From b85e9d3104584bf925c368f767190f6a216ffebd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20B=C5=93sch?= Date: Thu, 1 Sep 2011 02:15:39 +0200 Subject: [PATCH] resample: fix set but unused variable (lfe) warning. --- libavcodec/resample.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/resample.c b/libavcodec/resample.c index 33413dbeaf..77f73cbba8 100644 --- a/libavcodec/resample.c +++ b/libavcodec/resample.c @@ -121,11 +121,11 @@ static void surround_to_stereo(short **output, short *input, int channels, int s short l, r; for (i = 0; i < samples; i++) { - int fl,fr,c,rl,rr,lfe; + int fl,fr,c,rl,rr; fl = input[0]; fr = input[1]; c = input[2]; - lfe = input[3]; + // lfe = input[3]; rl = input[4]; rr = input[5];