diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-10-18 21:29:37 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-10-18 21:29:37 +0000 |
commit | 43945b2766befcb4b2a5eb9b57fd9c25d9f4c849 (patch) | |
tree | 13ca8c4af24edf3a5db22b7438dbbabf21e33803 /doc/filters.texi | |
parent | ff0652e5036fd30cf518891d2158acbafea191fc (diff) | |
download | ffmpeg-43945b2766befcb4b2a5eb9b57fd9c25d9f4c849.tar.gz |
Add transpose filter.
Originally committed as revision 25525 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'doc/filters.texi')
-rw-r--r-- | doc/filters.texi | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index 66c1606fc8..4f60c5f65d 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -508,6 +508,47 @@ not specified it will use the default value of 16. Adding this in the beginning of filter chains should make filtering faster due to better use of the memory cache. +@section transpose + +Transpose rows with columns in the input video and optionally flip it. + +It accepts a parameter representing an integer, which can assume the +values: + +@table @samp +@item 0 +Rotate by 90 degrees counterclockwise and vertically flip (default), that is: +@example +L.R L.l +. . -> . . +l.r R.r +@end example + +@item 1 +Rotate by 90 degrees clockwise, that is: +@example +L.R l.L +. . -> . . +l.r r.R +@end example + +@item 2 +Rotate by 90 degrees counterclockwise, that is: +@example +L.R R.r +. . -> . . +l.r L.l +@end example + +@item 3 +Rotate by 90 degrees clockwise and vertically flip, that is: +@example +L.R r.R +. . -> . . +l.r l.L +@end example +@end table + @section unsharp Sharpen or blur the input video. |