aboutsummaryrefslogtreecommitdiffstats
path: root/include/uapi/linux/videodev2.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/uapi/linux/videodev2.h')
-rw-r--r--include/uapi/linux/videodev2.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/uapi/linux/videodev2.h b/include/uapi/linux/videodev2.h
index fa8bf2d07a52..f95e1ef0e7e6 100644
--- a/include/uapi/linux/videodev2.h
+++ b/include/uapi/linux/videodev2.h
@@ -145,6 +145,7 @@ enum v4l2_buf_type {
145 V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE = 9, 145 V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE = 9,
146 V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE = 10, 146 V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE = 10,
147 V4L2_BUF_TYPE_SDR_CAPTURE = 11, 147 V4L2_BUF_TYPE_SDR_CAPTURE = 11,
148 V4L2_BUF_TYPE_SDR_OUTPUT = 12,
148 /* Deprecated, do not use */ 149 /* Deprecated, do not use */
149 V4L2_BUF_TYPE_PRIVATE = 0x80, 150 V4L2_BUF_TYPE_PRIVATE = 0x80,
150}; 151};
@@ -159,7 +160,8 @@ enum v4l2_buf_type {
159 || (type) == V4L2_BUF_TYPE_VIDEO_OVERLAY \ 160 || (type) == V4L2_BUF_TYPE_VIDEO_OVERLAY \
160 || (type) == V4L2_BUF_TYPE_VIDEO_OUTPUT_OVERLAY \ 161 || (type) == V4L2_BUF_TYPE_VIDEO_OUTPUT_OVERLAY \
161 || (type) == V4L2_BUF_TYPE_VBI_OUTPUT \ 162 || (type) == V4L2_BUF_TYPE_VBI_OUTPUT \
162 || (type) == V4L2_BUF_TYPE_SLICED_VBI_OUTPUT) 163 || (type) == V4L2_BUF_TYPE_SLICED_VBI_OUTPUT \
164 || (type) == V4L2_BUF_TYPE_SDR_OUTPUT)
163 165
164enum v4l2_tuner_type { 166enum v4l2_tuner_type {
165 V4L2_TUNER_RADIO = 1, 167 V4L2_TUNER_RADIO = 1,
@@ -435,6 +437,7 @@ struct v4l2_capability {
435 437
436#define V4L2_CAP_SDR_CAPTURE 0x00100000 /* Is a SDR capture device */ 438#define V4L2_CAP_SDR_CAPTURE 0x00100000 /* Is a SDR capture device */
437#define V4L2_CAP_EXT_PIX_FORMAT 0x00200000 /* Supports the extended pixel format */ 439#define V4L2_CAP_EXT_PIX_FORMAT 0x00200000 /* Supports the extended pixel format */
440#define V4L2_CAP_SDR_OUTPUT 0x00400000 /* Is a SDR output device */
438 441
439#define V4L2_CAP_READWRITE 0x01000000 /* read/write systemcalls */ 442#define V4L2_CAP_READWRITE 0x01000000 /* read/write systemcalls */
440#define V4L2_CAP_ASYNCIO 0x02000000 /* async I/O */ 443#define V4L2_CAP_ASYNCIO 0x02000000 /* async I/O */