diff options
author | Clément Bœsch <ubitux@gmail.com> | 2012-12-22 15:38:10 +0100 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2012-12-22 16:25:15 +0100 |
commit | ba5ea7db99193b854476bca76605e96f59b7394b (patch) | |
tree | f6941b65cac6b7373e5c57ae97d4e16333c844bc | |
parent | 0824aa67436d4c90fb71330d97ba4a20b44ddedb (diff) | |
download | ffmpeg-ba5ea7db99193b854476bca76605e96f59b7394b.tar.gz |
doc/filters: simplify escaping in aformat.
Escaping the '=' is not necessary, and quoting the arguments allow to
remove the comma escaping as well.
-rw-r--r-- | doc/filters.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index ac5eece3c4..b9b364fa1a 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -312,7 +312,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 amerge |