diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-04-10 23:18:18 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-04-10 23:24:48 +0200 |
commit | b3fb2d8cec91dadf935832f3bef97bf5a3a11352 (patch) | |
tree | 5cd66817a72919b0dd0ceaa55713959ad7a7a259 /doc/filters.texi | |
parent | 7e99ccf5d8c25d7fe670d9402349b055c0c1449a (diff) | |
parent | 95f1f56a21bc2f824af6fb97ca7ab35cdd0c401e (diff) | |
download | ffmpeg-b3fb2d8cec91dadf935832f3bef97bf5a3a11352.tar.gz |
Merge commit '95f1f56a21bc2f824af6fb97ca7ab35cdd0c401e'
* commit '95f1f56a21bc2f824af6fb97ca7ab35cdd0c401e':
vf_select: switch to an AVOptions-based system.
Conflicts:
doc/filters.texi
libavfilter/f_select.c
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'doc/filters.texi')
-rw-r--r-- | doc/filters.texi | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index 03113cd387..e22a8ba672 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -6421,14 +6421,16 @@ It accepts the following values: @section aselect, select Select frames to pass in output. -These filters accept a single option @option{expr} or @option{e} -specifying the select expression, which can be specified either by -specyfing @code{expr=VALUE} or specifying the expression -alone. - -The select expression is evaluated for each input frame. If the -evaluation result is a non-zero value, the frame is selected and -passed to the output, otherwise it is discarded. +This filter accepts the following options: + +@table @option + +@item expr +An expression, which is evaluated for each input frame. If the expression is +evaluated to a non-zero value, the frame is selected and passed to the output, +otherwise it is discarded. + +@end table The expression can contain the following constants: |