summaryrefslogtreecommitdiff
path: root/apps/codecs/libatrac/README.rockbox
diff options
context:
space:
mode:
authorMohamed Tarek <mt@rockbox.org>2009-08-13 20:38:59 +0000
committerMohamed Tarek <mt@rockbox.org>2009-08-13 20:38:59 +0000
commit432e2ecc137d4fb4d9f6ac87cbbc38830a1f3c2c (patch)
tree27feb800527b18bbebe29c0414fc0b0e529c8ebc /apps/codecs/libatrac/README.rockbox
parentc956059ec5a2d85311914fb31a36d5127797fbc2 (diff)
downloadrockbox-432e2ecc137d4fb4d9f6ac87cbbc38830a1f3c2c.tar.gz
rockbox-432e2ecc137d4fb4d9f6ac87cbbc38830a1f3c2c.zip
Modify libatrac to use fixed-point arithmetic.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22298 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/libatrac/README.rockbox')
-rw-r--r--apps/codecs/libatrac/README.rockbox10
1 files changed, 8 insertions, 2 deletions
diff --git a/apps/codecs/libatrac/README.rockbox b/apps/codecs/libatrac/README.rockbox
index 7f62e10bb4..46738e7d7b 100644
--- a/apps/codecs/libatrac/README.rockbox
+++ b/apps/codecs/libatrac/README.rockbox
@@ -8,13 +8,19 @@ ffmpeg is licensed under the Lesser GNU General Public License.
8 8
9IMPORT DETAILS 9IMPORT DETAILS
10 10
11The decoder is based on ffmpeg-svn r18079. It still uses floating 11The decoder is based on ffmpeg-svn r18079.
12point math and not suitable to be used in rockbox. 12The decoder had been modified to use fixed-point arithmetic.
13 13
14TESTING 14TESTING
15 15
16The test program should compile in any Unix-like environment using the 16The test program should compile in any Unix-like environment using the
17command "make -f Makefile.test". 17command "make -f Makefile.test".
18 18
19For ARM targets add -DCPU_ARM to CFLAGS in Makefile.test to make use of
20the asm ARM optimisations in rockbox's mdct library.
21
22For Big-endian targets, change -D"ROCKBOX_LITTLE_ENDIAN=1"
23to -D"ROCKBOX_BIG_ENDIAN=1" in Makefile.test.
24
19Running "./atractest file.rm" will decode the audio data to a WAV file 25Running "./atractest file.rm" will decode the audio data to a WAV file
20called "output.wav" in the current directory. 26called "output.wav" in the current directory.