diff options
author | Timothy Gu <timothygu99@gmail.com> | 2013-06-17 17:38:38 -0700 |
---|---|---|
committer | Timothy Gu <timothygu99@gmail.com> | 2013-08-26 11:50:44 -0700 |
commit | 1c5129c7a0111e7a19a699c5511405e5677ae7e3 (patch) | |
tree | 974f2b753ee8bba6f7b42225ef5d124cd77677b1 | |
parent | ff8e4d7f1b7724391254f6493f9c91e6f6c5e7fd (diff) | |
download | ffmpeg-1c5129c7a0111e7a19a699c5511405e5677ae7e3.tar.gz |
doc/encoders: Add libopencore-amrnb doc
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
(cherry picked from commit 9ead06057acfcc43bcb99a63a7c58543007b2847)
Signed-off-by: Timothy Gu <timothygu99@gmail.com>
-rw-r--r-- | doc/encoders.texi | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/doc/encoders.texi b/doc/encoders.texi index 825cdb7696..1c8731c733 100644 --- a/doc/encoders.texi +++ b/doc/encoders.texi @@ -563,6 +563,43 @@ default value is 0 (disabled). @end table +@section libopencore-amrnb + +OpenCORE Adaptive Multi-Rate Narrowband encoder. + +Requires the presence of the libopencore-amrnb headers and library during +configuration. You need to explicitly configure the build with +@code{--enable-libopencore-amrnb --enable-version3}. + +This is a mono-only encoder. Officially it only supports 8000Hz sample rate, +but you can override it by setting @option{strict} to @samp{unofficial} or +lower. + +@subsection Options + +@table @option + +@item b +Set bitrate in bits per second. Only the following bitrates are supported, +otherwise libavcodec will round to the nearest valid bitrate. + +@table @option +@item 4750 +@item 5150 +@item 5900 +@item 6700 +@item 7400 +@item 7950 +@item 10200 +@item 12200 +@end table + +@item dtx +Allow discontinuous transmission (generate comfort noise) when set to 1. The +default value is 0 (disabled). + +@end table + @c man end AUDIO ENCODERS @chapter Video Encoders |