diff options
author | Clément Bœsch <ubitux@gmail.com> | 2011-09-01 02:15:39 +0200 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2011-09-01 20:23:40 +0200 |
commit | b85e9d3104584bf925c368f767190f6a216ffebd (patch) | |
tree | 1374b745ddb3e482f2df6558b98f595a2b57ef51 /libavcodec | |
parent | f067d8a6186a3c2de43400295ac2978170e5b19d (diff) | |
download | ffmpeg-b85e9d3104584bf925c368f767190f6a216ffebd.tar.gz |
resample: fix set but unused variable (lfe) warning.
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/resample.c | 4 |
1 files 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]; |