summaryrefslogtreecommitdiff
path: root/drivers/media/test-drivers/visl/visl-dec.h
blob: 4a706a9de02eb673c10c15bba307f49b3928328a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/* SPDX-License-Identifier: GPL-2.0 */
/*
 * Contains the virtual decoder logic. The functions here control the
 * tracing/TPG on a per-frame basis
 */

#ifndef _VISL_DEC_H_
#define _VISL_DEC_H_

#include "visl.h"

struct visl_fwht_run {
	const struct v4l2_ctrl_fwht_params *params;
};

struct visl_mpeg2_run {
	const struct v4l2_ctrl_mpeg2_sequence *seq;
	const struct v4l2_ctrl_mpeg2_picture *pic;
	const struct v4l2_ctrl_mpeg2_quantisation *quant;
};

struct visl_vp8_run {
	const struct v4l2_ctrl_vp8_frame *frame;
};

struct visl_vp9_run {
	const struct v4l2_ctrl_vp9_frame *frame;
	const struct v4l2_ctrl_vp9_compressed_hdr *probs;
};

struct visl_h264_run {
	const struct v4l2_ctrl_h264_sps *sps;
	const struct v4l2_ctrl_h264_pps *pps;
	const struct v4l2_ctrl_h264_scaling_matrix *sm;
	const struct v4l2_ctrl_h264_slice_params *spram;
	const struct v4l2_ctrl_h264_decode_params *dpram;
	const struct v4l2_ctrl_h264_pred_weights *pwht;
};

struct visl_hevc_run {
	const struct v4l2_ctrl_hevc_sps *sps;
	const struct v4l2_ctrl_hevc_pps *pps;
	const struct v4l2_ctrl_hevc_slice_params *spram;
	const struct v4l2_ctrl_hevc_scaling_matrix *sm;
	const struct v4l2_ctrl_hevc_decode_params *dpram;
};

struct visl_run {
	struct vb2_v4l2_buffer	*src;
	struct vb2_v4l2_buffer	*dst;

	union {
		struct visl_fwht_run	fwht;
		struct visl_mpeg2_run	mpeg2;
		struct visl_vp8_run	vp8;
		struct visl_vp9_run	vp9;
		struct visl_h264_run	h264;
		struct visl_hevc_run	hevc;
	};
};

int visl_dec_start(struct visl_ctx *ctx);
int visl_dec_stop(struct visl_ctx *ctx);
int visl_job_ready(void *priv);
void visl_device_run(void *priv);

#endif /* _VISL_DEC_H_ */