summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2018-11-01 13:50:51 +0100
committerPaul B Mahol <onemda@gmail.com>2018-11-01 13:50:51 +0100
commitd98fb558be9c53ed6f34c21a59dc27a090153c1d (patch)
tree08a9d02038acedb751db57476c07a04e777f2a79 /doc
parent4a976200d7853588336005a394dd31d905f5caf6 (diff)
doc/filter: add some loop filter trivial examples
Diffstat (limited to 'doc')
-rw-r--r--doc/filters.texi22
1 files changed, 22 insertions, 0 deletions
diff --git a/doc/filters.texi b/doc/filters.texi
index 200af0d2d1..4345a4931b 100644
--- a/doc/filters.texi
+++ b/doc/filters.texi
@@ -11379,6 +11379,28 @@ Set maximal size in number of frames. Default is 0.
Set first frame of loop. Default is 0.
@end table
+@subsection Examples
+
+@itemize
+@item
+Loop single first frame infinitely:
+@example
+loop=loop=-1:size=1:start=0
+@end example
+
+@item
+Loop single first frame 10 times:
+@example
+loop=loop=10:size=1:start=0
+@end example
+
+@item
+Loop 10 first frames 5 times:
+@example
+loop=loop=5:size=10:start=0
+@end example
+@end itemize
+
@section lut1d
Apply a 1D LUT to an input video.