summaryrefslogtreecommitdiff
path: root/apps/codecs/libwmapro/README.rockbox
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/libwmapro/README.rockbox
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/libwmapro/README.rockbox')
-rw-r--r--apps/codecs/libwmapro/README.rockbox14
1 files changed, 12 insertions, 2 deletions
diff --git a/apps/codecs/libwmapro/README.rockbox b/apps/codecs/libwmapro/README.rockbox
index 09c54b48c6..9bd737a432 100644
--- a/apps/codecs/libwmapro/README.rockbox
+++ b/apps/codecs/libwmapro/README.rockbox
@@ -14,8 +14,18 @@ IMPORT DETAILS
14 14
15Based on ffmpeg svn r22886 dated 15 April 2010. 15Based on ffmpeg svn r22886 dated 15 April 2010.
16 16
17Currently, the files contain minimal changes from their original state in order 17The code is slowly being modified to convert it from floating point maths to
18to be able to compile cleanly. 18fixed point.
19
20As of 6 July 2010, the following steps are all working properly in fixed point:
21- Inverse quantization and rescaling
22- IMDCT
23- Windowing
24
25Results of comparing output wav files from the partially fixed point decoder to
26the output wav files of ffmpeg decoder are :
27- average relative error = 0.016%
28- maximum relative error = 0.3%
19 29
20COMPILING 30COMPILING
21 31