summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMartin Vignali <martin.vignali@gmail.com>2018-10-21 19:28:03 +0200
committerMartin Vignali <martin.vignali@gmail.com>2018-10-21 22:00:01 +0200
commit02ad0416c06e4d6859d3d54bc039975b58661e75 (patch)
tree6ff4330630be1bbd46213dc5cd54121c8d7c611a /doc
parent18d391cffee3ee333735357e262605d58a1be34f (diff)
downloadffmpeg-02ad0416c06e4d6859d3d54bc039975b58661e75.tar.gz
avfilter/setparams : merge setfield and setrange filter to setparams filter
setfield and setrange filters are kept.
Diffstat (limited to 'doc')
-rw-r--r--doc/filters.texi46
1 files changed, 46 insertions, 0 deletions
diff --git a/doc/filters.texi b/doc/filters.texi
index ad3e666253..6f58303252 100644
--- a/doc/filters.texi
+++ b/doc/filters.texi
@@ -14967,6 +14967,52 @@ Mark the frame as progressive.
@end table
@end table
+@anchor{setparams}
+@section setparams
+
+Force frame parameter for the output video frame.
+
+The @code{setparams} filter marks interlace and color range for the
+output frames. It does not change the input frame, but only sets the
+corresponding property, which affects how the frame is treated by
+filters/encoders.
+
+@table @option
+@item field_mode
+Available values are:
+
+@table @samp
+@item auto
+Keep the same field property (default).
+
+@item bff
+Mark the frame as bottom-field-first.
+
+@item tff
+Mark the frame as top-field-first.
+
+@item prog
+Mark the frame as progressive.
+@end table
+
+@item range
+Available values are:
+
+@table @samp
+@item auto
+Keep the same color range property (default).
+
+@item unspecified, unknown
+Mark the frame as unspecified color range.
+
+@item limited, tv, mpeg
+Mark the frame as limited range.
+
+@item full, pc, jpeg
+Mark the frame as full range.
+@end table
+@end table
+
@section showinfo
Show a line containing various information for each input video frame.