summaryrefslogtreecommitdiff
path: root/doc/libavfilter.texi
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2009-11-12 00:07:36 +0000
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2009-11-12 00:07:36 +0000
commit0c0ccc28a8514b9b8925c16c4c8eaad16878ee38 (patch)
treebd41289c74a6905b782bb8a25fb2a72451a81856 /doc/libavfilter.texi
parentc3eabb7d2f0729cd35a58a2de71005f8fc933a09 (diff)
Swap slicify / scale description positions, "scale" comes before
"slicify" in lexical order. Originally committed as revision 20520 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'doc/libavfilter.texi')
-rw-r--r--doc/libavfilter.texi30
1 files changed, 15 insertions, 15 deletions
diff --git a/doc/libavfilter.texi b/doc/libavfilter.texi
index 17f731ba87..0e473fdfee 100644
--- a/doc/libavfilter.texi
+++ b/doc/libavfilter.texi
@@ -149,21 +149,6 @@ input to the vflip filter.
Pass the source unchanged to the output.
-@section slicify
-
-Pass the images of input video on to next video filter as multiple
-slices.
-
-@example
-./ffmpeg -i in.avi -vfilters "slicify=32" out.avi
-@end example
-
-The filter accepts the slice height as parameter. If the parameter is
-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 scale
Scale the input video to width:height and/or convert the image format.
@@ -189,6 +174,21 @@ ratio of the input image.
The default value of ``width'' and ``height'' is 0.
+@section slicify
+
+Pass the images of input video on to next video filter as multiple
+slices.
+
+@example
+./ffmpeg -i in.avi -vfilters "slicify=32" out.avi
+@end example
+
+The filter accepts the slice height as parameter. If the parameter is
+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 vflip
Flip the input video vertically.