| 1 | /* SPDX-License-Identifier: GPL-2.0-only */ |
| 2 | /* |
| 3 | * vivid-vid-cap.h - video capture support functions. |
| 4 | * |
| 5 | * Copyright 2014 Cisco Systems, Inc. and/or its affiliates. All rights reserved. |
| 6 | */ |
| 7 | |
| 8 | #ifndef _VIVID_VID_CAP_H_ |
| 9 | #define _VIVID_VID_CAP_H_ |
| 10 | |
| 11 | void vivid_update_quality(struct vivid_dev *dev); |
| 12 | void vivid_update_format_cap(struct vivid_dev *dev, bool keep_controls); |
| 13 | void vivid_update_outputs(struct vivid_dev *dev); |
| 14 | void vivid_update_connected_outputs(struct vivid_dev *dev); |
| 15 | enum tpg_video_aspect vivid_get_video_aspect(const struct vivid_dev *dev); |
| 16 | |
| 17 | extern const v4l2_std_id vivid_standard[]; |
| 18 | extern const char * const vivid_ctrl_standard_strings[]; |
| 19 | |
| 20 | extern const struct vb2_ops vivid_vid_cap_qops; |
| 21 | |
| 22 | int vivid_g_fmt_vid_cap(struct file *file, void *priv, struct v4l2_format *f); |
| 23 | int vivid_try_fmt_vid_cap(struct file *file, void *priv, struct v4l2_format *f); |
| 24 | int vivid_s_fmt_vid_cap(struct file *file, void *priv, struct v4l2_format *f); |
| 25 | int vidioc_g_fmt_vid_cap_mplane(struct file *file, void *priv, struct v4l2_format *f); |
| 26 | int vidioc_try_fmt_vid_cap_mplane(struct file *file, void *priv, struct v4l2_format *f); |
| 27 | int vidioc_s_fmt_vid_cap_mplane(struct file *file, void *priv, struct v4l2_format *f); |
| 28 | int vidioc_g_fmt_vid_cap(struct file *file, void *priv, struct v4l2_format *f); |
| 29 | int vidioc_try_fmt_vid_cap(struct file *file, void *priv, struct v4l2_format *f); |
| 30 | int vidioc_s_fmt_vid_cap(struct file *file, void *priv, struct v4l2_format *f); |
| 31 | int vivid_vid_cap_g_selection(struct file *file, void *priv, struct v4l2_selection *sel); |
| 32 | int vivid_vid_cap_s_selection(struct file *file, void *fh, struct v4l2_selection *s); |
| 33 | int vivid_vid_cap_g_pixelaspect(struct file *file, void *priv, int type, struct v4l2_fract *f); |
| 34 | int vidioc_enum_fmt_vid_overlay(struct file *file, void *priv, struct v4l2_fmtdesc *f); |
| 35 | int vidioc_g_fmt_vid_overlay(struct file *file, void *priv, struct v4l2_format *f); |
| 36 | int vidioc_try_fmt_vid_overlay(struct file *file, void *priv, struct v4l2_format *f); |
| 37 | int vidioc_s_fmt_vid_overlay(struct file *file, void *priv, struct v4l2_format *f); |
| 38 | int vidioc_enum_input(struct file *file, void *priv, struct v4l2_input *inp); |
| 39 | int vidioc_g_input(struct file *file, void *priv, unsigned *i); |
| 40 | int vidioc_s_input(struct file *file, void *priv, unsigned i); |
| 41 | int vidioc_enumaudio(struct file *file, void *fh, struct v4l2_audio *vin); |
| 42 | int vidioc_g_audio(struct file *file, void *fh, struct v4l2_audio *vin); |
| 43 | int vidioc_s_audio(struct file *file, void *fh, const struct v4l2_audio *vin); |
| 44 | int vivid_video_g_frequency(struct file *file, void *fh, struct v4l2_frequency *vf); |
| 45 | int vivid_video_s_frequency(struct file *file, void *fh, const struct v4l2_frequency *vf); |
| 46 | int vivid_video_s_tuner(struct file *file, void *fh, const struct v4l2_tuner *vt); |
| 47 | int vivid_video_g_tuner(struct file *file, void *fh, struct v4l2_tuner *vt); |
| 48 | int vidioc_querystd(struct file *file, void *priv, v4l2_std_id *id); |
| 49 | int vivid_vid_cap_s_std(struct file *file, void *priv, v4l2_std_id id); |
| 50 | int vivid_vid_cap_s_dv_timings(struct file *file, void *_fh, struct v4l2_dv_timings *timings); |
| 51 | int vidioc_query_dv_timings(struct file *file, void *_fh, struct v4l2_dv_timings *timings); |
| 52 | int vidioc_s_edid(struct file *file, void *_fh, struct v4l2_edid *edid); |
| 53 | int vidioc_enum_framesizes(struct file *file, void *fh, struct v4l2_frmsizeenum *fsize); |
| 54 | int vidioc_enum_frameintervals(struct file *file, void *priv, struct v4l2_frmivalenum *fival); |
| 55 | int vivid_vid_cap_g_parm(struct file *file, void *priv, struct v4l2_streamparm *parm); |
| 56 | int vivid_vid_cap_s_parm(struct file *file, void *priv, struct v4l2_streamparm *parm); |
| 57 | |
| 58 | #endif |
| 59 | |