[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.4 - (view) (download)

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

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