diff options
Diffstat (limited to 'include/linux/videodev2.h')
| -rw-r--r-- | include/linux/videodev2.h | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/include/linux/videodev2.h b/include/linux/videodev2.h index cd512f07beed..66945a6f628d 100644 --- a/include/linux/videodev2.h +++ b/include/linux/videodev2.h | |||
| @@ -2142,12 +2142,20 @@ struct v4l2_dbg_chip_ident { | |||
| 2142 | __u32 revision; /* chip revision, chip specific */ | 2142 | __u32 revision; /* chip revision, chip specific */ |
| 2143 | } __attribute__ ((packed)); | 2143 | } __attribute__ ((packed)); |
| 2144 | 2144 | ||
| 2145 | /* VIDIOC_CREATE_BUFS */ | 2145 | /** |
| 2146 | * struct v4l2_create_buffers - VIDIOC_CREATE_BUFS argument | ||
| 2147 | * @index: on return, index of the first created buffer | ||
| 2148 | * @count: entry: number of requested buffers, | ||
| 2149 | * return: number of created buffers | ||
| 2150 | * @memory: buffer memory type | ||
| 2151 | * @format: frame format, for which buffers are requested | ||
| 2152 | * @reserved: future extensions | ||
| 2153 | */ | ||
| 2146 | struct v4l2_create_buffers { | 2154 | struct v4l2_create_buffers { |
| 2147 | __u32 index; /* output: buffers index...index + count - 1 have been created */ | 2155 | __u32 index; |
| 2148 | __u32 count; | 2156 | __u32 count; |
| 2149 | enum v4l2_memory memory; | 2157 | enum v4l2_memory memory; |
| 2150 | struct v4l2_format format; /* "type" is used always, the rest if sizeimage == 0 */ | 2158 | struct v4l2_format format; |
| 2151 | __u32 reserved[8]; | 2159 | __u32 reserved[8]; |
| 2152 | }; | 2160 | }; |
| 2153 | 2161 | ||
