Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 09362ec2 authored by Guennadi Liakhovetski's avatar Guennadi Liakhovetski Committed by Mauro Carvalho Chehab
Browse files

[media] V4L: docbook documentation for struct v4l2_create_buffers

parent 0934d94a
Loading
Loading
Loading
Loading
+11 −2
Original line number Diff line number Diff line
@@ -159,11 +159,20 @@ struct v4l2_format32 {
	} fmt;
};

/**
 * struct v4l2_create_buffers32 - VIDIOC_CREATE_BUFS32 argument
 * @index:	on return, index of the first created buffer
 * @count:	entry: number of requested buffers,
 *		return: number of created buffers
 * @memory:	buffer memory type
 * @format:	frame format, for which buffers are requested
 * @reserved:	future extensions
 */
struct v4l2_create_buffers32 {
	__u32			index;		/* output: buffers index...index + count - 1 have been created */
	__u32			index;
	__u32			count;
	enum v4l2_memory        memory;
	struct v4l2_format32	format;		/* filled in by the user, plane sizes calculated by the driver */
	struct v4l2_format32	format;
	__u32			reserved[8];
};

+11 −3
Original line number Diff line number Diff line
@@ -2142,12 +2142,20 @@ struct v4l2_dbg_chip_ident {
	__u32 revision;    /* chip revision, chip specific */
} __attribute__ ((packed));

/* VIDIOC_CREATE_BUFS */
/**
 * struct v4l2_create_buffers - VIDIOC_CREATE_BUFS argument
 * @index:	on return, index of the first created buffer
 * @count:	entry: number of requested buffers,
 *		return: number of created buffers
 * @memory:	buffer memory type
 * @format:	frame format, for which buffers are requested
 * @reserved:	future extensions
 */
struct v4l2_create_buffers {
	__u32			index;		/* output: buffers index...index + count - 1 have been created */
	__u32			index;
	__u32			count;
	enum v4l2_memory        memory;
	struct v4l2_format	format;		/* "type" is used always, the rest if sizeimage == 0 */
	struct v4l2_format	format;
	__u32			reserved[8];
};