doc/filters: use between() function in select examples

Simplify.
This commit is contained in:
Stefano Sabatini 2013-09-21 20:36:12 +02:00
parent 57618d80af
commit 21f6ff3801
1 changed files with 2 additions and 2 deletions

View File

@ -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