diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-04-11 00:32:50 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-04-11 00:33:31 +0200 |
commit | a4e0defa75b6f766aa31d80c55688d036b5fd87b (patch) | |
tree | aad13d8b9f98ec3111ff405795a492fc31e2e881 /doc/filters.texi | |
parent | cff8f91ddfbdef72be7ec3adec6adf3e92ae4a27 (diff) | |
parent | 0c2466dec719b933d161f5d680a57fde38aa5daa (diff) | |
download | ffmpeg-a4e0defa75b6f766aa31d80c55688d036b5fd87b.tar.gz |
Merge commit '0c2466dec719b933d161f5d680a57fde38aa5daa'
* commit '0c2466dec719b933d161f5d680a57fde38aa5daa':
vf_transpose: switch to an AVOptions-based system.
Conflicts:
doc/filters.texi
libavfilter/vf_transpose.c
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'doc/filters.texi')
-rw-r--r-- | doc/filters.texi | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index 01381e208f..96f15c5cc6 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -5540,17 +5540,15 @@ Vertical low-pass filtering can only be enabled for @option{mode} Transpose rows with columns in the input video and optionally flip it. -The filter accepts parameters as a list of @var{key}=@var{value} -pairs, separated by ':'. If the key of the first options is omitted, -the arguments are interpreted according to the syntax -@var{dir}:@var{passthrough}. +This filter accepts the following options: @table @option + @item dir -Specify the transposition direction. Can assume the following values: +The direction of the transpose. @table @samp -@item 0, 4 +@item 0, 4, cclock_flip Rotate by 90 degrees counterclockwise and vertically flip (default), that is: @example L.R L.l @@ -5558,7 +5556,7 @@ L.R L.l l.r R.r @end example -@item 1, 5 +@item 1, 5, clock Rotate by 90 degrees clockwise, that is: @example L.R l.L @@ -5566,7 +5564,7 @@ L.R l.L l.r r.R @end example -@item 2, 6 +@item 2, 6, cclock Rotate by 90 degrees counterclockwise, that is: @example L.R R.r @@ -5574,7 +5572,7 @@ L.R R.r l.r L.l @end example -@item 3, 7 +@item 3, 7, clock_flip Rotate by 90 degrees clockwise and vertically flip, that is: @example L.R r.R |