diff options
author | Zhao Zhili <zhilizhao@tencent.com> | 2023-07-16 17:13:29 +0800 |
---|---|---|
committer | Zhao Zhili <zhilizhao@tencent.com> | 2023-07-23 11:52:28 +0800 |
commit | 89f5124d0a7cea568ab670614b8a67e458cd002e (patch) | |
tree | 2ee0344c5b4f319005bfc01ad58bd04f290dca12 /doc/filters.texi | |
parent | c2c96c4c2419859c4d1b11e6f907e58afb6dfa3c (diff) | |
download | ffmpeg-89f5124d0a7cea568ab670614b8a67e458cd002e.tar.gz |
avfilter: add transpose_vt for videotoolbox pix_fmt
Signed-off-by: Zhao Zhili <zhilizhao@tencent.com>
Diffstat (limited to 'doc/filters.texi')
-rw-r--r-- | doc/filters.texi | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index b1d9eb3dd2..6f47428aa0 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -27670,6 +27670,54 @@ Default value is @code{0}. @end table +@section transpose_vt + +Transpose rows with columns in the input video and optionally flip it. +For more in depth examples see the @ref{transpose} video filter, which shares mostly the same options. + +It accepts the following parameters: + +@table @option + +@item dir +Specify the transposition direction. + +Can assume the following values: +@table @samp +@item cclock_flip +Rotate by 90 degrees counterclockwise and vertically flip. (default) + +@item clock +Rotate by 90 degrees clockwise. + +@item cclock +Rotate by 90 degrees counterclockwise. + +@item clock_flip +Rotate by 90 degrees clockwise and vertically flip. + +@item hflip +Flip the input video horizontally. + +@item vflip +Flip the input video vertically. + +@end table + +@item passthrough +Do not apply the transposition if the input geometry matches the one +specified by the specified value. It accepts the following values: +@table @samp +@item none +Always apply transposition. (default) +@item portrait +Preserve portrait geometry (when @var{height} >= @var{width}). +@item landscape +Preserve landscape geometry (when @var{width} >= @var{height}). +@end table + +@end table + @section transpose_vulkan Transpose rows with columns in the input video and optionally flip it. |