1
|
1 /*
|
|
2 * mpeg2_internal.h
|
12932
|
3 * Copyright (C) 2000-2003 Michel Lespinasse <walken@zoy.org>
|
9852
|
4 * Copyright (C) 1999-2000 Aaron Holtzman <aholtzma@ess.engr.uvic.ca>
|
1
|
5 *
|
|
6 * This file is part of mpeg2dec, a free MPEG-2 video stream decoder.
|
9852
|
7 * See http://libmpeg2.sourceforge.net/ for updates.
|
1
|
8 *
|
|
9 * mpeg2dec is free software; you can redistribute it and/or modify
|
|
10 * it under the terms of the GNU General Public License as published by
|
|
11 * the Free Software Foundation; either version 2 of the License, or
|
|
12 * (at your option) any later version.
|
|
13 *
|
|
14 * mpeg2dec is distributed in the hope that it will be useful,
|
|
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
17 * GNU General Public License for more details.
|
|
18 *
|
|
19 * You should have received a copy of the GNU General Public License
|
|
20 * along with this program; if not, write to the Free Software
|
|
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
22 */
|
|
23
|
36
|
24 /* macroblock modes */
|
1
|
25 #define MACROBLOCK_INTRA 1
|
|
26 #define MACROBLOCK_PATTERN 2
|
|
27 #define MACROBLOCK_MOTION_BACKWARD 4
|
|
28 #define MACROBLOCK_MOTION_FORWARD 8
|
|
29 #define MACROBLOCK_QUANT 16
|
|
30 #define DCT_TYPE_INTERLACED 32
|
36
|
31 /* motion_type */
|
12932
|
32 #define MOTION_TYPE_SHIFT 6
|
|
33 #define MC_FIELD 1
|
|
34 #define MC_FRAME 2
|
|
35 #define MC_16X8 2
|
|
36 #define MC_DMV 3
|
1
|
37
|
36
|
38 /* picture structure */
|
1
|
39 #define TOP_FIELD 1
|
|
40 #define BOTTOM_FIELD 2
|
|
41 #define FRAME_PICTURE 3
|
|
42
|
36
|
43 /* picture coding type */
|
1
|
44 #define I_TYPE 1
|
|
45 #define P_TYPE 2
|
|
46 #define B_TYPE 3
|
|
47 #define D_TYPE 4
|
|
48
|
12932
|
49 typedef void mpeg2_mc_fct (uint8_t *, const uint8_t *, int, int);
|
|
50
|
9852
|
51 typedef struct {
|
1
|
52 uint8_t * ref[2][3];
|
9852
|
53 uint8_t ** ref2[2];
|
1
|
54 int pmv[2][2];
|
|
55 int f_code[2];
|
|
56 } motion_t;
|
|
57
|
12932
|
58 typedef void motion_parser_t (mpeg2_decoder_t * decoder,
|
|
59 motion_t * motion,
|
|
60 mpeg2_mc_fct * const * table);
|
|
61
|
|
62 struct mpeg2_decoder_s {
|
36
|
63 /* first, state that carries information from one macroblock to the */
|
9852
|
64 /* next inside a slice, and is never used outside of mpeg2_slice() */
|
36
|
65
|
|
66 /* bit parsing stuff */
|
9852
|
67 uint32_t bitstream_buf; /* current 32 bit working set */
|
|
68 int bitstream_bits; /* used bits in working set */
|
|
69 const uint8_t * bitstream_ptr; /* buffer with stream data */
|
|
70
|
|
71 uint8_t * dest[3];
|
|
72
|
|
73 int offset;
|
|
74 int stride;
|
|
75 int uv_stride;
|
12932
|
76 int slice_stride;
|
|
77 int slice_uv_stride;
|
|
78 int stride_frame;
|
9852
|
79 unsigned int limit_x;
|
|
80 unsigned int limit_y_16;
|
|
81 unsigned int limit_y_8;
|
|
82 unsigned int limit_y;
|
36
|
83
|
|
84 /* Motion vectors */
|
|
85 /* The f_ and b_ correspond to the forward and backward motion */
|
|
86 /* predictors */
|
1
|
87 motion_t b_motion;
|
|
88 motion_t f_motion;
|
12932
|
89 motion_parser_t * motion_parser[5];
|
1
|
90
|
36
|
91 /* predictor for DC coefficients in intra blocks */
|
1
|
92 int16_t dc_dct_pred[3];
|
|
93
|
12932
|
94 /* DCT coefficients */
|
|
95 int16_t DCTblock[64] ATTR_ALIGN(64);
|
|
96
|
|
97 uint8_t * picture_dest[3];
|
|
98 void (* convert) (void * convert_id, uint8_t * const * src,
|
|
99 unsigned int v_offset);
|
|
100 void * convert_id;
|
|
101
|
|
102 int dmv_offset;
|
|
103 unsigned int v_offset;
|
36
|
104
|
|
105 /* now non-slice-specific information */
|
|
106
|
|
107 /* sequence header stuff */
|
12932
|
108 uint16_t * quantizer_matrix[4];
|
|
109 uint16_t (* chroma_quantizer[2])[64];
|
|
110 uint16_t quantizer_prescale[4][32][64];
|
36
|
111
|
|
112 /* The width and height of the picture snapped to macroblock units */
|
9852
|
113 int width;
|
|
114 int height;
|
|
115 int vertical_position_extension;
|
12932
|
116 int chroma_format;
|
36
|
117
|
|
118 /* picture header stuff */
|
|
119
|
|
120 /* what type of picture this is (I, P, B, D) */
|
9852
|
121 int coding_type;
|
|
122
|
36
|
123 /* picture coding extension stuff */
|
9852
|
124
|
36
|
125 /* quantization factor for intra dc coefficients */
|
|
126 int intra_dc_precision;
|
|
127 /* top/bottom/both fields */
|
|
128 int picture_structure;
|
|
129 /* bool to indicate all predictions are frame based */
|
|
130 int frame_pred_frame_dct;
|
|
131 /* bool to indicate whether intra blocks have motion vectors */
|
|
132 /* (for concealment) */
|
|
133 int concealment_motion_vectors;
|
|
134 /* bool to use different vlc tables */
|
|
135 int intra_vlc_format;
|
|
136 /* used for DMV MC */
|
|
137 int top_field_first;
|
|
138
|
|
139 /* stuff derived from bitstream */
|
|
140
|
|
141 /* pointer to the zigzag scan we're supposed to be using */
|
9852
|
142 const uint8_t * scan;
|
36
|
143
|
|
144 int second_field;
|
|
145
|
|
146 int mpeg1;
|
12935
|
147
|
|
148 /* for MPlayer: */
|
13123
|
149 int quantizer_scales[32];
|
12935
|
150 int quantizer_scale;
|
|
151 char* quant_store;
|
|
152 int quant_stride;
|
9852
|
153 };
|
36
|
154
|
9852
|
155 typedef struct {
|
12932
|
156 mpeg2_fbuf_t fbuf;
|
9852
|
157 } fbuf_alloc_t;
|
|
158
|
|
159 struct mpeg2dec_s {
|
12932
|
160 mpeg2_decoder_t decoder;
|
9852
|
161
|
|
162 mpeg2_info_t info;
|
|
163
|
|
164 uint32_t shift;
|
|
165 int is_display_initialized;
|
12932
|
166 mpeg2_state_t (* action) (struct mpeg2dec_s * mpeg2dec);
|
|
167 mpeg2_state_t state;
|
9852
|
168 uint32_t ext_state;
|
79
|
169
|
9852
|
170 /* allocated in init - gcc has problems allocating such big structures */
|
|
171 uint8_t * chunk_buffer;
|
|
172 /* pointer to start of the current chunk */
|
|
173 uint8_t * chunk_start;
|
|
174 /* pointer to current position in chunk_buffer */
|
|
175 uint8_t * chunk_ptr;
|
|
176 /* last start code ? */
|
|
177 uint8_t code;
|
|
178
|
12932
|
179 /* picture tags */
|
|
180 uint32_t tag_current, tag2_current, tag_previous, tag2_previous;
|
|
181 int num_tags;
|
|
182 int bytes_since_tag;
|
9852
|
183
|
|
184 int first;
|
|
185 int alloc_index_user;
|
|
186 int alloc_index;
|
|
187 uint8_t first_decode_slice;
|
|
188 uint8_t nb_decode_slices;
|
|
189
|
12932
|
190 unsigned int user_data_len;
|
|
191
|
|
192 mpeg2_sequence_t new_sequence;
|
|
193 mpeg2_sequence_t sequence;
|
|
194 mpeg2_gop_t new_gop;
|
|
195 mpeg2_gop_t gop;
|
|
196 mpeg2_picture_t new_picture;
|
|
197 mpeg2_picture_t pictures[4];
|
|
198 mpeg2_picture_t * picture;
|
|
199 /*const*/ mpeg2_fbuf_t * fbuf[3]; /* 0: current fbuf, 1-2: prediction fbufs */
|
9852
|
200
|
|
201 fbuf_alloc_t fbuf_alloc[3];
|
|
202 int custom_fbuf;
|
79
|
203
|
9852
|
204 uint8_t * yuv_buf[3][3];
|
|
205 int yuv_index;
|
12932
|
206 mpeg2_convert_t * convert;
|
|
207 void * convert_arg;
|
|
208 unsigned int convert_id_size;
|
|
209 int convert_stride;
|
|
210 void (* convert_start) (void * id, const mpeg2_fbuf_t * fbuf,
|
|
211 const mpeg2_picture_t * picture,
|
|
212 const mpeg2_gop_t * gop);
|
1
|
213
|
9852
|
214 uint8_t * buf_start;
|
|
215 uint8_t * buf_end;
|
|
216
|
|
217 int16_t display_offset_x, display_offset_y;
|
12932
|
218
|
|
219 int copy_matrix;
|
|
220 int8_t q_scale_type, scaled[4];
|
|
221 uint8_t quantizer_matrix[4][64];
|
|
222 uint8_t new_quantizer_matrix[4][64];
|
13112
|
223
|
|
224 /* for MPlayer: */
|
|
225 unsigned char *pending_buffer;
|
|
226 int pending_length;
|
9852
|
227 };
|
|
228
|
|
229 typedef struct {
|
|
230 #ifdef ARCH_PPC
|
|
231 uint8_t regv[12*16];
|
|
232 #endif
|
|
233 int dummy;
|
|
234 } cpu_state_t;
|
1
|
235
|
9852
|
236 /* cpu_accel.c */
|
|
237 uint32_t mpeg2_detect_accel (void);
|
1
|
238
|
9852
|
239 /* cpu_state.c */
|
|
240 void mpeg2_cpu_state_init (uint32_t accel);
|
1
|
241
|
9852
|
242 /* decode.c */
|
12932
|
243 mpeg2_state_t mpeg2_seek_header (mpeg2dec_t * mpeg2dec);
|
|
244 mpeg2_state_t mpeg2_parse_header (mpeg2dec_t * mpeg2dec);
|
9852
|
245
|
|
246 /* header.c */
|
|
247 void mpeg2_header_state_init (mpeg2dec_t * mpeg2dec);
|
12932
|
248 void mpeg2_reset_info (mpeg2_info_t * info);
|
9852
|
249 int mpeg2_header_sequence (mpeg2dec_t * mpeg2dec);
|
|
250 int mpeg2_header_gop (mpeg2dec_t * mpeg2dec);
|
12932
|
251 mpeg2_state_t mpeg2_header_picture_start (mpeg2dec_t * mpeg2dec);
|
9852
|
252 int mpeg2_header_picture (mpeg2dec_t * mpeg2dec);
|
|
253 int mpeg2_header_extension (mpeg2dec_t * mpeg2dec);
|
|
254 int mpeg2_header_user_data (mpeg2dec_t * mpeg2dec);
|
|
255 void mpeg2_header_sequence_finalize (mpeg2dec_t * mpeg2dec);
|
12932
|
256 void mpeg2_header_gop_finalize (mpeg2dec_t * mpeg2dec);
|
|
257 void mpeg2_header_picture_finalize (mpeg2dec_t * mpeg2dec, uint32_t accels);
|
|
258 mpeg2_state_t mpeg2_header_slice_start (mpeg2dec_t * mpeg2dec);
|
|
259 mpeg2_state_t mpeg2_header_end (mpeg2dec_t * mpeg2dec);
|
|
260 void mpeg2_set_fbuf (mpeg2dec_t * mpeg2dec, int b_type);
|
1
|
261
|
36
|
262 /* idct.c */
|
9852
|
263 void mpeg2_idct_init (uint32_t accel);
|
1
|
264
|
36
|
265 /* idct_mmx.c */
|
9852
|
266 void mpeg2_idct_copy_mmxext (int16_t * block, uint8_t * dest, int stride);
|
|
267 void mpeg2_idct_add_mmxext (int last, int16_t * block,
|
|
268 uint8_t * dest, int stride);
|
|
269 void mpeg2_idct_copy_mmx (int16_t * block, uint8_t * dest, int stride);
|
|
270 void mpeg2_idct_add_mmx (int last, int16_t * block,
|
|
271 uint8_t * dest, int stride);
|
|
272 void mpeg2_idct_mmx_init (void);
|
|
273
|
|
274 /* idct_altivec.c */
|
|
275 void mpeg2_idct_copy_altivec (int16_t * block, uint8_t * dest, int stride);
|
|
276 void mpeg2_idct_add_altivec (int last, int16_t * block,
|
|
277 uint8_t * dest, int stride);
|
|
278 void mpeg2_idct_altivec_init (void);
|
|
279
|
|
280 /* idct_alpha.c */
|
|
281 void mpeg2_idct_copy_mvi (int16_t * block, uint8_t * dest, int stride);
|
|
282 void mpeg2_idct_add_mvi (int last, int16_t * block,
|
|
283 uint8_t * dest, int stride);
|
|
284 void mpeg2_idct_copy_alpha (int16_t * block, uint8_t * dest, int stride);
|
|
285 void mpeg2_idct_add_alpha (int last, int16_t * block,
|
|
286 uint8_t * dest, int stride);
|
12932
|
287 void mpeg2_idct_alpha_init (void);
|
1
|
288
|
36
|
289 /* motion_comp.c */
|
9852
|
290 void mpeg2_mc_init (uint32_t accel);
|
|
291
|
|
292 typedef struct {
|
|
293 mpeg2_mc_fct * put [8];
|
|
294 mpeg2_mc_fct * avg [8];
|
|
295 } mpeg2_mc_t;
|
1
|
296
|
9852
|
297 #define MPEG2_MC_EXTERN(x) mpeg2_mc_t mpeg2_mc_##x = { \
|
|
298 {MC_put_o_16_##x, MC_put_x_16_##x, MC_put_y_16_##x, MC_put_xy_16_##x, \
|
|
299 MC_put_o_8_##x, MC_put_x_8_##x, MC_put_y_8_##x, MC_put_xy_8_##x}, \
|
|
300 {MC_avg_o_16_##x, MC_avg_x_16_##x, MC_avg_y_16_##x, MC_avg_xy_16_##x, \
|
|
301 MC_avg_o_8_##x, MC_avg_x_8_##x, MC_avg_y_8_##x, MC_avg_xy_8_##x} \
|
1
|
302 };
|
|
303
|
9852
|
304 extern mpeg2_mc_t mpeg2_mc_c;
|
|
305 extern mpeg2_mc_t mpeg2_mc_mmx;
|
|
306 extern mpeg2_mc_t mpeg2_mc_mmxext;
|
|
307 extern mpeg2_mc_t mpeg2_mc_3dnow;
|
|
308 extern mpeg2_mc_t mpeg2_mc_altivec;
|
|
309 extern mpeg2_mc_t mpeg2_mc_alpha;
|
12932
|
310 extern mpeg2_mc_t mpeg2_mc_vis;
|