diff options
author | Anton Khirnov <anton@khirnov.net> | 2013-02-25 21:21:29 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2013-04-09 18:55:45 +0200 |
commit | 0af7fe1f95a9e4a25e7e46f386360c701c49763d (patch) | |
tree | db6c74c192ff253964a4a23b8c8224558591de3f /doc/filters.texi | |
parent | d28cb849899abd98bf2dd72f5a3dd56d441aeb27 (diff) | |
download | ffmpeg-0af7fe1f95a9e4a25e7e46f386360c701c49763d.tar.gz |
af_aformat: switch to an AVOptions-based system.
Diffstat (limited to 'doc/filters.texi')
-rw-r--r-- | doc/filters.texi | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index 192cdfd885..9d1302a62c 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -133,13 +133,13 @@ The filter accepts the following named parameters: @table @option @item sample_fmts -A comma-separated list of requested sample formats. +A '|'-separated list of requested sample formats. @item sample_rates -A comma-separated list of requested sample rates. +A '|'-separated list of requested sample rates. @item channel_layouts -A comma-separated list of requested channel layouts. +A '|'-separated list of requested channel layouts. @end table @@ -147,7 +147,7 @@ If a parameter is omitted, all values are allowed. For example to force the output to either unsigned 8-bit or signed 16-bit stereo: @example -aformat=sample_fmts\=u8\,s16:channel_layouts\=stereo +aformat=sample_fmts=u8|s16:channel_layouts=stereo @end example @section amix |