diff options
author | Paul B Mahol <onemda@gmail.com> | 2013-02-08 15:48:59 +0000 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2013-02-09 21:41:53 +0000 |
commit | 6e9abce5e2d2e1ed51fbf4cb7bc69b89d0a8aa96 (patch) | |
tree | c913d4f900f385004615b2306f772ac476d3864f /doc/filters.texi | |
parent | 796012af6c780b5b13ebca39a491f215515a18fe (diff) | |
download | ffmpeg-6e9abce5e2d2e1ed51fbf4cb7bc69b89d0a8aa96.tar.gz |
lavfi: port MP il filter
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'doc/filters.texi')
-rw-r--r-- | doc/filters.texi | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index da80ff5356..290c146d6b 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -4648,6 +4648,43 @@ Useful for enlarging pixel art images without reducing sharpness. @section swapuv Swap U & V plane. +@section il +Deinterleave or interleave fields. + +This filter allows to process interlaced images fields without +deinterlacing them. Deinterleaving splits the input frame into 2 +fields (so called half pictures). Odd lines are moved to the top +half of the output image, even lines to the bottom half. +You can process (filter) them independently and then re-interleave them. + +It accepts a list of options in the form of @var{key}=@var{value} pairs +separated by ":". A description of the accepted options follows. + +@table @option +@item luma_mode, l +@item chroma_mode, s +@item alpha_mode, a +Available values for @var{luma_mode}, @var{chroma_mode} and +@var{alpha_mode} are: + +@table @samp +@item none +Do nothing. + +@item deinterleave, d +Deinterleave fields, placing one above the other. + +@item interleave, i +Interleave fields. Reversing effect of deinterleave. +@end table +Default value is @code{none}. + +@item luma_swap, ls +@item chroma_swap, cs +@item alpha_swap, as +Swap luma/chroma/alpha fields. Exchange even & odd lines. Default value is @code{0}. +@end table + @section thumbnail Select the most representative frame in a given sequence of consecutive frames. |