diff options
author | Michael Giacomelli <giac2000@hotmail.com> | 2008-08-10 02:31:01 +0000 |
---|---|---|
committer | Michael Giacomelli <giac2000@hotmail.com> | 2008-08-10 02:31:01 +0000 |
commit | d016402fec642d4d15816719a056079141af2ed6 (patch) | |
tree | b993c5e441684b9929c3d2bd21e147f8bcc56e16 /apps/codecs/libwma/mdct2.h | |
parent | 99fa8cddb81f387af2542c6eb8356388669123e1 (diff) |
Actually put the output in IRAM this time by combining some buffers that weren't used at the same time.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18231 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/libwma/mdct2.h')
-rw-r--r-- | apps/codecs/libwma/mdct2.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/apps/codecs/libwma/mdct2.h b/apps/codecs/libwma/mdct2.h index a1c3a0b01d..f062f48a72 100644 --- a/apps/codecs/libwma/mdct2.h +++ b/apps/codecs/libwma/mdct2.h @@ -32,8 +32,6 @@ typedef long long ogg_int64_t; # define LOOKUP_T const ogg_int32_t #endif -//#include "ivorbiscodec.h" - #include <codecs.h> #include "asm_arm.h" #include "asm_mcf5249.h" @@ -65,10 +63,8 @@ typedef long long ogg_int64_t; #define cPI1_8 (0x7641af3d) #endif -//extern void mdct_forward(int n, DATA_TYPE *in, DATA_TYPE *out); + extern void mdct_backward(int n, ogg_int32_t *in, DATA_TYPE *out); -//extern void mdct_bitreverse(DATA_TYPE *x,int n,int step,int shift); -//extern void mdct_butterflies(DATA_TYPE *x,int points,int shift); #endif |