1
0
Fork 0
forked from len0rd/rockbox

Commited too much really this time.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20905 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Michael Giacomelli 2009-05-10 23:38:06 +00:00
parent f19afdd96d
commit 5c404a02fb

View file

@ -403,6 +403,7 @@ void mdct_backward(int n, int32_t *in, int32_t *out) {
mdct_butterflies(out+n2,n2,shift);
mdct_bitreverse(out,n,step,shift);
/* rotate + window */
step>>=2;
{
int32_t *oX1=out+n2+n4;
@ -516,7 +517,5 @@ void mdct_backward(int n, int32_t *in, int32_t *out) {
oX1[3]= iX[0];
iX+=4;
}while(oX1>oX2);
}
}