summaryrefslogtreecommitdiff
path: root/apps/codecs/libwma/mdct.h
diff options
context:
space:
mode:
authorMichael Giacomelli <giac2000@hotmail.com>2008-06-24 15:39:44 +0000
committerMichael Giacomelli <giac2000@hotmail.com>2008-06-24 15:39:44 +0000
commitff9f3f8c04bf0ca85ff75fc7aac7518c152bc001 (patch)
treed54ccfe796ffac588a5b78cc9e46e29126cfe88a /apps/codecs/libwma/mdct.h
parentdab9fa1ef7a547b0f7f3d4605100cd4579570e78 (diff)
downloadrockbox-ff9f3f8c04bf0ca85ff75fc7aac7518c152bc001.tar.gz
rockbox-ff9f3f8c04bf0ca85ff75fc7aac7518c152bc001.zip
Revert r14786 which resulted in a substantial reduction in accuracy to save a 7.6KB of RAM. Accuracy should be greatly improved now, and if we want to make that trade off again, I think of better ways to do it.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17783 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/libwma/mdct.h')
-rw-r--r--apps/codecs/libwma/mdct.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/codecs/libwma/mdct.h b/apps/codecs/libwma/mdct.h
index 67f510164b..57d65ae9a7 100644
--- a/apps/codecs/libwma/mdct.h
+++ b/apps/codecs/libwma/mdct.h
@@ -25,6 +25,8 @@ typedef struct MDCTContext
25 int n; /* size of MDCT (i.e. number of input data * 2) */ 25 int n; /* size of MDCT (i.e. number of input data * 2) */
26 int nbits; /* n = 2^nbits */ 26 int nbits; /* n = 2^nbits */
27 /* pre/post rotation tables */ 27 /* pre/post rotation tables */
28 fixed32 *tcos;
29 fixed32 *tsin;
28 FFTContext fft; 30 FFTContext fft;
29} 31}
30MDCTContext; 32MDCTContext;