Browse Source

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

tags/n0.9
Clément Bœsch 14 years ago
parent
commit
b85e9d3104
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavcodec/resample.c

+ 2
- 2
libavcodec/resample.c 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];



Loading…
Cancel
Save