summaryrefslogtreecommitdiff
path: root/doc/filters.texi
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2010-09-25 16:43:42 +0000
committerMichael Niedermayer <michaelni@gmx.at>2010-09-25 16:43:42 +0000
commitacbac56789750361b7d623cd85a136b58ce1fc31 (patch)
treedf0c01b93a2123da2dc5b091b5eecd983247e33e /doc/filters.texi
parentb299c4e4d342bd7894a9fe9b805a5c0f8b6603a1 (diff)
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/filters.texi')
-rw-r--r--doc/filters.texi30
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