Commit ccd98026 authored by alexc's avatar alexc

Cosmetics: Fold constants and re-indent after last commit.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@23520 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 97cfcabb
......@@ -1195,11 +1195,11 @@ static void sbr_qmf_synthesis(DSPContext *dsp, FFTContext *mdct,
v[63 - n] = -mdct_buf[0][62 - 2*n];
}
} else {
for (n = 1; n < 64 >> div; n+=2) {
X[1][i][n] = -X[1][i][n];
}
ff_imdct_half(mdct, mdct_buf[0], X[0][i]);
ff_imdct_half(mdct, mdct_buf[1], X[1][i]);
for (n = 1; n < 64; n+=2) {
X[1][i][n] = -X[1][i][n];
}
ff_imdct_half(mdct, mdct_buf[0], X[0][i]);
ff_imdct_half(mdct, mdct_buf[1], X[1][i]);
for (n = 0; n < 64; n++) {
v[ n] = -mdct_buf[0][63 - n] + mdct_buf[1][ n ];
v[127 - n] = mdct_buf[0][63 - n] + mdct_buf[1][ n ];
......
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