diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2013-05-28 13:40:39 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2013-06-01 22:34:57 +0200 |
commit | e89182fc9452f93cfe4fdc02470ac6cab6f74ea8 (patch) | |
tree | f617e8cc72cb7fa8730e9009749b31dbb2b3aef1 /doc | |
parent | 3a2b9911bffeffc3fc0541df3b4f6d492e122714 (diff) | |
download | ffmpeg-e89182fc9452f93cfe4fdc02470ac6cab6f74ea8.tar.gz |
lavfi: port mcdeint filter from libmpcodecs
Diffstat (limited to 'doc')
-rw-r--r-- | doc/filters.texi | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index 04c96469e7..1dbb449da1 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -4855,6 +4855,50 @@ lutyuv=y='bitand(val, 128+64+32)' @end example @end itemize +@section mcdeint + +Apply motion-compensation deinterlacing. + +It needs one field per frame as input and must thus be used together +with yadif=1/3 or equivalent. + +This filter accepts the following options: +@table @option +@item mode +Set the deinterlacing mode. + +It accepts one of the following values: +@table @samp +@item fast +@item medium +@item slow +use iterative motion estimation +@item extra_slow +like @samp{slow}, but use multiple reference frames. +@end table +Default value is @samp{fast}. + +@item parity +Set the picture field parity assumed for the input video. It must be +one of the following values: + +@table @samp +@item 0, tff +assume top field first +@item 1, bff +assume bottom field first +@end table + +Default value is @samp{bff}. + +@item qp +Set per-block quantization parameter (QP) used by the internal +encoder. + +Higher values should result in a smoother motion vector field but less +optimal individual vectors. Default value is 1. +@end table + @section mp Apply an MPlayer filter to the input video. |