diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2010-09-25 16:43:42 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2010-09-25 16:43:42 +0000 |
commit | acbac56789750361b7d623cd85a136b58ce1fc31 (patch) | |
tree | df0c01b93a2123da2dc5b091b5eecd983247e33e /doc | |
parent | b299c4e4d342bd7894a9fe9b805a5c0f8b6603a1 (diff) | |
download | ffmpeg-acbac56789750361b7d623cd85a136b58ce1fc31.tar.gz |
yadif filter, based on stefanos port of my yadif from mplayer.
Compared to stefanos, 2 frame output works with ffplay.
Originally committed as revision 25196 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'doc')
-rw-r--r-- | doc/filters.texi | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index 54cdf589dc..d000276599 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -448,6 +448,36 @@ Flip the input video vertically. ./ffmpeg -i in.avi -vf "vflip" out.avi @end example +@section yadif + +yadif is "yet another deinterlacing filter". + +It accepts the syntax: +@example +yadif=[@var{mode}[:@var{parity}]] +@end example + +@table @option + +@item mode +Specify the interlacing mode to adopt, accepts one of the following values. + +0: Output 1 frame for each frame. + +1: Output 1 frame for each field. + +2: Like 0 but skips spatial interlacing check. + +3: Like 1 but skips spatial interlacing check. + +Default value is 0. + +@item parity +0 if is bottom field first, 1 if the interlaced video is top field +first, -1 to enable automatic detection. + +@end table + @c man end VIDEO FILTERS @chapter Video Sources |