summaryrefslogtreecommitdiff
path: root/doc/filters.texi
diff options
context:
space:
mode:
authorRoman Arzumanyan <rarzumanyan@nvidia.com>2022-09-10 11:05:56 +0300
committerTimo Rothenpieler <timo@rothenpieler.org>2022-09-13 22:59:30 +0200
commitcc81ab283c72921a23f7dc149c6a2b386eaf77c6 (patch)
tree31cd9da00d55a59d453a8d327ce6d0bfbf325fb2 /doc/filters.texi
parentc177108ae1144fd4e6cedb4a702260dbaa179825 (diff)
libavfilter: add vf_colorrange_cuda, CUDA-accelerated color conversion filter
Signed-off-by: Timo Rothenpieler <timo@rothenpieler.org>
Diffstat (limited to 'doc/filters.texi')
-rw-r--r--doc/filters.texi32
1 files changed, 32 insertions, 0 deletions
diff --git a/doc/filters.texi b/doc/filters.texi
index dbc08163d8..6aa350a63c 100644
--- a/doc/filters.texi
+++ b/doc/filters.texi
@@ -9725,6 +9725,38 @@ For example to convert the input to SMPTE-240M, use the command:
colorspace=smpte240m
@end example
+@section colorspace_cuda
+
+CUDA accelerated implementation of the colorspace filter.
+
+It is by no means feature complete compared to the software colorspace filter,
+and at the current time only supports color range conversion between jpeg/full
+and mpeg/limited range.
+
+The filter accepts the following options:
+
+@table @option
+@item range
+Specify output color range.
+
+The accepted values are:
+@table @samp
+@item tv
+TV (restricted) range
+
+@item mpeg
+MPEG (restricted) range
+
+@item pc
+PC (full) range
+
+@item jpeg
+JPEG (full) range
+
+@end table
+
+@end table
+
@section colortemperature
Adjust color temperature in video to simulate variations in ambient color temperature.