diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-04-07 17:45:31 +0200 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-04-07 17:45:31 +0200 |
commit | 4f29941194dd0ed06aa375e437b48e3031125e59 (patch) | |
tree | 8bd11b3e9619c107ff74c7d98fdd0c39b35cd393 /doc/filters.texi | |
parent | c0e51ec9c625ccd7b3a8c74754145e6c023a3848 (diff) | |
download | ffmpeg-4f29941194dd0ed06aa375e437b48e3031125e59.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>
Diffstat (limited to 'doc/filters.texi')
-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 306522c761..5d63b5b101 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -984,7 +984,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 |