summaryrefslogtreecommitdiffstats
path: root/libc/kernel/common/linux/msm_q6vdec.h
blob: 83f60172bf4b6ddea2896b5970ebc3a2d0948ded (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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
/****************************************************************************
 ****************************************************************************
 ***
 ***   This header was automatically generated from a Linux kernel header
 ***   of the same name, to make information necessary for userspace to
 ***   call into the kernel available to libc.  It contains only constants,
 ***   structures, and macros generated from the original header, and thus,
 ***   contains no copyrightable information.
 ***
 ****************************************************************************
 ****************************************************************************/
#ifndef _MSM_VDEC_H_
#define _MSM_VDEC_H_

#include <linux/types.h>

#define VDEC_IOCTL_MAGIC 'v'

#define VDEC_IOCTL_INITIALIZE _IOWR(VDEC_IOCTL_MAGIC, 1, struct vdec_init)
#define VDEC_IOCTL_SETBUFFERS _IOW(VDEC_IOCTL_MAGIC, 2, struct vdec_memory)
#define VDEC_IOCTL_QUEUE _IOW(VDEC_IOCTL_MAGIC, 3, struct vdec_input_buf)
#define VDEC_IOCTL_REUSEFRAMEBUFFER _IOW(VDEC_IOCTL_MAGIC, 4, unsigned int)
#define VDEC_IOCTL_FLUSH _IOW(VDEC_IOCTL_MAGIC, 5, unsigned int)
#define VDEC_IOCTL_EOS _IO(VDEC_IOCTL_MAGIC, 6)
#define VDEC_IOCTL_GETMSG _IOR(VDEC_IOCTL_MAGIC, 7, struct vdec_msg)
#define VDEC_IOCTL_CLOSE _IO(VDEC_IOCTL_MAGIC, 8)

enum {
 VDEC_FRAME_DECODE_OK,
 VDEC_FRAME_DECODE_ERR,
 VDEC_FATAL_ERR,
 VDEC_FLUSH_FINISH,
 VDEC_EOS,
};

enum {
 VDEC_FLUSH_INPUT,
 VDEC_FLUSH_OUTPUT,
 VDEC_FLUSH_ALL
};

struct vdec_input_buf {
 u32 offset;
 u32 data;
 u32 size;
 int timestamp;
 int avsync_state;
 u32 flags;
};

struct vdec_buf_desc {
 u32 bufsize;
 u32 bufnum;
};

struct vdec_buf_req {
 struct vdec_buf_desc input;
 struct vdec_buf_desc output;
 struct vdec_buf_desc dec;
};

struct vdec_buf_info {
 u32 src_id;
 u32 offset;
 u32 size;
};

struct vdec_config {
 u32 fourcc;
 u32 width;
 u32 height;
 u32 order;
 u32 notify_enable;
 u32 vc1_rowbase;
 u32 h264_startcode_detect;
 u32 h264_nal_len_size;
 u32 postproc_flag;
};

struct vdec_vc1_panscan_regions {
 int num;
 int width[4];
 int height[4];
 int xoffset[4];
 int yoffset[4];
};

struct vdec_frame_info {
 u32 status;
 u32 offset;
 u32 data1;
 u32 data2;
 u32 timestamp;
 u32 dec_width;
 u32 dec_height;
 u32 disp_width;
 u32 disp_height;
 u32 picture_type[2];
 u32 picture_format;
 u32 vc1_rangeY;
 u32 vc1_rangeUV;
 u32 picture_resolution;
 u32 frame_disp_repeat;
 u32 repeat_first_field;
 u32 top_field_first;
 u32 interframe_interp;
 struct vdec_vc1_panscan_regions panscan;
 u32 concealed_macblk_num;
 u32 flags;
};

struct vdec_buffers {
 struct vdec_buf_info out;
 struct vdec_buf_info in;
 struct vdec_buf_info dec;
};

struct vdec_sequence {
 u8 *header;
 u32 len;
};

struct vdec_config_sps {
 struct vdec_config cfg;
 struct vdec_sequence seq;
};

#define VDEC_MSG_REUSEINPUTBUFFER 1
#define VDEC_MSG_FRAMEDONE 2

struct vdec_msg {
 u32 id;

 union {

 u32 buf_id;

 struct vdec_frame_info vfr_info;
 };
};

struct vdec_init {
 struct vdec_config_sps sps_cfg;
 struct vdec_buf_req *buf_req;
};

struct vdec_memory {
 struct vdec_buffers buf;
 u32 id;
};

#endif