diff options
author | Paul B Mahol <onemda@gmail.com> | 2021-01-03 22:20:55 +0100 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2021-01-03 22:23:51 +0100 |
commit | b112c86a2eaefb3a28fd851ed8cca579b3d79f1a (patch) | |
tree | a3e729761f0a66b70fb5cd5197b7a53c2d8191fd /doc/filters.texi | |
parent | fde5593c7ce5288ae1333e9dc3ca4f95caa69444 (diff) | |
download | ffmpeg-b112c86a2eaefb3a28fd851ed8cca579b3d79f1a.tar.gz |
avfilter/vf_w3fdif: add two more useful options
Diffstat (limited to 'doc/filters.texi')
-rw-r--r-- | doc/filters.texi | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index 01ae540c5c..813e35c2f9 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -20931,6 +20931,35 @@ More-complex filter coefficient set. @end table Default value is @samp{complex}. +@item mode +The interlacing mode to adopt. It accepts one of the following values: + +@table @option +@item frame +Output one frame for each frame. +@item field +Output one frame for each field. +@end table + +The default value is @code{field}. + +@item parity +The picture field parity assumed for the input interlaced video. It accepts one +of the following values: + +@table @option +@item tff +Assume the top field is first. +@item bff +Assume the bottom field is first. +@item auto +Enable automatic detection of field parity. +@end table + +The default value is @code{auto}. +If the interlacing is unknown or the decoder does not export this information, +top field first will be assumed. + @item deint Specify which frames to deinterlace. Accepts one of the following values: |