summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorJérémy Tran <tran.jeremy.av@gmail.com>2012-08-16 09:15:58 +0200
committerStefano Sabatini <stefasab@gmail.com>2012-08-16 15:01:05 +0200
commit191b77eb01addf008440531f8cab193b3c2c5a15 (patch)
tree96c831484aa3b398ded8b9a98ef8053bf2eabad1 /doc
parent6efce3a894d497e045ba85555efaa4abfd685ba3 (diff)
lavfi/hue: add named options support
Old syntax has been kept for compatibility reasons. Signed-off-by: Stefano Sabatini <stefasab@gmail.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/filters.texi51
1 files changed, 46 insertions, 5 deletions
diff --git a/doc/filters.texi b/doc/filters.texi
index dff3cc2e00..f4c895a3fe 100644
--- a/doc/filters.texi
+++ b/doc/filters.texi
@@ -2191,12 +2191,53 @@ a float number which specifies chroma temporal strength, defaults to
Modify the hue and/or the saturation of the input.
-This filter accepts the optional parameters: @var{hue}:@var{saturation}.
+This filter accepts the following optional named options:
-@var{hue} must be a float number that specifies the hue angle as a
-number of degrees, and defaults to 0.0.
-@var{saturation} must be a float number that specifies the saturation
-in the [-10,10] range, and defaults to 1.0.
+@table @option
+@item h
+Specify the hue angle as a number of degrees. It accepts a float
+number or an expression, and defaults to 0.0.
+
+@item H
+Specify the hue angle as a number of degrees. It accepts a float
+number or an expression, and defaults to 0.0.
+
+@item s
+Specify the saturation in the [-10,10] range. It accepts a float number and
+defaults to 1.0.
+@end table
+
+The options can also be set using the syntax: @var{hue}:@var{saturation}
+
+In this case @var{hue} is expressed in degrees.
+
+Some examples follow:
+@itemize
+@item
+Set the hue to 90 degrees and the saturation to 1.0:
+@example
+hue=h=90:s=1
+@end example
+
+@item
+Same command but expressing the hue in radians:
+@example
+hue=H=PI/2:s=1
+@end example
+
+@item
+Same command without named options, hue must be expressed in degrees:
+@example
+hue=90:1
+@end example
+
+@item
+Note that "h:s" syntax does not support expressions for the values of
+h and s, so the following example will issue an error:
+@example
+hue=PI/2:1
+@end example
+@end itemize
@section idet