summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/filters.texi4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/filters.texi b/doc/filters.texi
index 4a05242621..eaf46cf99f 100644
--- a/doc/filters.texi
+++ b/doc/filters.texi
@@ -9181,13 +9181,13 @@ select='not(mod(n\,100))'
@item
Select only frames contained in the 10-20 time interval:
@example
-select='gte(t\,10)*lte(t\,20)'
+select=between(t\,10\,20)
@end example
@item
Select only I frames contained in the 10-20 time interval:
@example
-select='gte(t\,10)*lte(t\,20)*eq(pict_type\,I)'
+select=between(t\,10\,20)*eq(pict_type\,I)
@end example
@item