summaryrefslogtreecommitdiff
path: root/doc/filters.texi
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2014-02-23 15:38:13 +0100
committerAnton Khirnov <anton@khirnov.net>2014-03-05 21:52:02 +0100
commit599b81ca9a8e04a27ddad94af462171d16063167 (patch)
treebe38e7567a20b8b8844555e18a4cbfe51187eaec /doc/filters.texi
parentbba2a7cc5f7c7aaa32a938f3d4edd9f555f39cdb (diff)
lavfi: add shuffleplanes filter
Diffstat (limited to 'doc/filters.texi')
-rw-r--r--doc/filters.texi30
1 files changed, 30 insertions, 0 deletions
diff --git a/doc/filters.texi b/doc/filters.texi
index 68a657ae76..8d46cd1fb4 100644
--- a/doc/filters.texi
+++ b/doc/filters.texi
@@ -2453,6 +2453,36 @@ Adler-32 checksum of each plane of the input frame, expressed in the form
"[@var{c0} @var{c1} @var{c2} @var{c3}]"
@end table
+@section shuffleplanes
+
+Reorder and/or duplicate video planes.
+
+This filter accepts the following options:
+
+@table @option
+
+@item map0
+The index of the input plane to be used as the first output plane.
+
+@item map1
+The index of the input plane to be used as the second output plane.
+
+@item map2
+The index of the input plane to be used as the third output plane.
+
+@item map3
+The index of the input plane to be used as the fourth output plane.
+
+@end table
+
+The first plane has the index 0. The default is to keep the input unchanged.
+
+E.g.
+@example
+avconv -i INPUT -vf shuffleplanes=0:2:1:3 OUTPUT
+@end example
+swaps the second and third planes of the input.
+
@section split
Split input video into several identical outputs.