rockbox/apps/codecs/libcook
Mohamed Tarek f2c18d6922 -Remove calls to av_log() and use DEBUGF/printf instead, thuse removing
libavutil/log.[c/h] and libavutil/avutil.h.
-Take necessary defines to bitstream.h from libavutil/intreadwrite.h to 
remove the latter.



git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20918 a1c6a512-1295-4272-9138-f99709370657
2009-05-12 13:21:34 +00:00
..
libavutil -Remove calls to av_log() and use DEBUGF/printf instead, thuse removing 2009-05-12 13:21:34 +00:00
bitstream.c -Remove calls to av_log() and use DEBUGF/printf instead, thuse removing 2009-05-12 13:21:34 +00:00
bitstream.h -Remove calls to av_log() and use DEBUGF/printf instead, thuse removing 2009-05-12 13:21:34 +00:00
cook.c -Remove calls to av_log() and use DEBUGF/printf instead, thuse removing 2009-05-12 13:21:34 +00:00
cook.h Remove bytestream.h and and a related comment from cook.h 2009-05-12 12:30:33 +00:00
cook_fixp_mdct.h Patch by Mohamed Tarek from FS#10182 - convert codec to fixed-point using patches submitted to the ffmpeg mailing list in 2007 by Ian Braithwaite. 2009-05-10 22:26:02 +00:00
cook_fixpoint.h -Took cook_random() from an old cook.c revision [6 mar 2007], which is a 2009-05-11 23:35:50 +00:00
cookdata.h Patch by Mohamed Tarek from FS#10182 - convert codec to fixed-point using patches submitted to the ffmpeg mailing list in 2007 by Ian Braithwaite. 2009-05-10 22:26:02 +00:00
cookdata_fixpoint.h Patch by Mohamed Tarek from FS#10182 - convert codec to fixed-point using patches submitted to the ffmpeg mailing list in 2007 by Ian Braithwaite. 2009-05-10 22:26:02 +00:00
ffmpeg_config.h
main.c -Remove calls to av_log() and use DEBUGF/printf instead, thuse removing 2009-05-12 13:21:34 +00:00
Makefile.test -Remove calls to av_log() and use DEBUGF/printf instead, thuse removing 2009-05-12 13:21:34 +00:00
README.rockbox Patch by Mohamed Tarek from FS#10182 - convert codec to fixed-point using patches submitted to the ffmpeg mailing list in 2007 by Ian Braithwaite. 2009-05-10 22:26:02 +00:00
rm2wav.c
rm2wav.h Patch by Mohamed Tarek - add #define to protect against multiple inclusion 2009-05-09 23:14:55 +00:00

Library: libcook
Imported by : Mohamed Tarek

These files comprise a rm parser and a cook decoder based on the decoder
from ffmpeg.

LICENSING INFORMATION

ffmpeg is licensed under the Lesser GNU General Public License and the
file cook.c is Copyright 2003 Sascha Sommer and 2005 Benjamin Larsson.

IMPORT DETAILS

The decoder is based on ffmpeg-svn r18079.

The file libavcodec/cook.c was modified to remove all ffmpeg-specific
code and to use the current rm parser.

In initializing random_state in COOKContext, ffmpeg used a random_seed()
function that was weird in the way it gets the random number. So it was
decided to not use this function at all,and the value was initialized to 1,
because according to Benjamin Larsson random_seed() could just be 
replaced by any value.

The current files contain lots of code which is either not needed by
the decoder or totally disabled (#if 0 .. #endif) to enable
compiling. This was during the isolation of the decoder from ffmpeg,
the intention was to take as few files as possible to be able to
compile cook.c and the related files outside ffmpeg.

The decoder still uses floating point and relies on dynamic allocations 
in some parts of it. It's still not ready to be ported to rockbox.

CONVERSION TO FIXED-POINT

A patch from ffmpeg's mailing list was used to convert the decoder to
use fixed-point arithmetic. The patch was done by Ian Braithwaite, and
discussed here :

http://thread.gmane.org/gmane.comp.video.ffmpeg.devel/46024

The patch is a bit dated (2007) so the modifications to cook.c had to
be done manually.  The patch was also applied to cookdata.h and was
used to create cookdata_fixpoint.h, cook_fixpoint.h and
cook_fixp_mdct.h.

The patch used a cook_random() function for noise filling. this was
dropped and av_lfg_get() was used instead for consistency.

Note : Only parts of the patch were committed to ffmpeg's repository.

TESTING

The test program should compile in any Unix-like environment using the
command "make -f Makefile.test".

Running "./cooktest file.rm" will decode the audio data to a WAV file
called "output.wav" in the current directory.