Merge pull request #1845 from adamdmoss/lfe1

Audio: Fix subwoofer output in software 5.1 decoding
This commit is contained in:
skidau 2015-01-09 11:59:29 +11:00
commit 530f894d87
1 changed files with 1 additions and 1 deletions

View File

@ -361,7 +361,7 @@ void DPL2Decode(float *samples, int numsamples, float *out)
out[cur + 0] = lf[k];
out[cur + 1] = rf[k];
out[cur + 2] = cf[k];
LFE_buf[lfe_pos] = (out[0] + out[1]) / 2;
LFE_buf[lfe_pos] = (lf[k] + rf[k] + 2.0f * cf[k] + lr[k] + rr[k]) / 2.0f;
out[cur + 3] = FIRFilter(LFE_buf, lfe_pos, len125, len125, filter_coefs_lfe);
lfe_pos++;
if (lfe_pos == len125)