Commit b85e9d31 authored by Clément Bœsch's avatar Clément Bœsch

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

parent f067d8a6
......@@ -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];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment