summaryrefslogtreecommitdiff
path: root/apps/codecs/wmapro.c
diff options
context:
space:
mode:
authorMohamed Tarek <mt@rockbox.org>2010-07-05 22:33:37 +0000
committerMohamed Tarek <mt@rockbox.org>2010-07-05 22:33:37 +0000
commitd884af2b9992f12e98a3e8548aff76b232b5bfb3 (patch)
treed3aefbc2195382025105b252c16b00087778beed /apps/codecs/wmapro.c
parent6a04479d63dd4d7dfc54849e4c925d360d55fa9c (diff)
downloadrockbox-d884af2b9992f12e98a3e8548aff76b232b5bfb3.tar.gz
rockbox-d884af2b9992f12e98a3e8548aff76b232b5bfb3.zip
Partial conversion of the wmapro decoder to fixed point arithmetic. Currently inverse quantization & rescaling,
imdct and windowing are all in fixed point. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27302 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/wmapro.c')
-rw-r--r--apps/codecs/wmapro.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/wmapro.c b/apps/codecs/wmapro.c
index 9e03555917..a31e63d79f 100644
--- a/apps/codecs/wmapro.c
+++ b/apps/codecs/wmapro.c
@@ -66,7 +66,7 @@ enum codec_status codec_main(void)
66 int pktcnt = 0; /* Count of the packets played */ 66 int pktcnt = 0; /* Count of the packets played */
67 67
68 /* Generic codec initialisation */ 68 /* Generic codec initialisation */
69 ci->configure(DSP_SET_SAMPLE_DEPTH, 32); 69 ci->configure(DSP_SET_SAMPLE_DEPTH, 17);
70 70
71 71
72next_track: 72next_track: