brintos

brintos / linux-shallow public Read only

0
0
Text · 830 B · 92e2748 Raw
29 lines · c
1/* SPDX-License-Identifier: GPL-2.0 */2/*3 * Contains the driver implementation for the V4L2 stateless interface.4 */5 6#ifndef _VISL_VIDEO_H_7#define _VISL_VIDEO_H_8#include <media/v4l2-mem2mem.h>9 10#include "visl.h"11 12extern const struct v4l2_ioctl_ops visl_ioctl_ops;13 14extern const struct visl_ctrls visl_fwht_ctrls;15extern const struct visl_ctrls visl_mpeg2_ctrls;16extern const struct visl_ctrls visl_vp8_ctrls;17extern const struct visl_ctrls visl_vp9_ctrls;18extern const struct visl_ctrls visl_h264_ctrls;19extern const struct visl_ctrls visl_hevc_ctrls;20extern const struct visl_ctrls visl_av1_ctrls;21 22int visl_queue_init(void *priv, struct vb2_queue *src_vq,23		    struct vb2_queue *dst_vq);24 25int visl_set_default_format(struct visl_ctx *ctx);26int visl_request_validate(struct media_request *req);27 28#endif /* _VISL_VIDEO_H_ */29