diff options
| author | Michael Giacomelli <giac2000@hotmail.com> | 2009-05-10 23:32:53 +0000 |
|---|---|---|
| committer | Michael Giacomelli <giac2000@hotmail.com> | 2009-05-10 23:32:53 +0000 |
| commit | 9c43aaa41b91f35471c1743c6a4322f837eadabc (patch) | |
| tree | 17c931d8a813e6ec3f0ed21b85ab0a724306e4b0 /apps/codecs/lib | |
| parent | 65649de515257493dd1b8db599201097208677bb (diff) | |
| download | rockbox-9c43aaa41b91f35471c1743c6a4322f837eadabc.zip rockbox-9c43aaa41b91f35471c1743c6a4322f837eadabc.tar.gz rockbox-9c43aaa41b91f35471c1743c6a4322f837eadabc.tar.bz2 rockbox-9c43aaa41b91f35471c1743c6a4322f837eadabc.tar.xz | |
Actually remove the unneeded files in the last commit.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20903 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/lib')
| -rw-r--r-- | apps/codecs/lib/mdct2.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/codecs/lib/mdct2.c b/apps/codecs/lib/mdct2.c index c38f92d..265985d 100644 --- a/apps/codecs/lib/mdct2.c +++ b/apps/codecs/lib/mdct2.c @@ -403,7 +403,6 @@ 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; @@ -517,5 +516,7 @@ void mdct_backward(int n, int32_t *in, int32_t *out) { oX1[3]= iX[0]; iX+=4; }while(oX1>oX2); + + } } |