comparison amr.c @ 4565:8ae1cba27dbe libavcodec

Fix spelling.
author takis
date Thu, 22 Feb 2007 14:56:54 +0000
parents 65e3ae093faf
children 715e6e3ac428
comparison
equal deleted inserted replaced
4564:f58de1bdb675 4565:8ae1cba27dbe
18 * License along with FFmpeg; if not, write to the Free Software 18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */ 20 */
21 /* 21 /*
22 This code implements amr-nb and amr-wb audio encoder/decoder through external reference 22 This code implements amr-nb and amr-wb audio encoder/decoder through external reference
23 code from www.3gpp.org. The licence of the code from 3gpp is unclear so you 23 code from www.3gpp.org. The license of the code from 3gpp is unclear so you
24 have to download the code separately. Two versions exists: One fixed-point 24 have to download the code separately. Two versions exists: One fixed-point
25 and one with floats. For some reason the float-encoder is significant faster 25 and one with floats. For some reason the float-encoder is significant faster
26 atleast on a P4 1.5GHz (0.9s instead of 9.9s on a 30s audio clip at MR102). 26 at least on a P4 1.5GHz (0.9s instead of 9.9s on a 30s audio clip at MR102).
27 Both float and fixed point is supported for amr-nb, but only float for 27 Both float and fixed point are supported for amr-nb, but only float for
28 amr-wb. 28 amr-wb.
29 29
30 --AMR-NB-- 30 --AMR-NB--
31 The fixed-point (TS26.073) can be downloaded from: 31 The fixed-point (TS26.073) can be downloaded from:
32 http://www.3gpp.org/ftp/Specs/archive/26_series/26.073/26073-510.zip 32 http://www.3gpp.org/ftp/Specs/archive/26_series/26.073/26073-510.zip
33 Extract the soure into ffmpeg/libavcodec/amr 33 Extract the source into ffmpeg/libavcodec/amr
34 To use the fixed version run "./configure" with "--enable-amr_nb-fixed" 34 To use the fixed version run "./configure" with "--enable-amr_nb-fixed"
35 35
36 The float version (default) can be downloaded from: 36 The float version (default) can be downloaded from:
37 http://www.3gpp.org/ftp/Specs/archive/26_series/26.104/26104-510.zip 37 http://www.3gpp.org/ftp/Specs/archive/26_series/26.104/26104-510.zip
38 Extract the soure into ffmpeg/libavcodec/amr_float 38 Extract the source into ffmpeg/libavcodec/amr_float
39 39
40 The specification for amr-nb can be found in TS 26.071 40 The specification for amr-nb can be found in TS 26.071
41 (http://www.3gpp.org/ftp/Specs/html-info/26071.htm) and some other 41 (http://www.3gpp.org/ftp/Specs/html-info/26071.htm) and some other
42 info at http://www.3gpp.org/ftp/Specs/html-info/26-series.htm 42 info at http://www.3gpp.org/ftp/Specs/html-info/26-series.htm
43 43
48 "--enable-amr_wb". 48 "--enable-amr_wb".
49 49
50 The specification for amr-wb can be downloaded from: 50 The specification for amr-wb can be downloaded from:
51 http://www.3gpp.org/ftp/Specs/archive/26_series/26.171/26171-500.zip 51 http://www.3gpp.org/ftp/Specs/archive/26_series/26.171/26171-500.zip
52 52
53 If someone want to use the fixed point version it can be downloaded 53 If someone wants to use the fixed point version it can be downloaded
54 from: http://www.3gpp.org/ftp/Specs/archive/26_series/26.173/26173-571.zip 54 from: http://www.3gpp.org/ftp/Specs/archive/26_series/26.173/26173-571.zip
55 55
56 */ 56 */
57 57
58 #include "avcodec.h" 58 #include "avcodec.h"