diff options
author | Joakim Plate <elupus@ecce.se> | 2011-07-03 13:19:44 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-09-19 12:44:22 +0200 |
commit | ab09df9deae8be0e3346e9255a80d616517c32d5 (patch) | |
tree | a24bba7468a123327f71325d615fc85b13bc14ed /doc | |
parent | 91aff2665dc5bcd74ab3a3a2ae47b653fecdf178 (diff) | |
download | ffmpeg-ab09df9deae8be0e3346e9255a80d616517c32d5.tar.gz |
vf_yadif: add an option to enable/disable deinterlacing based on src frame "interlaced" flag
Signed-off-by: Joakim Plate <elupus@ecce.se>
Signed-off-by: Anton Khirnov <anton@khirnov.net>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/filters.texi | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index a86b20e86d..f0a43813b6 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -1504,7 +1504,7 @@ Flip the input video vertically. Deinterlace the input video ("yadif" means "yet another deinterlacing filter"). -It accepts the optional parameters: @var{mode}:@var{parity}. +It accepts the optional parameters: @var{mode}:@var{parity}:@var{auto}. @var{mode} specifies the interlacing mode to adopt, accepts one of the following values: @@ -1538,6 +1538,18 @@ Default value is -1. If interlacing is unknown or decoder does not export this information, top field first will be assumed. +@var{auto] specifies if deinterlacer should trust the interlaced flag +and only deinterlace frames marked as interlaced + +@table @option +@item 0 +deinterlace all frames +@item 1 +only deinterlace frames marked as interlaced +@end table + +Default value is 0. + @c man end VIDEO FILTERS @chapter Video Sources |