|
@@ -40,6 +40,8 @@ struct v4l2_ioctl_ops {
|
|
|
struct v4l2_fmtdesc *f);
|
|
|
int (*vidioc_enum_fmt_vid_out_mplane)(struct file *file, void *fh,
|
|
|
struct v4l2_fmtdesc *f);
|
|
|
+ int (*vidioc_enum_fmt_sdr_cap) (struct file *file, void *fh,
|
|
|
+ struct v4l2_fmtdesc *f);
|
|
|
|
|
|
/* VIDIOC_G_FMT handlers */
|
|
|
int (*vidioc_g_fmt_vid_cap) (struct file *file, void *fh,
|
|
@@ -62,6 +64,8 @@ struct v4l2_ioctl_ops {
|
|
|
struct v4l2_format *f);
|
|
|
int (*vidioc_g_fmt_vid_out_mplane)(struct file *file, void *fh,
|
|
|
struct v4l2_format *f);
|
|
|
+ int (*vidioc_g_fmt_sdr_cap) (struct file *file, void *fh,
|
|
|
+ struct v4l2_format *f);
|
|
|
|
|
|
/* VIDIOC_S_FMT handlers */
|
|
|
int (*vidioc_s_fmt_vid_cap) (struct file *file, void *fh,
|
|
@@ -84,6 +88,8 @@ struct v4l2_ioctl_ops {
|
|
|
struct v4l2_format *f);
|
|
|
int (*vidioc_s_fmt_vid_out_mplane)(struct file *file, void *fh,
|
|
|
struct v4l2_format *f);
|
|
|
+ int (*vidioc_s_fmt_sdr_cap) (struct file *file, void *fh,
|
|
|
+ struct v4l2_format *f);
|
|
|
|
|
|
/* VIDIOC_TRY_FMT handlers */
|
|
|
int (*vidioc_try_fmt_vid_cap) (struct file *file, void *fh,
|
|
@@ -106,6 +112,8 @@ struct v4l2_ioctl_ops {
|
|
|
struct v4l2_format *f);
|
|
|
int (*vidioc_try_fmt_vid_out_mplane)(struct file *file, void *fh,
|
|
|
struct v4l2_format *f);
|
|
|
+ int (*vidioc_try_fmt_sdr_cap) (struct file *file, void *fh,
|
|
|
+ struct v4l2_format *f);
|
|
|
|
|
|
/* Buffer handlers */
|
|
|
int (*vidioc_reqbufs) (struct file *file, void *fh, struct v4l2_requestbuffers *b);
|