diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-04-09 13:50:01 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-04-10 09:27:01 +0200 |
commit | aeefbf61c0dbed2977c919ea0ef22f2536ee1e48 (patch) | |
tree | a0d0f1ed7060ae6b40195bc95ace3c6b293facd4 | |
parent | 3eccfaa01291ca90e7dcb934bb06d048fcba1f43 (diff) | |
download | ffmpeg-aeefbf61c0dbed2977c919ea0ef22f2536ee1e48.tar.gz |
pad: fix example explanation
"row" and "column" term positions in the explanation were inverted.
Signed-off-by: Stefano Sabatini <stefano.sabatini-lala@poste.it>
Signed-off-by: Anton Khirnov <anton@khirnov.net>
-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 c2e5aed84c..1a26f10c59 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -752,7 +752,7 @@ For example: @example # Add paddings with color "violet" to the input video. Output video # size is 640x480, the top-left corner of the input video is placed at -# row 0, column 40. +# column 0, row 40. pad=640:480:0:40:violet @end example |