diff options
author | Diego Biurrun <diego@biurrun.de> | 2007-04-03 14:15:59 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-04-03 14:15:59 +0000 |
commit | 7038fa6102071ecf7457cdf4730b88d41863f78f (patch) | |
tree | 4d28b612c0e7d430a94383bdb2c2c17716ac245d /libavcodec | |
parent | 5d79e24a98d6e8c73dcc225ccce22647184a378d (diff) | |
download | ffmpeg-7038fa6102071ecf7457cdf4730b88d41863f78f.tar.gz |
Explain which configure options are necessary for which AMR variant.
Originally committed as revision 8612 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/amr.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/libavcodec/amr.c b/libavcodec/amr.c index 6a8193f0b9..104df3dddb 100644 --- a/libavcodec/amr.c +++ b/libavcodec/amr.c @@ -37,12 +37,13 @@ * The float version (default) can be downloaded from: * http://www.3gpp.org/ftp/Specs/archive/26_series/26.104/26104-610.zip * Extract the source into \c "ffmpeg/libavcodec/amr_float". + * Enable it by passing \c "--enable-amr-nb" to \c "./configure". * * \subsection Fixed-point * The fixed-point (TS26.073) can be downloaded from: * http://www.3gpp.org/ftp/Specs/archive/26_series/26.073/26073-510.zip. * Extract the source into \c "ffmpeg/libavcodec/amr". - * To use the fixed version run \c "./configure" with \c "--enable-amr_nb-fixed". + * Enable it by passing \c "--enable-amr-nb-fixed" to \c "./configure". * * \subsection Specification * The specification for AMR-NB can be found in TS 26.071 @@ -53,8 +54,8 @@ * \subsection Float * The reference code can be downloaded from: * http://www.3gpp.org/ftp/Specs/archive/26_series/26.204/26204-600.zip - * It should be extracted to \c "ffmpeg/libavcodec/amrwb_float". Enable it with - * \c "--enable-amr_wb". + * It should be extracted to \c "ffmpeg/libavcodec/amrwb_float". + * Enable it by passing \c "--enable-amr-wb" to \c "./configure". * * \subsection Fixed-point * If someone wants to use the fixed point version it can be downloaded from: |