diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-01-30 15:19:51 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-01-30 15:19:51 +0100 |
commit | d85284d4aa7d388f33bd8a418df3a3cbe349cd39 (patch) | |
tree | 217b82cad9335d6a1a18b50476f892e2c3133a6a | |
parent | 3c7195a96933e27c395a617a178f43ef4bc65a92 (diff) | |
parent | a17ab0e46a9fec7c31cc1be363828184c6ecebf7 (diff) | |
download | ffmpeg-d85284d4aa7d388f33bd8a418df3a3cbe349cd39.tar.gz |
Merge commit 'a17ab0e46a9fec7c31cc1be363828184c6ecebf7'
* commit 'a17ab0e46a9fec7c31cc1be363828184c6ecebf7':
doc: add decoders.texi
Conflicts:
doc/decoders.texi
doc/ffmpeg.texi
doc/ffplay.texi
See: 5e45f03420945dfeaf66729f5d022e5c15ff5723
Merged-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | doc/decoders.texi | 33 |
1 files changed, 32 insertions, 1 deletions
diff --git a/doc/decoders.texi b/doc/decoders.texi index 9d9f298471..09c9f9c731 100644 --- a/doc/decoders.texi +++ b/doc/decoders.texi @@ -14,7 +14,7 @@ You can disable all the decoders with the configure option with the options @code{--enable-decoder=@var{DECODER}} / @code{--disable-decoder=@var{DECODER}}. -The option @code{-codecs} of the ff* tools will display the list of +The option @code{-decoders} of the ff* tools will display the list of enabled decoders. @c man end DECODERS @@ -52,6 +52,37 @@ top-field-first is assumed @chapter Audio Decoders @c man begin AUDIO DECODERS +A description of some of the currently available audio decoders +follows. + +@section ac3 + +AC-3 audio decoder. + +This decoder implements part of ATSC A/52:2010 and ETSI TS 102 366, as well as +the undocumented RealAudio 3 (a.k.a. dnet). + +@subsubsection AC-3 Decoder Options + +@table @option + +@item -drc_scale @var{value} +Dynamic Range Scale Factor. The factor to apply to dynamic range values +from the AC-3 stream. This factor is applied exponentially. +There are 3 notable scale factor ranges: +@table @option +@item drc_scale == 0 +DRC disabled. Produces full range audio. +@item 0 < drc_scale <= 1 +DRC enabled. Applies a fraction of the stream DRC value. +Audio reproduction is between full range and full compression. +@item drc_scale > 1 +DRC enabled. Applies drc_scale asymmetrically. +Loud sounds are fully compressed. Soft sounds are enhanced. +@end table + +@end table + @section ffwavesynth Internal wave synthetizer. |