Fix some greedy sed changes in imported code. Also provide a sys/types.h for compatib...
[kugel-rb.git] / apps / codecs / libffmpegFLAC / README.rockbox
blob850cdfcb7d7e880ca896a8a743d9ae4474d44fe6
1 Library: libffmpegFLAC
2 Imported: 2005-10-26 by Dave Chapman
4 This directory contains a FLAC decoder based on the flac.c (and a small
5 number of other files) from the ffmpeg project.
7 LICENSING INFORMATION
9 ffmpeg is licensed under the Lesser GNU General Public License and the
10 file flac.c is Copyright 2003 Alex Beregszaszi.
12 IMPORT DETAILS
14 The decoder is based on ffmpeg-cvs from 26 October 2005.
16 The file libavcodec/flac.c was renamed to decoder.c and all ffmpeg
17 related code was removed.  It was also heavily modified to remove
18 debugging information and unused experiemental code.
20 It was also changed to provide output as 32-bit integers (with the
21 data left-shifted to 28 bit accuracy).  The original flac.c provided
22 16-bit output.
24 In order to minimise memory usage, a small number of hard-coded limits
25 are present in decoder.h - mainly limiting the supported blocksize
26 (number of samples in a frame) to 4608.  This is the default value
27 used by the reference FLAC encoder at all standard compression
28 settings.
31 TESTING
33 A test program is contained in the file main.c and this should compile
34 in any Unix-like environment using the command "make -f Makefile.test".
36 Running "test file.flac" will decode the audio data to a WAV file
37 called "test.wav" in the current directory.  This has been tested with
38 16-bit and 24-bit mono and stereo FLAC files.
40 This can be used to test the accuracy of the decoder by comparing the
41 md5sum of the WAV file produced by this decoder with a WAV file
42 produced by the official libFLAC decoder.  
44 This test program could be extended to perform an internal md5sum
45 calculation and comparing that against the md5sum stored in the FLAC
46 file's header.