aboutsummaryrefslogtreecommitdiffstats
path: root/include/uapi
diff options
context:
space:
mode:
authorHans Verkuil <hans.verkuil@cisco.com>2015-05-15 08:29:07 -0400
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>2015-05-30 10:38:21 -0400
commitaddad1050827136e4f8d22c5c81df42f88f44651 (patch)
tree781bb498fabd8e8aeff1e405b9725baadc06e33b /include/uapi
parentda0c211bb6670c5e8aa9cac7437948e3e6d00ce3 (diff)
[media] videodev2.h: add COLORSPACE_RAW
V4L2_COLORSPACE_RAW is added for raw image formats where the picture is minimally processed and is in the internal colorspace of the sensor. This is typically used in digital cameras where the image processing is done later. Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Diffstat (limited to 'include/uapi')
-rw-r--r--include/uapi/linux/videodev2.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/uapi/linux/videodev2.h b/include/uapi/linux/videodev2.h
index c5e89ab21cd9..81045aaabec9 100644
--- a/include/uapi/linux/videodev2.h
+++ b/include/uapi/linux/videodev2.h
@@ -226,6 +226,9 @@ enum v4l2_colorspace {
226 226
227 /* BT.2020 colorspace, used for UHDTV. */ 227 /* BT.2020 colorspace, used for UHDTV. */
228 V4L2_COLORSPACE_BT2020 = 10, 228 V4L2_COLORSPACE_BT2020 = 10,
229
230 /* Raw colorspace: for RAW unprocessed images */
231 V4L2_COLORSPACE_RAW = 11,
229}; 232};
230 233
231enum v4l2_ycbcr_encoding { 234enum v4l2_ycbcr_encoding {