Commit 1d780535 authored by Hans Verkuil's avatar Hans Verkuil Committed by Mauro Carvalho Chehab

[media] vivid: add support for the DCI-P3 colorspace

Support this new colorspace in vivid.
Signed-off-by: default avatarHans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@osg.samsung.com>
parent b592b52e
...@@ -123,6 +123,7 @@ enum vivid_colorspace { ...@@ -123,6 +123,7 @@ enum vivid_colorspace {
VIVID_CS_SRGB, VIVID_CS_SRGB,
VIVID_CS_ADOBERGB, VIVID_CS_ADOBERGB,
VIVID_CS_2020, VIVID_CS_2020,
VIVID_CS_DCI_P3,
VIVID_CS_240M, VIVID_CS_240M,
VIVID_CS_SYS_M, VIVID_CS_SYS_M,
VIVID_CS_SYS_BG, VIVID_CS_SYS_BG,
......
...@@ -343,6 +343,7 @@ static int vivid_vid_cap_s_ctrl(struct v4l2_ctrl *ctrl) ...@@ -343,6 +343,7 @@ static int vivid_vid_cap_s_ctrl(struct v4l2_ctrl *ctrl)
V4L2_COLORSPACE_SRGB, V4L2_COLORSPACE_SRGB,
V4L2_COLORSPACE_ADOBERGB, V4L2_COLORSPACE_ADOBERGB,
V4L2_COLORSPACE_BT2020, V4L2_COLORSPACE_BT2020,
V4L2_COLORSPACE_DCI_P3,
V4L2_COLORSPACE_SMPTE240M, V4L2_COLORSPACE_SMPTE240M,
V4L2_COLORSPACE_470_SYSTEM_M, V4L2_COLORSPACE_470_SYSTEM_M,
V4L2_COLORSPACE_470_SYSTEM_BG, V4L2_COLORSPACE_470_SYSTEM_BG,
...@@ -702,6 +703,7 @@ static const char * const vivid_ctrl_colorspace_strings[] = { ...@@ -702,6 +703,7 @@ static const char * const vivid_ctrl_colorspace_strings[] = {
"sRGB", "sRGB",
"AdobeRGB", "AdobeRGB",
"BT.2020", "BT.2020",
"DCI-P3",
"SMPTE 240M", "SMPTE 240M",
"470 System M", "470 System M",
"470 System BG", "470 System BG",
...@@ -725,6 +727,7 @@ static const char * const vivid_ctrl_xfer_func_strings[] = { ...@@ -725,6 +727,7 @@ static const char * const vivid_ctrl_xfer_func_strings[] = {
"AdobeRGB", "AdobeRGB",
"SMPTE 240M", "SMPTE 240M",
"None", "None",
"DCI-P3",
NULL, NULL,
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment