diff options
author | Clément Bœsch <ubitux@gmail.com> | 2012-01-26 08:49:15 +0100 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2012-02-02 14:31:18 +0100 |
commit | c79eddaff16492fe7eb5751d2101aebedc9d16cf (patch) | |
tree | c9809f3788a50f2b124ea97821718262b86a770e /doc/filters.texi | |
parent | e96be8409f079065c2e9f137e17fd836ce1d76f9 (diff) | |
download | ffmpeg-c79eddaff16492fe7eb5751d2101aebedc9d16cf.tar.gz |
lavfi/aconvert: use libswresample.
This commit also drops the planar parameter; you now need to use the 'p'
suffix in order to request a planar sample format.
Diffstat (limited to 'doc/filters.texi')
-rw-r--r-- | doc/filters.texi | 19 |
1 files changed, 8 insertions, 11 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index 1f3522e08d..c64f899011 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -104,17 +104,15 @@ Below is a description of the currently available audio filters. Convert the input audio format to the specified formats. The filter accepts a string of the form: -"@var{sample_format}:@var{channel_layout}:@var{packing_format}". +"@var{sample_format}:@var{channel_layout}". -@var{sample_format} specifies the sample format, and can be a string or -the corresponding numeric value defined in @file{libavutil/samplefmt.h}. +@var{sample_format} specifies the sample format, and can be a string or the +corresponding numeric value defined in @file{libavutil/samplefmt.h}. Use 'p' +suffix for a planar sample format. @var{channel_layout} specifies the channel layout, and can be a string or the corresponding number value defined in @file{libavutil/audioconvert.h}. -@var{packing_format} specifies the type of packing in output, can be one -of "planar" or "packed", or the corresponding numeric values "0" or "1". - The special parameter "auto", signifies that the filter will automatically select the output format depending on the output filter. @@ -122,16 +120,15 @@ Some examples follow. @itemize @item -Convert input to unsigned 8-bit, stereo, packed: +Convert input to float, planar, stereo: @example -aconvert=u8:stereo:packed +aconvert=fltp:stereo @end example @item -Convert input to unsigned 8-bit, automatically select out channel layout -and packing format: +Convert input to unsigned 8-bit, automatically select out channel layout: @example -aconvert=u8:auto:auto +aconvert=u8:auto @end example @end itemize |