David Venhoff cfcea9ee67 Initial commit
Based off b80915eb99
and compacted into a single commit so that it will fit on the uni git server
2025-08-11 13:05:09 +02:00

26 lines
652 B
C

/* SPDX-License-Identifier: GPL-2.0-only */
/*
* vivid-meta-out.h - meta output support functions.
*/
#ifndef _VIVID_META_OUT_H_
#define _VIVID_META_OUT_H_
struct vivid_meta_out_buf {
u16 brightness;
u16 contrast;
u16 saturation;
s16 hue;
};
void vivid_meta_out_process(struct vivid_dev *dev, struct vivid_buffer *buf);
int vidioc_enum_fmt_meta_out(struct file *file, void *priv,
struct v4l2_fmtdesc *f);
int vidioc_g_fmt_meta_out(struct file *file, void *priv,
struct v4l2_format *f);
int vidioc_s_fmt_meta_out(struct file *file, void *priv,
struct v4l2_format *f);
extern const struct vb2_ops vivid_meta_out_qops;
#endif