resample: fix set but unused variable (lfe) warning.

This commit is contained in:
Clément Bœsch 2011-09-01 02:15:39 +02:00
parent f067d8a618
commit b85e9d3104
1 changed files with 2 additions and 2 deletions

View File

@ -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];