[cvs] / xvidcore / src / bitstream / bitstream.c Repository:
ViewVC logotype

Annotation of /xvidcore/src/bitstream/bitstream.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.39.2.14 - (view) (download)

1 : edgomez 1.39.2.11 /*****************************************************************************
2 :     *
3 :     * XVID MPEG-4 VIDEO CODEC
4 :     * - Bitstream reader/writer -
5 :     *
6 :     * Copyright (C) 2001-2003 Peter Ross <pross@xvid.org>
7 :     * 2003 Cristoph Lampert <gruel@web.de>
8 :     *
9 :     * This program 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 :     * This program 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 : chl 1.39.2.14 * $Id: bitstream.c,v 1.39.2.13 2003/06/12 14:16:41 Isibaar Exp $
24 : edgomez 1.39.2.11 *
25 :     ****************************************************************************/
26 : edgomez 1.38
27 :     #include <string.h>
28 :     #include <stdio.h>
29 : Isibaar 1.1
30 :     #include "bitstream.h"
31 :     #include "zigzag.h"
32 : Isibaar 1.2 #include "../quant/quant_matrix.h"
33 : edgomez 1.38 #include "mbcoding.h"
34 : Isibaar 1.1
35 : chenm001 1.6
36 : edgomez 1.14 static uint32_t __inline
37 :     log2bin(uint32_t value)
38 : Isibaar 1.1 {
39 :     int n = 0;
40 : edgomez 1.14
41 :     while (value) {
42 : Isibaar 1.1 value >>= 1;
43 :     n++;
44 :     }
45 :     return n;
46 :     }
47 :    
48 :    
49 : edgomez 1.14 static const uint32_t intra_dc_threshold_table[] = {
50 :     32, /* never use */
51 : Isibaar 1.1 13,
52 :     15,
53 :     17,
54 :     19,
55 :     21,
56 :     23,
57 :     1,
58 :     };
59 :    
60 :    
61 : edgomez 1.14 void
62 :     bs_get_matrix(Bitstream * bs,
63 :     uint8_t * matrix)
64 :     {
65 :     int i = 0;
66 :     int last, value = 0;
67 :    
68 :     do {
69 :     last = value;
70 :     value = BitstreamGetBits(bs, 8);
71 :     matrix[scan_tables[0][i++]] = value;
72 :     }
73 :     while (value != 0 && i < 64);
74 : edgomez 1.39.2.10 i--; /* fix little bug at coeff not full */
75 : edgomez 1.14
76 :     while (i < 64) {
77 :     matrix[scan_tables[0][i++]] = last;
78 :     }
79 :     }
80 : Isibaar 1.2
81 : suxen_drol 1.21
82 :    
83 : edgomez 1.39.2.10 /*
84 :     * for PVOP addbits == fcode - 1
85 :     * for BVOP addbits == max(fcode,bcode) - 1
86 :     * returns mbpos
87 :     */
88 : suxen_drol 1.21 int
89 : edgomez 1.38 read_video_packet_header(Bitstream *bs,
90 :     DECODER * dec,
91 :     const int addbits,
92 :     int * quant,
93 :     int * fcode_forward,
94 :     int * fcode_backward,
95 :     int * intra_dc_threshold)
96 : suxen_drol 1.21 {
97 : edgomez 1.38 int startcode_bits = NUMBITS_VP_RESYNC_MARKER + addbits;
98 :     int mbnum_bits = log2bin(dec->mb_width * dec->mb_height - 1);
99 : suxen_drol 1.21 int mbnum;
100 : edgomez 1.38 int hec = 0;
101 : suxen_drol 1.21
102 :     BitstreamSkip(bs, BitstreamNumBitsToByteAlign(bs));
103 : edgomez 1.38 BitstreamSkip(bs, startcode_bits);
104 : suxen_drol 1.21
105 : edgomez 1.39.2.9 DPRINTF(XVID_DEBUG_STARTCODE, "<video_packet_header>\n");
106 : suxen_drol 1.22
107 : edgomez 1.38 if (dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR)
108 :     {
109 :     hec = BitstreamGetBit(bs); /* header_extension_code */
110 :     if (hec && !(dec->sprite_enable == SPRITE_STATIC /* && current_coding_type = I_VOP */))
111 :     {
112 :     BitstreamSkip(bs, 13); /* vop_width */
113 :     READ_MARKER();
114 :     BitstreamSkip(bs, 13); /* vop_height */
115 :     READ_MARKER();
116 :     BitstreamSkip(bs, 13); /* vop_horizontal_mc_spatial_ref */
117 :     READ_MARKER();
118 :     BitstreamSkip(bs, 13); /* vop_vertical_mc_spatial_ref */
119 :     READ_MARKER();
120 :     }
121 :     }
122 :    
123 :     mbnum = BitstreamGetBits(bs, mbnum_bits); /* macroblock_number */
124 : edgomez 1.39.2.9 DPRINTF(XVID_DEBUG_HEADER, "mbnum %i\n", mbnum);
125 : suxen_drol 1.21
126 : edgomez 1.38 if (dec->shape != VIDOBJLAY_SHAPE_BINARY_ONLY)
127 :     {
128 :     *quant = BitstreamGetBits(bs, dec->quant_bits); /* quant_scale */
129 : edgomez 1.39.2.9 DPRINTF(XVID_DEBUG_HEADER, "quant %i\n", *quant);
130 : edgomez 1.38 }
131 : suxen_drol 1.21
132 : edgomez 1.38 if (dec->shape == VIDOBJLAY_SHAPE_RECTANGULAR)
133 :     hec = BitstreamGetBit(bs); /* header_extension_code */
134 : suxen_drol 1.21
135 :    
136 : edgomez 1.39.2.9 DPRINTF(XVID_DEBUG_HEADER, "header_extension_code %i\n", hec);
137 : edgomez 1.38 if (hec)
138 :     {
139 :     int time_base;
140 :     int time_increment;
141 :     int coding_type;
142 :    
143 :     for (time_base=0; BitstreamGetBit(bs)!=0; time_base++); /* modulo_time_base */
144 :     READ_MARKER();
145 :     if (dec->time_inc_bits)
146 :     time_increment = (BitstreamGetBits(bs, dec->time_inc_bits)); /* vop_time_increment */
147 :     READ_MARKER();
148 : edgomez 1.39.2.9 DPRINTF(XVID_DEBUG_HEADER,"time %i:%i\n", time_base, time_increment);
149 : edgomez 1.38
150 :     coding_type = BitstreamGetBits(bs, 2);
151 : edgomez 1.39.2.9 DPRINTF(XVID_DEBUG_HEADER,"coding_type %i\n", coding_type);
152 : edgomez 1.38
153 :     if (dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR)
154 :     {
155 :     BitstreamSkip(bs, 1); /* change_conv_ratio_disable */
156 :     if (coding_type != I_VOP)
157 :     BitstreamSkip(bs, 1); /* vop_shape_coding_type */
158 :     }
159 :    
160 :     if (dec->shape != VIDOBJLAY_SHAPE_BINARY_ONLY)
161 :     {
162 :     *intra_dc_threshold = intra_dc_threshold_table[BitstreamGetBits(bs, 3)];
163 :    
164 :     if (dec->sprite_enable == SPRITE_GMC && coding_type == S_VOP &&
165 :     dec->sprite_warping_points > 0)
166 :     {
167 : edgomez 1.39.2.10 /* TODO: sprite trajectory */
168 : edgomez 1.38 }
169 :     if (dec->reduced_resolution_enable &&
170 :     dec->shape == VIDOBJLAY_SHAPE_RECTANGULAR &&
171 :     (coding_type == P_VOP || coding_type == I_VOP))
172 :     {
173 :     BitstreamSkip(bs, 1); /* XXX: vop_reduced_resolution */
174 :     }
175 :    
176 :     if (coding_type != I_VOP && fcode_forward)
177 :     {
178 :     *fcode_forward = BitstreamGetBits(bs, 3);
179 : edgomez 1.39.2.9 DPRINTF(XVID_DEBUG_HEADER,"fcode_forward %i\n", *fcode_forward);
180 : edgomez 1.38 }
181 :    
182 :     if (coding_type == B_VOP && fcode_backward)
183 :     {
184 :     *fcode_backward = BitstreamGetBits(bs, 3);
185 : edgomez 1.39.2.9 DPRINTF(XVID_DEBUG_HEADER,"fcode_backward %i\n", *fcode_backward);
186 : edgomez 1.38 }
187 :     }
188 :    
189 :     }
190 :    
191 :     if (dec->newpred_enable)
192 :     {
193 :     int vop_id;
194 :     int vop_id_for_prediction;
195 :    
196 :     vop_id = BitstreamGetBits(bs, MIN(dec->time_inc_bits + 3, 15));
197 : edgomez 1.39.2.9 DPRINTF(XVID_DEBUG_HEADER, "vop_id %i\n", vop_id);
198 : edgomez 1.38 if (BitstreamGetBit(bs)) /* vop_id_for_prediction_indication */
199 :     {
200 :     vop_id_for_prediction = BitstreamGetBits(bs, MIN(dec->time_inc_bits + 3, 15));
201 : edgomez 1.39.2.9 DPRINTF(XVID_DEBUG_HEADER, "vop_id_for_prediction %i\n", vop_id_for_prediction);
202 : edgomez 1.38 }
203 :     READ_MARKER();
204 :     }
205 : suxen_drol 1.21
206 :     return mbnum;
207 :     }
208 :    
209 :    
210 :    
211 : edgomez 1.38
212 :     /* vol estimation header */
213 :     static void
214 :     read_vol_complexity_estimation_header(Bitstream * bs, DECODER * dec)
215 :     {
216 :     ESTIMATION * e = &dec->estimation;
217 :    
218 :     e->method = BitstreamGetBits(bs, 2); /* estimation_method */
219 : edgomez 1.39.2.9 DPRINTF(XVID_DEBUG_HEADER,"+ complexity_estimation_header; method=%i\n", e->method);
220 : edgomez 1.38
221 :     if (e->method == 0 || e->method == 1)
222 :     {
223 :     if (!BitstreamGetBit(bs)) /* shape_complexity_estimation_disable */
224 :     {
225 :     e->opaque = BitstreamGetBit(bs); /* opaque */
226 :     e->transparent = BitstreamGetBit(bs); /* transparent */
227 :     e->intra_cae = BitstreamGetBit(bs); /* intra_cae */
228 :     e->inter_cae = BitstreamGetBit(bs); /* inter_cae */
229 :     e->no_update = BitstreamGetBit(bs); /* no_update */
230 :     e->upsampling = BitstreamGetBit(bs); /* upsampling */
231 :     }
232 :    
233 :     if (!BitstreamGetBit(bs)) /* texture_complexity_estimation_set_1_disable */
234 :     {
235 :     e->intra_blocks = BitstreamGetBit(bs); /* intra_blocks */
236 :     e->inter_blocks = BitstreamGetBit(bs); /* inter_blocks */
237 :     e->inter4v_blocks = BitstreamGetBit(bs); /* inter4v_blocks */
238 :     e->not_coded_blocks = BitstreamGetBit(bs); /* not_coded_blocks */
239 :     }
240 :     }
241 :    
242 :     READ_MARKER();
243 :    
244 :     if (!BitstreamGetBit(bs)) /* texture_complexity_estimation_set_2_disable */
245 :     {
246 :     e->dct_coefs = BitstreamGetBit(bs); /* dct_coefs */
247 :     e->dct_lines = BitstreamGetBit(bs); /* dct_lines */
248 :     e->vlc_symbols = BitstreamGetBit(bs); /* vlc_symbols */
249 :     e->vlc_bits = BitstreamGetBit(bs); /* vlc_bits */
250 :     }
251 :    
252 :     if (!BitstreamGetBit(bs)) /* motion_compensation_complexity_disable */
253 :     {
254 :     e->apm = BitstreamGetBit(bs); /* apm */
255 :     e->npm = BitstreamGetBit(bs); /* npm */
256 :     e->interpolate_mc_q = BitstreamGetBit(bs); /* interpolate_mc_q */
257 :     e->forw_back_mc_q = BitstreamGetBit(bs); /* forw_back_mc_q */
258 :     e->halfpel2 = BitstreamGetBit(bs); /* halfpel2 */
259 :     e->halfpel4 = BitstreamGetBit(bs); /* halfpel4 */
260 :     }
261 :    
262 :     READ_MARKER();
263 :    
264 :     if (e->method == 1)
265 :     {
266 :     if (!BitstreamGetBit(bs)) /* version2_complexity_estimation_disable */
267 :     {
268 :     e->sadct = BitstreamGetBit(bs); /* sadct */
269 :     e->quarterpel = BitstreamGetBit(bs); /* quarterpel */
270 :     }
271 :     }
272 :     }
273 :    
274 :    
275 :     /* vop estimation header */
276 :     static void
277 :     read_vop_complexity_estimation_header(Bitstream * bs, DECODER * dec, int coding_type)
278 :     {
279 :     ESTIMATION * e = &dec->estimation;
280 :    
281 :     if (e->method == 0 || e->method == 1)
282 :     {
283 :     if (coding_type == I_VOP) {
284 :     if (e->opaque) BitstreamSkip(bs, 8); /* dcecs_opaque */
285 :     if (e->transparent) BitstreamSkip(bs, 8); /* */
286 :     if (e->intra_cae) BitstreamSkip(bs, 8); /* */
287 :     if (e->inter_cae) BitstreamSkip(bs, 8); /* */
288 :     if (e->no_update) BitstreamSkip(bs, 8); /* */
289 :     if (e->upsampling) BitstreamSkip(bs, 8); /* */
290 :     if (e->intra_blocks) BitstreamSkip(bs, 8); /* */
291 :     if (e->not_coded_blocks) BitstreamSkip(bs, 8); /* */
292 :     if (e->dct_coefs) BitstreamSkip(bs, 8); /* */
293 :     if (e->dct_lines) BitstreamSkip(bs, 8); /* */
294 :     if (e->vlc_symbols) BitstreamSkip(bs, 8); /* */
295 :     if (e->vlc_bits) BitstreamSkip(bs, 8); /* */
296 :     if (e->sadct) BitstreamSkip(bs, 8); /* */
297 :     }
298 :    
299 :     if (coding_type == P_VOP) {
300 :     if (e->opaque) BitstreamSkip(bs, 8); /* */
301 :     if (e->transparent) BitstreamSkip(bs, 8); /* */
302 :     if (e->intra_cae) BitstreamSkip(bs, 8); /* */
303 :     if (e->inter_cae) BitstreamSkip(bs, 8); /* */
304 :     if (e->no_update) BitstreamSkip(bs, 8); /* */
305 :     if (e->upsampling) BitstreamSkip(bs, 8); /* */
306 :     if (e->intra_blocks) BitstreamSkip(bs, 8); /* */
307 :     if (e->not_coded_blocks) BitstreamSkip(bs, 8); /* */
308 :     if (e->dct_coefs) BitstreamSkip(bs, 8); /* */
309 :     if (e->dct_lines) BitstreamSkip(bs, 8); /* */
310 :     if (e->vlc_symbols) BitstreamSkip(bs, 8); /* */
311 :     if (e->vlc_bits) BitstreamSkip(bs, 8); /* */
312 :     if (e->inter_blocks) BitstreamSkip(bs, 8); /* */
313 :     if (e->inter4v_blocks) BitstreamSkip(bs, 8); /* */
314 :     if (e->apm) BitstreamSkip(bs, 8); /* */
315 :     if (e->npm) BitstreamSkip(bs, 8); /* */
316 :     if (e->forw_back_mc_q) BitstreamSkip(bs, 8); /* */
317 :     if (e->halfpel2) BitstreamSkip(bs, 8); /* */
318 :     if (e->halfpel4) BitstreamSkip(bs, 8); /* */
319 :     if (e->sadct) BitstreamSkip(bs, 8); /* */
320 :     if (e->quarterpel) BitstreamSkip(bs, 8); /* */
321 :     }
322 :     if (coding_type == B_VOP) {
323 :     if (e->opaque) BitstreamSkip(bs, 8); /* */
324 :     if (e->transparent) BitstreamSkip(bs, 8); /* */
325 :     if (e->intra_cae) BitstreamSkip(bs, 8); /* */
326 :     if (e->inter_cae) BitstreamSkip(bs, 8); /* */
327 :     if (e->no_update) BitstreamSkip(bs, 8); /* */
328 :     if (e->upsampling) BitstreamSkip(bs, 8); /* */
329 :     if (e->intra_blocks) BitstreamSkip(bs, 8); /* */
330 :     if (e->not_coded_blocks) BitstreamSkip(bs, 8); /* */
331 :     if (e->dct_coefs) BitstreamSkip(bs, 8); /* */
332 :     if (e->dct_lines) BitstreamSkip(bs, 8); /* */
333 :     if (e->vlc_symbols) BitstreamSkip(bs, 8); /* */
334 :     if (e->vlc_bits) BitstreamSkip(bs, 8); /* */
335 :     if (e->inter_blocks) BitstreamSkip(bs, 8); /* */
336 :     if (e->inter4v_blocks) BitstreamSkip(bs, 8); /* */
337 :     if (e->apm) BitstreamSkip(bs, 8); /* */
338 :     if (e->npm) BitstreamSkip(bs, 8); /* */
339 :     if (e->forw_back_mc_q) BitstreamSkip(bs, 8); /* */
340 :     if (e->halfpel2) BitstreamSkip(bs, 8); /* */
341 :     if (e->halfpel4) BitstreamSkip(bs, 8); /* */
342 :     if (e->interpolate_mc_q) BitstreamSkip(bs, 8); /* */
343 :     if (e->sadct) BitstreamSkip(bs, 8); /* */
344 :     if (e->quarterpel) BitstreamSkip(bs, 8); /* */
345 :     }
346 :    
347 :     if (coding_type == S_VOP && dec->sprite_enable == SPRITE_STATIC) {
348 :     if (e->intra_blocks) BitstreamSkip(bs, 8); /* */
349 :     if (e->not_coded_blocks) BitstreamSkip(bs, 8); /* */
350 :     if (e->dct_coefs) BitstreamSkip(bs, 8); /* */
351 :     if (e->dct_lines) BitstreamSkip(bs, 8); /* */
352 :     if (e->vlc_symbols) BitstreamSkip(bs, 8); /* */
353 :     if (e->vlc_bits) BitstreamSkip(bs, 8); /* */
354 :     if (e->inter_blocks) BitstreamSkip(bs, 8); /* */
355 :     if (e->inter4v_blocks) BitstreamSkip(bs, 8); /* */
356 :     if (e->apm) BitstreamSkip(bs, 8); /* */
357 :     if (e->npm) BitstreamSkip(bs, 8); /* */
358 :     if (e->forw_back_mc_q) BitstreamSkip(bs, 8); /* */
359 :     if (e->halfpel2) BitstreamSkip(bs, 8); /* */
360 :     if (e->halfpel4) BitstreamSkip(bs, 8); /* */
361 :     if (e->interpolate_mc_q) BitstreamSkip(bs, 8); /* */
362 :     }
363 :     }
364 :     }
365 :    
366 :    
367 :    
368 :    
369 :    
370 : Isibaar 1.1 /*
371 :     decode headers
372 :     returns coding_type, or -1 if error
373 :     */
374 :    
375 : suxen_drol 1.22 #define VIDOBJ_START_CODE_MASK 0x0000001f
376 :     #define VIDOBJLAY_START_CODE_MASK 0x0000000f
377 :    
378 : edgomez 1.14 int
379 :     BitstreamReadHeaders(Bitstream * bs,
380 :     DECODER * dec,
381 :     uint32_t * rounding,
382 : edgomez 1.38 uint32_t * reduced_resolution,
383 : edgomez 1.14 uint32_t * quant,
384 :     uint32_t * fcode_forward,
385 :     uint32_t * fcode_backward,
386 : edgomez 1.38 uint32_t * intra_dc_threshold,
387 :     WARPPOINTS *gmc_warp)
388 : Isibaar 1.1 {
389 :     uint32_t vol_ver_id;
390 :     uint32_t coding_type;
391 :     uint32_t start_code;
392 : edgomez 1.14 uint32_t time_incr = 0;
393 : edgomez 1.39 int32_t time_increment = 0;
394 : edgomez 1.38 int resize = 0;
395 : chenm001 1.9
396 : edgomez 1.14 do {
397 : edgomez 1.38
398 : Isibaar 1.1 BitstreamByteAlign(bs);
399 :     start_code = BitstreamShowBits(bs, 32);
400 :    
401 : edgomez 1.14 if (start_code == VISOBJSEQ_START_CODE) {
402 : suxen_drol 1.22
403 :     int profile;
404 :    
405 : edgomez 1.39.2.9 DPRINTF(XVID_DEBUG_STARTCODE, "<visual_object_sequence>\n");
406 : suxen_drol 1.22
407 : edgomez 1.39.2.10 BitstreamSkip(bs, 32); /* visual_object_sequence_start_code */
408 :     profile = BitstreamGetBits(bs, 8); /* profile_and_level_indication */
409 : suxen_drol 1.22
410 : edgomez 1.39.2.9 DPRINTF(XVID_DEBUG_HEADER, "profile_and_level_indication %i\n", profile);
411 : suxen_drol 1.22
412 : edgomez 1.14 } else if (start_code == VISOBJSEQ_STOP_CODE) {
413 : suxen_drol 1.22
414 : edgomez 1.39.2.10 BitstreamSkip(bs, 32); /* visual_object_sequence_stop_code */
415 : suxen_drol 1.22
416 : edgomez 1.39.2.9 DPRINTF(XVID_DEBUG_STARTCODE, "</visual_object_sequence>\n");
417 : suxen_drol 1.22
418 : edgomez 1.14 } else if (start_code == VISOBJ_START_CODE) {
419 : edgomez 1.38 int visobj_ver_id;
420 : suxen_drol 1.22
421 : edgomez 1.39.2.9 DPRINTF(XVID_DEBUG_STARTCODE, "<visual_object>\n");
422 : suxen_drol 1.22
423 : edgomez 1.39.2.10 BitstreamSkip(bs, 32); /* visual_object_start_code */
424 :     if (BitstreamGetBit(bs)) /* is_visual_object_identified */
425 : Isibaar 1.1 {
426 : edgomez 1.39.2.10 visobj_ver_id = BitstreamGetBits(bs, 4); /* visual_object_ver_id */
427 : edgomez 1.39.2.9 DPRINTF(XVID_DEBUG_HEADER,"visobj_ver_id %i\n", visobj_ver_id);
428 : edgomez 1.39.2.10 BitstreamSkip(bs, 3); /* visual_object_priority */
429 : edgomez 1.14 } else {
430 : edgomez 1.38 visobj_ver_id = 1;
431 : Isibaar 1.1 }
432 :    
433 : edgomez 1.39.2.10 if (BitstreamShowBits(bs, 4) != VISOBJ_TYPE_VIDEO) /* visual_object_type */
434 : Isibaar 1.1 {
435 : edgomez 1.39.2.9 DPRINTF(XVID_DEBUG_ERROR, "visual_object_type != video\n");
436 : Isibaar 1.1 return -1;
437 :     }
438 :     BitstreamSkip(bs, 4);
439 :    
440 : edgomez 1.39.2.10 /* video_signal_type */
441 : Isibaar 1.1
442 : edgomez 1.39.2.10 if (BitstreamGetBit(bs)) /* video_signal_type */
443 : Isibaar 1.1 {
444 : edgomez 1.39.2.9 DPRINTF(XVID_DEBUG_HEADER,"+ video_signal_type\n");
445 : edgomez 1.39.2.10 BitstreamSkip(bs, 3); /* video_format */
446 :     BitstreamSkip(bs, 1); /* video_range */
447 :     if (BitstreamGetBit(bs)) /* color_description */
448 : Isibaar 1.1 {
449 : suxen_drol 1.39.2.8 DPRINTF(XVID_DEBUG_HEADER,"+ color_description");
450 : edgomez 1.39.2.10 BitstreamSkip(bs, 8); /* color_primaries */
451 :     BitstreamSkip(bs, 8); /* transfer_characteristics */
452 :     BitstreamSkip(bs, 8); /* matrix_coefficients */
453 : Isibaar 1.1 }
454 :     }
455 : suxen_drol 1.22 } else if ((start_code & ~VIDOBJ_START_CODE_MASK) == VIDOBJ_START_CODE) {
456 :    
457 : edgomez 1.39.2.9 DPRINTF(XVID_DEBUG_STARTCODE, "<video_object>\n");
458 :     DPRINTF(XVID_DEBUG_HEADER, "vo id %i\n", start_code & VIDOBJ_START_CODE_MASK);
459 : suxen_drol 1.22
460 : edgomez 1.39.2.10 BitstreamSkip(bs, 32); /* video_object_start_code */
461 : suxen_drol 1.22
462 :     } else if ((start_code & ~VIDOBJLAY_START_CODE_MASK) == VIDOBJLAY_START_CODE) {
463 :    
464 : edgomez 1.39.2.9 DPRINTF(XVID_DEBUG_STARTCODE, "<video_object_layer>\n");
465 :     DPRINTF(XVID_DEBUG_HEADER, "vol id %i\n", start_code & VIDOBJLAY_START_CODE_MASK);
466 : suxen_drol 1.22
467 : edgomez 1.39.2.10 BitstreamSkip(bs, 32); /* video_object_layer_start_code */
468 :     BitstreamSkip(bs, 1); /* random_accessible_vol */
469 : Isibaar 1.1
470 : edgomez 1.39.2.10 BitstreamSkip(bs, 8); /* video_object_type_indication */
471 : Isibaar 1.1
472 : edgomez 1.39.2.10 if (BitstreamGetBit(bs)) /* is_object_layer_identifier */
473 : Isibaar 1.1 {
474 : edgomez 1.39.2.9 DPRINTF(XVID_DEBUG_HEADER, "+ is_object_layer_identifier\n");
475 : edgomez 1.39.2.10 vol_ver_id = BitstreamGetBits(bs, 4); /* video_object_layer_verid */
476 : edgomez 1.39.2.9 DPRINTF(XVID_DEBUG_HEADER,"ver_id %i\n", vol_ver_id);
477 : edgomez 1.39.2.10 BitstreamSkip(bs, 3); /* video_object_layer_priority */
478 : edgomez 1.14 } else {
479 : Isibaar 1.1 vol_ver_id = 1;
480 :     }
481 :    
482 : edgomez 1.38 dec->aspect_ratio = BitstreamGetBits(bs, 4);
483 :    
484 : edgomez 1.39.2.10 if (dec->aspect_ratio == VIDOBJLAY_AR_EXTPAR) /* aspect_ratio_info */
485 : Isibaar 1.1 {
486 : edgomez 1.39.2.9 DPRINTF(XVID_DEBUG_HEADER, "+ aspect_ratio_info\n");
487 : edgomez 1.39.2.10 dec->par_width = BitstreamGetBits(bs, 8); /* par_width */
488 :     dec->par_height = BitstreamGetBits(bs, 8); /* par_height */
489 : Isibaar 1.1 }
490 :    
491 : edgomez 1.39.2.10 if (BitstreamGetBit(bs)) /* vol_control_parameters */
492 : Isibaar 1.1 {
493 : edgomez 1.39.2.9 DPRINTF(XVID_DEBUG_HEADER, "+ vol_control_parameters\n");
494 : edgomez 1.39.2.10 BitstreamSkip(bs, 2); /* chroma_format */
495 :     dec->low_delay = BitstreamGetBit(bs); /* low_delay */
496 : edgomez 1.39.2.9 DPRINTF(XVID_DEBUG_HEADER, "low_delay %i\n", dec->low_delay);
497 : edgomez 1.39.2.10 if (BitstreamGetBit(bs)) /* vbv_parameters */
498 : Isibaar 1.1 {
499 : edgomez 1.38 unsigned int bitrate;
500 :     unsigned int buffer_size;
501 :     unsigned int occupancy;
502 :    
503 : edgomez 1.39.2.9 DPRINTF(XVID_DEBUG_HEADER,"+ vbv_parameters\n");
504 : edgomez 1.38
505 : edgomez 1.39.2.10 bitrate = BitstreamGetBits(bs,15) << 15; /* first_half_bit_rate */
506 : Isibaar 1.1 READ_MARKER();
507 : edgomez 1.39.2.10 bitrate |= BitstreamGetBits(bs,15); /* latter_half_bit_rate */
508 : Isibaar 1.1 READ_MARKER();
509 : edgomez 1.38
510 : edgomez 1.39.2.10 buffer_size = BitstreamGetBits(bs, 15) << 3; /* first_half_vbv_buffer_size */
511 : Isibaar 1.1 READ_MARKER();
512 : edgomez 1.39.2.10 buffer_size |= BitstreamGetBits(bs, 3); /* latter_half_vbv_buffer_size */
513 : edgomez 1.38
514 : edgomez 1.39.2.10 occupancy = BitstreamGetBits(bs, 11) << 15; /* first_half_vbv_occupancy */
515 : Isibaar 1.1 READ_MARKER();
516 : edgomez 1.39.2.10 occupancy |= BitstreamGetBits(bs, 15); /* latter_half_vbv_occupancy */
517 : Isibaar 1.1 READ_MARKER();
518 : edgomez 1.14
519 : edgomez 1.39.2.9 DPRINTF(XVID_DEBUG_HEADER,"bitrate %d (unit=400 bps)\n", bitrate);
520 :     DPRINTF(XVID_DEBUG_HEADER,"buffer_size %d (unit=16384 bits)\n", buffer_size);
521 :     DPRINTF(XVID_DEBUG_HEADER,"occupancy %d (unit=64 bits)\n", occupancy);
522 : Isibaar 1.1 }
523 : edgomez 1.38 }else{
524 :     dec->low_delay = dec->low_delay_default;
525 : Isibaar 1.1 }
526 :    
527 : edgomez 1.39.2.10 dec->shape = BitstreamGetBits(bs, 2); /* video_object_layer_shape */
528 : edgomez 1.38
529 : edgomez 1.39.2.9 DPRINTF(XVID_DEBUG_HEADER, "shape %i\n", dec->shape);
530 : edgomez 1.38 if (dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR)
531 :     {
532 : edgomez 1.39.2.9 DPRINTF(XVID_DEBUG_ERROR,"non-rectangular shapes are not supported\n");
533 : edgomez 1.38 }
534 : edgomez 1.14
535 :     if (dec->shape == VIDOBJLAY_SHAPE_GRAYSCALE && vol_ver_id != 1) {
536 : edgomez 1.39.2.10 BitstreamSkip(bs, 4); /* video_object_layer_shape_extension */
537 : Isibaar 1.1 }
538 :    
539 :     READ_MARKER();
540 :    
541 : edgomez 1.39.2.10 /********************** for decode B-frame time ***********************/
542 :     dec->time_inc_resolution = BitstreamGetBits(bs, 16); /* vop_time_increment_resolution */
543 : edgomez 1.39.2.9 DPRINTF(XVID_DEBUG_HEADER,"vop_time_increment_resolution %i\n", dec->time_inc_resolution);
544 : suxen_drol 1.22
545 : edgomez 1.39.2.10 #if 0
546 :     dec->time_inc_resolution--;
547 :     #endif
548 : suxen_drol 1.22
549 : edgomez 1.38 if (dec->time_inc_resolution > 0) {
550 :     dec->time_inc_bits = log2bin(dec->time_inc_resolution-1);
551 : edgomez 1.14 } else {
552 : edgomez 1.39.2.10 #if 0
553 :     dec->time_inc_bits = 0;
554 :     #endif
555 :     /* for "old" xvid compatibility, set time_inc_bits = 1 */
556 : Isibaar 1.1 dec->time_inc_bits = 1;
557 :     }
558 :    
559 :     READ_MARKER();
560 :    
561 : edgomez 1.39.2.10 if (BitstreamGetBit(bs)) /* fixed_vop_rate */
562 : Isibaar 1.1 {
563 : edgomez 1.39.2.9 DPRINTF(XVID_DEBUG_HEADER, "+ fixed_vop_rate\n");
564 : edgomez 1.39.2.10 BitstreamSkip(bs, dec->time_inc_bits); /* fixed_vop_time_increment */
565 : Isibaar 1.1 }
566 :    
567 : edgomez 1.14 if (dec->shape != VIDOBJLAY_SHAPE_BINARY_ONLY) {
568 : Isibaar 1.1
569 : edgomez 1.14 if (dec->shape == VIDOBJLAY_SHAPE_RECTANGULAR) {
570 : Isibaar 1.1 uint32_t width, height;
571 :    
572 :     READ_MARKER();
573 : edgomez 1.39.2.10 width = BitstreamGetBits(bs, 13); /* video_object_layer_width */
574 : Isibaar 1.1 READ_MARKER();
575 : edgomez 1.39.2.10 height = BitstreamGetBits(bs, 13); /* video_object_layer_height */
576 : Isibaar 1.1 READ_MARKER();
577 :    
578 : edgomez 1.39.2.9 DPRINTF(XVID_DEBUG_HEADER, "width %i\n", width);
579 :     DPRINTF(XVID_DEBUG_HEADER, "height %i\n", height);
580 : chenm001 1.23
581 : edgomez 1.38 if (dec->width != width || dec->height != height)
582 :     {
583 :     if (dec->fixed_dimensions)
584 :     {
585 : edgomez 1.39.2.9 DPRINTF(XVID_DEBUG_ERROR, "decoder width/height does not match bitstream\n");
586 : edgomez 1.38 return -1;
587 :     }
588 :     resize = 1;
589 : chenm001 1.23 dec->width = width;
590 :     dec->height = height;
591 : Isibaar 1.1 }
592 :     }
593 : h 1.4
594 : suxen_drol 1.22 dec->interlacing = BitstreamGetBit(bs);
595 : edgomez 1.39.2.9 DPRINTF(XVID_DEBUG_HEADER, "interlacing %i\n", dec->interlacing);
596 : Isibaar 1.1
597 : edgomez 1.39.2.10 if (!BitstreamGetBit(bs)) /* obmc_disable */
598 : Isibaar 1.1 {
599 : edgomez 1.39.2.9 DPRINTF(XVID_DEBUG_ERROR, "obmc_disabled==false not supported\n");
600 : edgomez 1.39.2.10 /* TODO */
601 :     /* fucking divx4.02 has this enabled */
602 : Isibaar 1.1 }
603 :    
604 : edgomez 1.39.2.10 dec->sprite_enable = BitstreamGetBits(bs, (vol_ver_id == 1 ? 1 : 2)); /* sprite_enable */
605 : edgomez 1.38
606 :     if (dec->sprite_enable == SPRITE_STATIC || dec->sprite_enable == SPRITE_GMC)
607 : Isibaar 1.1 {
608 : edgomez 1.38 int low_latency_sprite_enable;
609 :    
610 :     if (dec->sprite_enable != SPRITE_GMC)
611 :     {
612 :     int sprite_width;
613 :     int sprite_height;
614 :     int sprite_left_coord;
615 :     int sprite_top_coord;
616 : edgomez 1.39.2.10 sprite_width = BitstreamGetBits(bs, 13); /* sprite_width */
617 : edgomez 1.38 READ_MARKER();
618 : edgomez 1.39.2.10 sprite_height = BitstreamGetBits(bs, 13); /* sprite_height */
619 : edgomez 1.38 READ_MARKER();
620 : edgomez 1.39.2.10 sprite_left_coord = BitstreamGetBits(bs, 13); /* sprite_left_coordinate */
621 : edgomez 1.38 READ_MARKER();
622 : edgomez 1.39.2.10 sprite_top_coord = BitstreamGetBits(bs, 13); /* sprite_top_coordinate */
623 : edgomez 1.38 READ_MARKER();
624 :     }
625 : edgomez 1.39.2.10 dec->sprite_warping_points = BitstreamGetBits(bs, 6); /* no_of_sprite_warping_points */
626 :     dec->sprite_warping_accuracy = BitstreamGetBits(bs, 2); /* sprite_warping_accuracy */
627 :     dec->sprite_brightness_change = BitstreamGetBits(bs, 1); /* brightness_change */
628 : edgomez 1.38 if (dec->sprite_enable != SPRITE_GMC)
629 :     {
630 : edgomez 1.39.2.10 low_latency_sprite_enable = BitstreamGetBits(bs, 1); /* low_latency_sprite_enable */
631 : edgomez 1.38 }
632 : Isibaar 1.1 }
633 : edgomez 1.14
634 :     if (vol_ver_id != 1 &&
635 :     dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR) {
636 : edgomez 1.39.2.10 BitstreamSkip(bs, 1); /* sadct_disable */
637 : Isibaar 1.1 }
638 :    
639 : edgomez 1.39.2.10 if (BitstreamGetBit(bs)) /* not_8_bit */
640 : Isibaar 1.1 {
641 : edgomez 1.39.2.9 DPRINTF(XVID_DEBUG_HEADER, "not_8_bit==true (ignored)\n");
642 : edgomez 1.39.2.10 dec->quant_bits = BitstreamGetBits(bs, 4); /* quant_precision */
643 :     BitstreamSkip(bs, 4); /* bits_per_pixel */
644 : edgomez 1.14 } else {
645 : Isibaar 1.1 dec->quant_bits = 5;
646 :     }
647 :    
648 : edgomez 1.14 if (dec->shape == VIDOBJLAY_SHAPE_GRAYSCALE) {
649 : edgomez 1.39.2.10 BitstreamSkip(bs, 1); /* no_gray_quant_update */
650 :     BitstreamSkip(bs, 1); /* composition_method */
651 :     BitstreamSkip(bs, 1); /* linear_composition */
652 : Isibaar 1.1 }
653 :    
654 : edgomez 1.39.2.10 dec->quant_type = BitstreamGetBit(bs); /* quant_type */
655 : edgomez 1.39.2.9 DPRINTF(XVID_DEBUG_HEADER, "quant_type %i\n", dec->quant_type);
656 : Isibaar 1.1
657 : edgomez 1.14 if (dec->quant_type) {
658 : edgomez 1.39.2.10 if (BitstreamGetBit(bs)) /* load_intra_quant_mat */
659 : Isibaar 1.1 {
660 : Isibaar 1.3 uint8_t matrix[64];
661 : edgomez 1.14
662 : edgomez 1.39.2.9 DPRINTF(XVID_DEBUG_HEADER, "load_intra_quant_mat\n");
663 : suxen_drol 1.22
664 : Isibaar 1.2 bs_get_matrix(bs, matrix);
665 :     set_intra_matrix(matrix);
666 : edgomez 1.14 } else
667 : Isibaar 1.3 set_intra_matrix(get_default_intra_matrix());
668 : Isibaar 1.2
669 : edgomez 1.39.2.10 if (BitstreamGetBit(bs)) /* load_inter_quant_mat */
670 : Isibaar 1.1 {
671 : edgomez 1.14 uint8_t matrix[64];
672 : suxen_drol 1.22
673 : edgomez 1.39.2.9 DPRINTF(XVID_DEBUG_HEADER, "load_inter_quant_mat\n");
674 : edgomez 1.14
675 : Isibaar 1.2 bs_get_matrix(bs, matrix);
676 :     set_inter_matrix(matrix);
677 : edgomez 1.14 } else
678 : Isibaar 1.3 set_inter_matrix(get_default_inter_matrix());
679 : Isibaar 1.1
680 : edgomez 1.14 if (dec->shape == VIDOBJLAY_SHAPE_GRAYSCALE) {
681 : edgomez 1.39.2.9 DPRINTF(XVID_DEBUG_ERROR, "greyscale matrix not supported\n");
682 : Isibaar 1.1 return -1;
683 :     }
684 : Isibaar 1.2
685 : Isibaar 1.1 }
686 :    
687 : edgomez 1.14
688 :     if (vol_ver_id != 1) {
689 : edgomez 1.39.2.10 dec->quarterpel = BitstreamGetBit(bs); /* quarter_sample */
690 : edgomez 1.39.2.9 DPRINTF(XVID_DEBUG_HEADER,"quarterpel %i\n", dec->quarterpel);
691 : Isibaar 1.26 }
692 :     else
693 : Isibaar 1.1 dec->quarterpel = 0;
694 : Isibaar 1.26
695 : Isibaar 1.1
696 : edgomez 1.38 dec->complexity_estimation_disable = BitstreamGetBit(bs); /* complexity estimation disable */
697 :     if (!dec->complexity_estimation_disable)
698 : Isibaar 1.1 {
699 : edgomez 1.38 read_vol_complexity_estimation_header(bs, dec);
700 : Isibaar 1.1 }
701 :    
702 : edgomez 1.39.2.10 BitstreamSkip(bs, 1); /* resync_marker_disable */
703 : Isibaar 1.1
704 : edgomez 1.39.2.10 if (BitstreamGetBit(bs)) /* data_partitioned */
705 : Isibaar 1.1 {
706 : edgomez 1.39.2.9 DPRINTF(XVID_DEBUG_ERROR, "data_partitioned not supported\n");
707 : edgomez 1.39.2.10 BitstreamSkip(bs, 1); /* reversible_vlc */
708 : Isibaar 1.1 }
709 :    
710 : edgomez 1.14 if (vol_ver_id != 1) {
711 : edgomez 1.38 dec->newpred_enable = BitstreamGetBit(bs);
712 : edgomez 1.39.2.10 if (dec->newpred_enable) /* newpred_enable */
713 : Isibaar 1.1 {
714 : edgomez 1.39.2.9 DPRINTF(XVID_DEBUG_HEADER, "+ newpred_enable\n");
715 : edgomez 1.39.2.10 BitstreamSkip(bs, 2); /* requested_upstream_message_type */
716 :     BitstreamSkip(bs, 1); /* newpred_segment_type */
717 : Isibaar 1.1 }
718 : edgomez 1.38 dec->reduced_resolution_enable = BitstreamGetBit(bs); /* reduced_resolution_vop_enable */
719 : edgomez 1.39.2.9 DPRINTF(XVID_DEBUG_HEADER, "reduced_resolution_enable %i\n", dec->reduced_resolution_enable);
720 : edgomez 1.38 }
721 :     else
722 :     {
723 :     dec->newpred_enable = 0;
724 :     dec->reduced_resolution_enable = 0;
725 : Isibaar 1.1 }
726 : edgomez 1.14
727 : edgomez 1.38 dec->scalability = BitstreamGetBit(bs); /* scalability */
728 :     if (dec->scalability)
729 : Isibaar 1.1 {
730 : edgomez 1.39.2.9 DPRINTF(XVID_DEBUG_ERROR, "scalability not supported\n");
731 : edgomez 1.38 BitstreamSkip(bs, 1); /* hierarchy_type */
732 :     BitstreamSkip(bs, 4); /* ref_layer_id */
733 :     BitstreamSkip(bs, 1); /* ref_layer_sampling_direc */
734 :     BitstreamSkip(bs, 5); /* hor_sampling_factor_n */
735 :     BitstreamSkip(bs, 5); /* hor_sampling_factor_m */
736 :     BitstreamSkip(bs, 5); /* vert_sampling_factor_n */
737 :     BitstreamSkip(bs, 5); /* vert_sampling_factor_m */
738 :     BitstreamSkip(bs, 1); /* enhancement_type */
739 :     if(dec->shape == VIDOBJLAY_SHAPE_BINARY /* && hierarchy_type==0 */) {
740 :     BitstreamSkip(bs, 1); /* use_ref_shape */
741 :     BitstreamSkip(bs, 1); /* use_ref_texture */
742 :     BitstreamSkip(bs, 5); /* shape_hor_sampling_factor_n */
743 :     BitstreamSkip(bs, 5); /* shape_hor_sampling_factor_m */
744 :     BitstreamSkip(bs, 5); /* shape_vert_sampling_factor_n */
745 :     BitstreamSkip(bs, 5); /* shape_vert_sampling_factor_m */
746 :     }
747 : Isibaar 1.1 return -1;
748 :     }
749 : edgomez 1.39.2.10 } else /* dec->shape == BINARY_ONLY */
750 : Isibaar 1.1 {
751 : edgomez 1.14 if (vol_ver_id != 1) {
752 : edgomez 1.38 dec->scalability = BitstreamGetBit(bs); /* scalability */
753 :     if (dec->scalability)
754 : Isibaar 1.1 {
755 : edgomez 1.39.2.9 DPRINTF(XVID_DEBUG_ERROR, "scalability not supported\n");
756 : edgomez 1.38 BitstreamSkip(bs, 4); /* ref_layer_id */
757 :     BitstreamSkip(bs, 5); /* hor_sampling_factor_n */
758 :     BitstreamSkip(bs, 5); /* hor_sampling_factor_m */
759 :     BitstreamSkip(bs, 5); /* vert_sampling_factor_n */
760 :     BitstreamSkip(bs, 5); /* vert_sampling_factor_m */
761 : Isibaar 1.1 return -1;
762 :     }
763 :     }
764 : edgomez 1.39.2.10 BitstreamSkip(bs, 1); /* resync_marker_disable */
765 : Isibaar 1.1
766 :     }
767 :    
768 : edgomez 1.38 return (resize ? -3 : -2 ); /* VOL */
769 :    
770 : edgomez 1.14 } else if (start_code == GRPOFVOP_START_CODE) {
771 : suxen_drol 1.22
772 : edgomez 1.39.2.9 DPRINTF(XVID_DEBUG_STARTCODE, "<group_of_vop>\n");
773 : suxen_drol 1.22
774 : Isibaar 1.1 BitstreamSkip(bs, 32);
775 :     {
776 :     int hours, minutes, seconds;
777 : edgomez 1.14
778 : Isibaar 1.1 hours = BitstreamGetBits(bs, 5);
779 :     minutes = BitstreamGetBits(bs, 6);
780 :     READ_MARKER();
781 :     seconds = BitstreamGetBits(bs, 6);
782 : suxen_drol 1.22
783 : edgomez 1.39.2.9 DPRINTF(XVID_DEBUG_HEADER, "time %ih%im%is\n", hours,minutes,seconds);
784 : Isibaar 1.1 }
785 : edgomez 1.39.2.10 BitstreamSkip(bs, 1); /* closed_gov */
786 :     BitstreamSkip(bs, 1); /* broken_link */
787 : suxen_drol 1.22
788 : edgomez 1.14 } else if (start_code == VOP_START_CODE) {
789 : suxen_drol 1.22
790 : edgomez 1.39.2.9 DPRINTF(XVID_DEBUG_STARTCODE, "<vop>\n");
791 : suxen_drol 1.22
792 : edgomez 1.39.2.10 BitstreamSkip(bs, 32); /* vop_start_code */
793 : Isibaar 1.1
794 : edgomez 1.39.2.10 coding_type = BitstreamGetBits(bs, 2); /* vop_coding_type */
795 : edgomez 1.39.2.9 DPRINTF(XVID_DEBUG_HEADER, "coding_type %i\n", coding_type);
796 : Isibaar 1.1
797 : edgomez 1.39.2.10 /*********************** for decode B-frame time ***********************/
798 :     while (BitstreamGetBit(bs) != 0) /* time_base */
799 : chenm001 1.9 time_incr++;
800 : edgomez 1.14
801 : Isibaar 1.1 READ_MARKER();
802 : edgomez 1.14
803 :     if (dec->time_inc_bits) {
804 : edgomez 1.39.2.10 time_increment = (BitstreamGetBits(bs, dec->time_inc_bits)); /* vop_time_increment */
805 : chenm001 1.9 }
806 : suxen_drol 1.19
807 : edgomez 1.39.2.9 DPRINTF(XVID_DEBUG_HEADER, "time_base %i\n", time_incr);
808 :     DPRINTF(XVID_DEBUG_HEADER, "time_increment %i\n", time_increment);
809 : suxen_drol 1.22
810 : edgomez 1.39.2.9 DPRINTF(XVID_DEBUG_TIMECODE, "%c %i:%i\n",
811 : edgomez 1.38 coding_type == I_VOP ? 'I' : coding_type == P_VOP ? 'P' : coding_type == B_VOP ? 'B' : 'S',
812 : suxen_drol 1.19 time_incr, time_increment);
813 :    
814 : edgomez 1.14 if (coding_type != B_VOP) {
815 :     dec->last_time_base = dec->time_base;
816 : chenm001 1.9 dec->time_base += time_incr;
817 : chl 1.25 dec->time = time_increment;
818 :    
819 : edgomez 1.39.2.10 #if 0
820 :     dec->time_base * dec->time_inc_resolution +
821 : edgomez 1.14 time_increment;
822 : edgomez 1.39.2.10 #endif
823 :     dec->time_pp = (uint32_t)
824 :     (dec->time_inc_resolution + dec->time - dec->last_non_b_time)%dec->time_inc_resolution;
825 : edgomez 1.14 dec->last_non_b_time = dec->time;
826 :     } else {
827 : chl 1.25 dec->time = time_increment;
828 : edgomez 1.39.2.10 #if 0
829 : edgomez 1.14 (dec->last_time_base +
830 : edgomez 1.38 time_incr) * dec->time_inc_resolution + time_increment;
831 : edgomez 1.39.2.10 #endif
832 : chl 1.24 dec->time_bp = (uint32_t)
833 : edgomez 1.38 (dec->time_inc_resolution + dec->last_non_b_time - dec->time)%dec->time_inc_resolution;
834 : Isibaar 1.1 }
835 : edgomez 1.39.2.9 DPRINTF(XVID_DEBUG_HEADER,"time_pp=%i\n", dec->time_pp);
836 :     DPRINTF(XVID_DEBUG_HEADER,"time_bp=%i\n", dec->time_bp);
837 : Isibaar 1.1
838 :     READ_MARKER();
839 :    
840 : edgomez 1.39.2.10 if (!BitstreamGetBit(bs)) /* vop_coded */
841 : Isibaar 1.1 {
842 : edgomez 1.39.2.9 DPRINTF(XVID_DEBUG_HEADER, "vop_coded==false\n");
843 : Isibaar 1.1 return N_VOP;
844 :     }
845 :    
846 : edgomez 1.38 if (dec->newpred_enable)
847 :     {
848 :     int vop_id;
849 :     int vop_id_for_prediction;
850 :    
851 :     vop_id = BitstreamGetBits(bs, MIN(dec->time_inc_bits + 3, 15));
852 : edgomez 1.39.2.9 DPRINTF(XVID_DEBUG_HEADER, "vop_id %i\n", vop_id);
853 : edgomez 1.38 if (BitstreamGetBit(bs)) /* vop_id_for_prediction_indication */
854 :     {
855 :     vop_id_for_prediction = BitstreamGetBits(bs, MIN(dec->time_inc_bits + 3, 15));
856 : edgomez 1.39.2.9 DPRINTF(XVID_DEBUG_HEADER, "vop_id_for_prediction %i\n", vop_id_for_prediction);
857 : edgomez 1.38 }
858 :     READ_MARKER();
859 :     }
860 :    
861 :    
862 : Isibaar 1.1
863 : edgomez 1.39.2.10 /* fix a little bug by MinChen <chenm002@163.com> */
864 : edgomez 1.14 if ((dec->shape != VIDOBJLAY_SHAPE_BINARY_ONLY) &&
865 : edgomez 1.38 ( (coding_type == P_VOP) || (coding_type == S_VOP && dec->sprite_enable == SPRITE_GMC) ) ) {
866 : edgomez 1.39.2.10 *rounding = BitstreamGetBit(bs); /* rounding_type */
867 : edgomez 1.39.2.9 DPRINTF(XVID_DEBUG_HEADER, "rounding %i\n", *rounding);
868 : Isibaar 1.1 }
869 :    
870 : edgomez 1.38 if (dec->reduced_resolution_enable &&
871 :     dec->shape == VIDOBJLAY_SHAPE_RECTANGULAR &&
872 :     (coding_type == P_VOP || coding_type == I_VOP)) {
873 :    
874 :     *reduced_resolution = BitstreamGetBit(bs);
875 : edgomez 1.39.2.9 DPRINTF(XVID_DEBUG_HEADER, "reduced_resolution %i\n", *reduced_resolution);
876 : edgomez 1.38 }
877 :     else
878 :     {
879 :     *reduced_resolution = 0;
880 :     }
881 : Isibaar 1.1
882 : edgomez 1.14 if (dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR) {
883 : edgomez 1.38 if(!(dec->sprite_enable == SPRITE_STATIC && coding_type == I_VOP)) {
884 : edgomez 1.14
885 : edgomez 1.38 uint32_t width, height;
886 :     uint32_t horiz_mc_ref, vert_mc_ref;
887 : Isibaar 1.1
888 : edgomez 1.38 width = BitstreamGetBits(bs, 13);
889 :     READ_MARKER();
890 :     height = BitstreamGetBits(bs, 13);
891 :     READ_MARKER();
892 :     horiz_mc_ref = BitstreamGetBits(bs, 13);
893 :     READ_MARKER();
894 :     vert_mc_ref = BitstreamGetBits(bs, 13);
895 :     READ_MARKER();
896 : Isibaar 1.1
897 : edgomez 1.39.2.9 DPRINTF(XVID_DEBUG_HEADER, "width %i\n", width);
898 :     DPRINTF(XVID_DEBUG_HEADER, "height %i\n", height);
899 :     DPRINTF(XVID_DEBUG_HEADER, "horiz_mc_ref %i\n", horiz_mc_ref);
900 :     DPRINTF(XVID_DEBUG_HEADER, "vert_mc_ref %i\n", vert_mc_ref);
901 : edgomez 1.38 }
902 :    
903 : edgomez 1.39.2.10 BitstreamSkip(bs, 1); /* change_conv_ratio_disable */
904 :     if (BitstreamGetBit(bs)) /* vop_constant_alpha */
905 : Isibaar 1.1 {
906 : edgomez 1.39.2.10 BitstreamSkip(bs, 8); /* vop_constant_alpha_value */
907 : Isibaar 1.1 }
908 :     }
909 :    
910 : edgomez 1.38 if (dec->shape != VIDOBJLAY_SHAPE_BINARY_ONLY) {
911 : edgomez 1.14
912 : edgomez 1.38 if (!dec->complexity_estimation_disable)
913 :     {
914 :     read_vop_complexity_estimation_header(bs, dec, coding_type);
915 :     }
916 :    
917 : edgomez 1.39.2.10 /* intra_dc_vlc_threshold */
918 : edgomez 1.14 *intra_dc_threshold =
919 :     intra_dc_threshold_table[BitstreamGetBits(bs, 3)];
920 : Isibaar 1.1
921 : edgomez 1.38 dec->top_field_first = 0;
922 :     dec->alternate_vertical_scan = 0;
923 :    
924 : edgomez 1.14 if (dec->interlacing) {
925 : suxen_drol 1.22 dec->top_field_first = BitstreamGetBit(bs);
926 : edgomez 1.39.2.9 DPRINTF(XVID_DEBUG_HEADER, "interlace top_field_first %i\n", dec->top_field_first);
927 : suxen_drol 1.22 dec->alternate_vertical_scan = BitstreamGetBit(bs);
928 : edgomez 1.39.2.9 DPRINTF(XVID_DEBUG_HEADER, "interlace alternate_vertical_scan %i\n", dec->alternate_vertical_scan);
929 : suxen_drol 1.22
930 : h 1.4 }
931 : Isibaar 1.1 }
932 : edgomez 1.14
933 : edgomez 1.38 if ((dec->sprite_enable == SPRITE_STATIC || dec->sprite_enable== SPRITE_GMC) && coding_type == S_VOP) {
934 :    
935 :     int i;
936 :    
937 :     for (i = 0 ; i < dec->sprite_warping_points; i++)
938 :     {
939 :     int length;
940 :     int x = 0, y = 0;
941 :    
942 :     /* sprite code borowed from ffmpeg; thx Michael Niedermayer <michaelni@gmx.at> */
943 :     length = bs_get_spritetrajectory(bs);
944 :     if(length){
945 :     x= BitstreamGetBits(bs, length);
946 :     if ((x >> (length - 1)) == 0) /* if MSB not set it is negative*/
947 :     x = - (x ^ ((1 << length) - 1));
948 :     }
949 :     READ_MARKER();
950 :    
951 :     length = bs_get_spritetrajectory(bs);
952 :     if(length){
953 :     y = BitstreamGetBits(bs, length);
954 :     if ((y >> (length - 1)) == 0) /* if MSB not set it is negative*/
955 :     y = - (y ^ ((1 << length) - 1));
956 :     }
957 :     READ_MARKER();
958 :    
959 :     gmc_warp->duv[i].x = x;
960 :     gmc_warp->duv[i].y = y;
961 :    
962 : edgomez 1.39.2.9 DPRINTF(XVID_DEBUG_HEADER,"sprite_warping_point[%i] xy=(%i,%i)\n", i, x, y);
963 : edgomez 1.38 }
964 :    
965 :     if (dec->sprite_brightness_change)
966 :     {
967 : edgomez 1.39.2.10 /* XXX: brightness_change_factor() */
968 : edgomez 1.38 }
969 :     if (dec->sprite_enable == SPRITE_STATIC)
970 :     {
971 : edgomez 1.39.2.10 /* XXX: todo */
972 : edgomez 1.38 }
973 :    
974 :     }
975 :    
976 : edgomez 1.39.2.10 if ((*quant = BitstreamGetBits(bs, dec->quant_bits)) < 1) /* vop_quant */
977 : Isibaar 1.10 *quant = 1;
978 : edgomez 1.39.2.9 DPRINTF(XVID_DEBUG_HEADER, "quant %i\n", *quant);
979 : edgomez 1.14
980 :     if (coding_type != I_VOP) {
981 : edgomez 1.39.2.10 *fcode_forward = BitstreamGetBits(bs, 3); /* fcode_forward */
982 : edgomez 1.39.2.9 DPRINTF(XVID_DEBUG_HEADER, "fcode_forward %i\n", *fcode_forward);
983 : Isibaar 1.1 }
984 : edgomez 1.14
985 :     if (coding_type == B_VOP) {
986 : edgomez 1.39.2.10 *fcode_backward = BitstreamGetBits(bs, 3); /* fcode_backward */
987 : edgomez 1.39.2.9 DPRINTF(XVID_DEBUG_HEADER, "fcode_backward %i\n", *fcode_backward);
988 : chenm001 1.9 }
989 : edgomez 1.14 if (!dec->scalability) {
990 :     if ((dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR) &&
991 :     (coding_type != I_VOP)) {
992 : edgomez 1.39.2.10 BitstreamSkip(bs, 1); /* vop_shape_coding_type */
993 : chenm001 1.9 }
994 : Isibaar 1.1 }
995 :     return coding_type;
996 : suxen_drol 1.22
997 : edgomez 1.14 } else if (start_code == USERDATA_START_CODE) {
998 : edgomez 1.38 char tmp[256];
999 :     int i, version, build;
1000 :     char packed;
1001 :    
1002 : edgomez 1.39.2.10 BitstreamSkip(bs, 32); /* user_data_start_code */
1003 : edgomez 1.38
1004 :     tmp[0] = BitstreamShowBits(bs, 8);
1005 :    
1006 :     for(i = 1; i < 256; i++){
1007 :     tmp[i] = (BitstreamShowBits(bs, 16) & 0xFF);
1008 :    
1009 :     if(tmp[i] == 0)
1010 :     break;
1011 :    
1012 :     BitstreamSkip(bs, 8);
1013 :     }
1014 : suxen_drol 1.22
1015 : edgomez 1.39.2.9 DPRINTF(XVID_DEBUG_STARTCODE, "<user_data>: %s\n", tmp);
1016 : edgomez 1.39.2.12
1017 :     /* read xvid bitstream version */
1018 :     if(strncmp(tmp, "XviD", 4) == 0) {
1019 :     sscanf(tmp, "XviD%d", &dec->bs_version);
1020 :     DPRINTF(XVID_DEBUG_HEADER, "xvid bitstream version=%i", dec->bs_version);
1021 :     }
1022 : suxen_drol 1.22
1023 : edgomez 1.38 /* divx detection */
1024 :     i = sscanf(tmp, "DivX%dBuild%d%c", &version, &build, &packed);
1025 :     if (i < 2)
1026 :     i = sscanf(tmp, "DivX%db%d%c", &version, &build, &packed);
1027 :    
1028 :     if (i >= 2)
1029 :     {
1030 :     dec->packed_mode = (i == 3 && packed == 'p');
1031 : edgomez 1.39.2.9 DPRINTF(XVID_DEBUG_HEADER, "divx version=%i, build=%i packed=%i\n",
1032 : edgomez 1.38 version, build, dec->packed_mode);
1033 :     }
1034 : suxen_drol 1.22
1035 : edgomez 1.39.2.10 } else /* start_code == ? */
1036 : Isibaar 1.1 {
1037 : edgomez 1.14 if (BitstreamShowBits(bs, 24) == 0x000001) {
1038 : edgomez 1.39.2.9 DPRINTF(XVID_DEBUG_STARTCODE, "<unknown: %x>\n", BitstreamShowBits(bs, 32));
1039 : Isibaar 1.1 }
1040 :     BitstreamSkip(bs, 8);
1041 :     }
1042 :     }
1043 :     while ((BitstreamPos(bs) >> 3) < bs->length);
1044 :    
1045 : edgomez 1.39.2.10 #if 0
1046 :     DPRINTF("*** WARNING: no vop_start_code found");
1047 :     #endif
1048 : edgomez 1.14 return -1; /* ignore it */
1049 : Isibaar 1.1 }
1050 :    
1051 :    
1052 :     /* write custom quant matrix */
1053 :    
1054 : edgomez 1.14 static void
1055 :     bs_put_matrix(Bitstream * bs,
1056 :     const int16_t * matrix)
1057 : Isibaar 1.1 {
1058 :     int i, j;
1059 :     const int last = matrix[scan_tables[0][63]];
1060 :    
1061 : suxen_drol 1.18 for (j = 63; j > 0 && matrix[scan_tables[0][j - 1]] == last; j--);
1062 : Isibaar 1.1
1063 : edgomez 1.14 for (i = 0; i <= j; i++) {
1064 : Isibaar 1.1 BitstreamPutBits(bs, matrix[scan_tables[0][i]], 8);
1065 :     }
1066 :    
1067 : edgomez 1.14 if (j < 63) {
1068 : Isibaar 1.1 BitstreamPutBits(bs, 0, 8);
1069 :     }
1070 :     }
1071 :    
1072 :    
1073 :     /*
1074 :     write vol header
1075 :     */
1076 : edgomez 1.14 void
1077 :     BitstreamWriteVolHeader(Bitstream * const bs,
1078 : suxen_drol 1.39.2.1 const MBParam * pParam)
1079 : Isibaar 1.1 {
1080 : edgomez 1.38 static const unsigned int vo_id = 0;
1081 :     static const unsigned int vol_id = 0;
1082 :     int vol_ver_id=1;
1083 : suxen_drol 1.39.2.5 int vol_type_ind=VIDOBJLAY_TYPE_SIMPLE;
1084 : edgomez 1.38
1085 : edgomez 1.39.2.6 if ( (pParam->vol_flags & XVID_VOL_QUARTERPEL) ||
1086 :     (pParam->vol_flags & XVID_VOL_GMC) ||
1087 :     (pParam->vol_flags & XVID_VOL_REDUCED_ENABLE))
1088 : edgomez 1.38 vol_ver_id = 2;
1089 :    
1090 : edgomez 1.39.2.6 if ((pParam->vol_flags & XVID_VOL_REDUCED_ENABLE)) {
1091 : suxen_drol 1.39.2.5 vol_type_ind = VIDOBJLAY_TYPE_ART_SIMPLE;
1092 :     }
1093 : edgomez 1.38
1094 : edgomez 1.39.2.6 if ((pParam->vol_flags & XVID_VOL_QUARTERPEL) ||
1095 :     (pParam->vol_flags & XVID_VOL_GMC)) {
1096 : suxen_drol 1.39.2.5 vol_type_ind = VIDOBJLAY_TYPE_ASP;
1097 :     }
1098 : edgomez 1.38
1099 : edgomez 1.39.2.10 /* visual_object_sequence_start_code */
1100 :     #if 0
1101 :     BitstreamPad(bs);
1102 :     #endif
1103 :    
1104 :     /*
1105 :     * no padding here, anymore. You have to make sure that you are
1106 :     * byte aligned, and that always 1-8 padding bits have been written
1107 :     */
1108 : edgomez 1.38
1109 : suxen_drol 1.39.2.7 if (pParam->profile) {
1110 :     BitstreamPutBits(bs, VISOBJSEQ_START_CODE, 32);
1111 :     BitstreamPutBits(bs, pParam->profile, 8);
1112 :     }
1113 : edgomez 1.38
1114 : edgomez 1.39.2.10 /* visual_object_start_code */
1115 : edgomez 1.38 BitstreamPad(bs);
1116 :     BitstreamPutBits(bs, VISOBJ_START_CODE, 32);
1117 : edgomez 1.39.2.10 BitstreamPutBits(bs, 0, 1); /* is_visual_object_identifier */
1118 :     BitstreamPutBits(bs, VISOBJ_TYPE_VIDEO, 4); /* visual_object_type */
1119 : edgomez 1.38
1120 : edgomez 1.39.2.10 /* video object_start_code & vo_id */
1121 : edgomez 1.14 BitstreamPad(bs);
1122 : edgomez 1.38 BitstreamPutBits(bs, VIDOBJ_START_CODE|(vo_id&0x5), 32);
1123 : Isibaar 1.1
1124 : edgomez 1.39.2.10 /* video_object_layer_start_code & vol_id */
1125 : edgomez 1.38 BitstreamPad(bs);
1126 :     BitstreamPutBits(bs, VIDOBJLAY_START_CODE|(vol_id&0x4), 32);
1127 : Isibaar 1.1
1128 : edgomez 1.39.2.10 BitstreamPutBit(bs, 0); /* random_accessible_vol */
1129 :     BitstreamPutBits(bs, vol_type_ind, 8); /* video_object_type_indication */
1130 : suxen_drol 1.12
1131 : edgomez 1.38 if (vol_ver_id == 1)
1132 :     {
1133 : edgomez 1.39.2.10 BitstreamPutBit(bs, 0); /* is_object_layer_identified (0=not given) */
1134 : edgomez 1.38 }
1135 :     else
1136 :     {
1137 : edgomez 1.39.2.10 BitstreamPutBit(bs, 1); /* is_object_layer_identified */
1138 :     BitstreamPutBits(bs, vol_ver_id, 4); /* vol_ver_id == 2 */
1139 :     BitstreamPutBits(bs, 4, 3); /* vol_ver_priority (1==lowest, 7==highest) ?? */
1140 : edgomez 1.38 }
1141 : chl 1.28
1142 : edgomez 1.39.2.10 BitstreamPutBits(bs, 1, 4); /* aspect_ratio_info (1=1:1) */
1143 : edgomez 1.31
1144 : edgomez 1.39.2.10 BitstreamPutBit(bs, 1); /* vol_control_parameters */
1145 :     BitstreamPutBits(bs, 1, 2); /* chroma_format 1="4:2:0" */
1146 : suxen_drol 1.12
1147 : edgomez 1.38 if (pParam->max_bframes > 0) {
1148 : edgomez 1.39.2.10 BitstreamPutBit(bs, 0); /* low_delay */
1149 : edgomez 1.38 } else
1150 :     {
1151 : edgomez 1.39.2.10 BitstreamPutBit(bs, 1); /* low_delay */
1152 : edgomez 1.38 }
1153 : edgomez 1.39.2.10 BitstreamPutBit(bs, 0); /* vbv_parameters (0=not given) */
1154 : edgomez 1.38
1155 : edgomez 1.39.2.10 BitstreamPutBits(bs, 0, 2); /* video_object_layer_shape (0=rectangular) */
1156 : Isibaar 1.1
1157 :     WRITE_MARKER();
1158 : edgomez 1.14
1159 : edgomez 1.39.2.10 /*
1160 :     * time_inc_resolution; ignored by current decore versions
1161 :     * eg. 2fps res=2 inc=1
1162 :     * 25fps res=25 inc=1
1163 :     * 29.97fps res=30000 inc=1001
1164 : edgomez 1.14 */
1165 : suxen_drol 1.11 BitstreamPutBits(bs, pParam->fbase, 16);
1166 : edgomez 1.31
1167 : Isibaar 1.1 WRITE_MARKER();
1168 :    
1169 : suxen_drol 1.39.2.3 if (pParam->fincr>0) {
1170 : edgomez 1.39.2.10 BitstreamPutBit(bs, 1); /* fixed_vop_rate = 1 */
1171 :     BitstreamPutBits(bs, pParam->fincr, log2bin(pParam->fbase)); /* fixed_vop_time_increment */
1172 : suxen_drol 1.39.2.3 }else{
1173 : edgomez 1.39.2.10 BitstreamPutBit(bs, 0); /* fixed_vop_rate = 0 */
1174 : suxen_drol 1.39.2.3 }
1175 : Isibaar 1.1
1176 :     WRITE_MARKER();
1177 : edgomez 1.39.2.10 BitstreamPutBits(bs, pParam->width, 13); /* width */
1178 : Isibaar 1.1 WRITE_MARKER();
1179 : edgomez 1.39.2.10 BitstreamPutBits(bs, pParam->height, 13); /* height */
1180 : Isibaar 1.1 WRITE_MARKER();
1181 : edgomez 1.14
1182 : edgomez 1.39.2.10 BitstreamPutBit(bs, pParam->vol_flags & XVID_VOL_INTERLACING); /* interlace */
1183 :     BitstreamPutBit(bs, 1); /* obmc_disable (overlapped block motion compensation) */
1184 : edgomez 1.38
1185 :     if (vol_ver_id != 1)
1186 : edgomez 1.39.2.6 { if ((pParam->vol_flags & XVID_VOL_GMC))
1187 : edgomez 1.39.2.10 { BitstreamPutBits(bs, 2, 2); /* sprite_enable=='GMC' */
1188 : chl 1.39.2.14 BitstreamPutBits(bs, 3, 6); /* no_of_sprite_warping_points */
1189 : edgomez 1.39.2.10 BitstreamPutBits(bs, 3, 2); /* sprite_warping_accuracy 0==1/2, 1=1/4, 2=1/8, 3=1/16 */
1190 :     BitstreamPutBit(bs, 0); /* sprite_brightness_change (not supported) */
1191 :    
1192 :     /*
1193 :     * currently we use no_of_sprite_warping_points==2, sprite_warping_accuracy==3
1194 :     * for DivX5 compatability
1195 :     */
1196 : edgomez 1.38
1197 :     } else
1198 : edgomez 1.39.2.10 BitstreamPutBits(bs, 0, 2); /* sprite_enable==off */
1199 : edgomez 1.38 }
1200 :     else
1201 : edgomez 1.39.2.10 BitstreamPutBit(bs, 0); /* sprite_enable==off */
1202 : edgomez 1.38
1203 : edgomez 1.39.2.10 BitstreamPutBit(bs, 0); /* not_8_bit */
1204 : Isibaar 1.1
1205 : edgomez 1.39.2.10 /* quant_type 0=h.263 1=mpeg4(quantizer tables) */
1206 : edgomez 1.39.2.6 BitstreamPutBit(bs, pParam->vol_flags & XVID_VOL_MPEGQUANT);
1207 : edgomez 1.14
1208 : edgomez 1.39.2.6 if ((pParam->vol_flags & XVID_VOL_MPEGQUANT)) {
1209 : edgomez 1.39.2.10 BitstreamPutBit(bs, get_intra_matrix_status()); /* load_intra_quant_mat */
1210 : edgomez 1.14 if (get_intra_matrix_status()) {
1211 : Isibaar 1.2 bs_put_matrix(bs, get_intra_matrix());
1212 : Isibaar 1.1 }
1213 :    
1214 : edgomez 1.39.2.10 BitstreamPutBit(bs, get_inter_matrix_status()); /* load_inter_quant_mat */
1215 : edgomez 1.14 if (get_inter_matrix_status()) {
1216 : Isibaar 1.2 bs_put_matrix(bs, get_inter_matrix());
1217 : Isibaar 1.1 }
1218 :    
1219 :     }
1220 :    
1221 : edgomez 1.38 if (vol_ver_id != 1) {
1222 : edgomez 1.39.2.6 if ((pParam->vol_flags & XVID_VOL_QUARTERPEL))
1223 : edgomez 1.39.2.10 BitstreamPutBit(bs, 1); /* quarterpel */
1224 : edgomez 1.38 else
1225 : edgomez 1.39.2.10 BitstreamPutBit(bs, 0); /* no quarterpel */
1226 : edgomez 1.38 }
1227 :    
1228 : edgomez 1.39.2.10 BitstreamPutBit(bs, 1); /* complexity_estimation_disable */
1229 :     BitstreamPutBit(bs, 1); /* resync_marker_disable */
1230 :     BitstreamPutBit(bs, 0); /* data_partitioned */
1231 : edgomez 1.38
1232 :     if (vol_ver_id != 1)
1233 :     {
1234 : edgomez 1.39.2.10 BitstreamPutBit(bs, 0); /* newpred_enable */
1235 : edgomez 1.38
1236 : edgomez 1.39.2.6 BitstreamPutBit(bs, (pParam->vol_flags & XVID_VOL_REDUCED_ENABLE)?1:0);
1237 : edgomez 1.38 /* reduced_resolution_vop_enabled */
1238 :     }
1239 :    
1240 : edgomez 1.39.2.10 BitstreamPutBit(bs, 0); /* scalability */
1241 : edgomez 1.38
1242 :     /* fake divx5 id, to ensure compatibility with divx5 decoder */
1243 : suxen_drol 1.39.2.1 #define DIVX5_ID "DivX000b000p"
1244 : edgomez 1.39.2.6 if (pParam->max_bframes > 0 && (pParam->global_flags & XVID_GLOBAL_PACKED)) {
1245 : edgomez 1.38 BitstreamWriteUserData(bs, DIVX5_ID, strlen(DIVX5_ID));
1246 :     }
1247 :    
1248 :     /* xvid id */
1249 :     #define XVID_ID "XviD" XVID_BS_VERSION
1250 :     BitstreamWriteUserData(bs, XVID_ID, strlen(XVID_ID));
1251 : Isibaar 1.1 }
1252 :    
1253 :    
1254 :     /*
1255 :     write vop header
1256 :     */
1257 : edgomez 1.14 void
1258 : edgomez 1.38 BitstreamWriteVopHeader(
1259 :     Bitstream * const bs,
1260 : edgomez 1.14 const MBParam * pParam,
1261 : edgomez 1.38 const FRAMEINFO * const frame,
1262 : suxen_drol 1.17 int vop_coded)
1263 : Isibaar 1.1 {
1264 : suxen_drol 1.8 uint32_t i;
1265 : chl 1.28
1266 : edgomez 1.39.2.10 #if 0
1267 :     BitstreamPad(bs);
1268 :     #endif
1269 :    
1270 :     /*
1271 :     * no padding here, anymore. You have to make sure that you are
1272 :     * byte aligned, and that always 1-8 padding bits have been written
1273 :     */
1274 : edgomez 1.38
1275 : edgomez 1.14 BitstreamPutBits(bs, VOP_START_CODE, 32);
1276 :    
1277 :     BitstreamPutBits(bs, frame->coding_type, 2);
1278 : edgomez 1.39.2.10 #if 0
1279 :     DPRINTF(XVID_DEBUG_HEADER, "coding_type = %i\n", frame->coding_type);
1280 :     #endif
1281 : Isibaar 1.1
1282 : chl 1.28 for (i = 0; i < frame->seconds; i++) {
1283 :     BitstreamPutBit(bs, 1);
1284 :     }
1285 :     BitstreamPutBit(bs, 0);
1286 : Isibaar 1.1
1287 :     WRITE_MARKER();
1288 :    
1289 : edgomez 1.39.2.10 /* time_increment: value=nth_of_sec, nbits = log2(resolution) */
1290 : edgomez 1.38
1291 : edgomez 1.14 BitstreamPutBits(bs, frame->ticks, log2bin(pParam->fbase));
1292 : edgomez 1.39.2.10 #if 0
1293 :     DPRINTF("[%i:%i] %c",
1294 :     frame->seconds, frame->ticks,
1295 :     frame->coding_type == I_VOP ? 'I' :
1296 :     frame->coding_type == P_VOP ? 'P' :
1297 :     frame->coding_type == S_VOP ? 'S' : 'B');
1298 :     #endif
1299 : Isibaar 1.1
1300 :     WRITE_MARKER();
1301 :    
1302 : suxen_drol 1.17 if (!vop_coded) {
1303 :     BitstreamPutBits(bs, 0, 1);
1304 :     return;
1305 :     }
1306 :    
1307 : edgomez 1.39.2.10 BitstreamPutBits(bs, 1, 1); /* vop_coded */
1308 : Isibaar 1.1
1309 : edgomez 1.38 if ( (frame->coding_type == P_VOP) || (frame->coding_type == S_VOP) )
1310 : suxen_drol 1.7 BitstreamPutBits(bs, frame->rounding_type, 1);
1311 : Isibaar 1.1
1312 : edgomez 1.39.2.6 if ((frame->vol_flags & XVID_VOL_REDUCED_ENABLE))
1313 :     BitstreamPutBit(bs, (frame->vop_flags & XVID_VOP_REDUCED)?1:0);
1314 : edgomez 1.38
1315 : edgomez 1.39.2.10 BitstreamPutBits(bs, 0, 3); /* intra_dc_vlc_threshold */
1316 : edgomez 1.14
1317 : edgomez 1.39.2.6 if ((frame->vol_flags & XVID_VOL_INTERLACING)) {
1318 :     BitstreamPutBit(bs, (frame->vop_flags & XVID_VOP_TOPFIELDFIRST));
1319 :     BitstreamPutBit(bs, (frame->vop_flags & XVID_VOP_ALTERNATESCAN));
1320 : edgomez 1.38 }
1321 :    
1322 :     if (frame->coding_type == S_VOP) {
1323 : edgomez 1.39.2.10 if (1) { /* no_of_sprite_warping_points>=1 (we use 2!) */
1324 : edgomez 1.38 int k;
1325 : chl 1.39.2.14 for (k=0;k<3;k++)
1326 : edgomez 1.38 {
1327 : edgomez 1.39.2.10 bs_put_spritetrajectory(bs, frame->warp.duv[k].x ); /* du[k] */
1328 : edgomez 1.38 WRITE_MARKER();
1329 :    
1330 : edgomez 1.39.2.10 bs_put_spritetrajectory(bs, frame->warp.duv[k].y ); /* dv[k] */
1331 : edgomez 1.38 WRITE_MARKER();
1332 :    
1333 : edgomez 1.39.2.6 if ((frame->vol_flags & XVID_VOL_QUARTERPEL))
1334 : edgomez 1.38 {
1335 : edgomez 1.39.2.9 DPRINTF(XVID_DEBUG_HEADER,"sprite_warping_point[%i] xy=(%i,%i) *QPEL*\n", k, frame->warp.duv[k].x/2, frame->warp.duv[k].y/2);
1336 : edgomez 1.38 }
1337 :     else
1338 :     {
1339 : edgomez 1.39.2.9 DPRINTF(XVID_DEBUG_HEADER,"sprite_warping_point[%i] xy=(%i,%i)\n", k, frame->warp.duv[k].x, frame->warp.duv[k].y);
1340 : edgomez 1.38 }
1341 :     }
1342 :     }
1343 : h 1.4 }
1344 : edgomez 1.38
1345 : h 1.4
1346 : edgomez 1.39.2.10 #if 0
1347 :     DPRINTF(XVID_DEBUG_HEADER, "quant = %i\n", frame->quant);
1348 :     #endif
1349 : edgomez 1.38
1350 : edgomez 1.39.2.10 BitstreamPutBits(bs, frame->quant, 5); /* quantizer */
1351 : edgomez 1.14
1352 : suxen_drol 1.7 if (frame->coding_type != I_VOP)
1353 : edgomez 1.39.2.10 BitstreamPutBits(bs, frame->fcode, 3); /* forward_fixed_code */
1354 : suxen_drol 1.8
1355 :     if (frame->coding_type == B_VOP)
1356 : edgomez 1.39.2.10 BitstreamPutBits(bs, frame->bcode, 3); /* backward_fixed_code */
1357 : edgomez 1.38
1358 :     }
1359 :    
1360 :     void
1361 :     BitstreamWriteUserData(Bitstream * const bs,
1362 :     uint8_t * data,
1363 :     const int length)
1364 :     {
1365 :     int i;
1366 :    
1367 :     BitstreamPad(bs);
1368 :     BitstreamPutBits(bs, USERDATA_START_CODE, 32);
1369 :    
1370 :     for (i = 0; i < length; i++) {
1371 :     BitstreamPutBits(bs, data[i], 8);
1372 :     }
1373 : suxen_drol 1.17
1374 : chl 1.24 }

No admin address has been configured
ViewVC Help
Powered by ViewVC 1.0.4