[svn] / branches / dev-api-4 / xvidcore / src / bitstream / bitstream.c Repository:
ViewVC logotype

Diff of /branches/dev-api-4/xvidcore/src/bitstream/bitstream.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

trunk/xvidcore/src/bitstream/bitstream.c revision 294, Fri Jul 12 00:49:59 2002 UTC branches/dev-api-4/xvidcore/src/bitstream/bitstream.c revision 1032, Sat May 17 13:37:49 2003 UTC
# Line 41  Line 41 
41    *                                                                            *    *                                                                            *
42    *  Revision history:                                                         *    *  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           *    *  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)               *    *             or dec->height is 0  (for use in examples/ex1.c)               *
48    *             MinChen <chenm001@163.com>                                     *    *             MinChen <chenm001@163.com>                                     *
# Line 60  Line 62 
62    *      30.02.2002     intra_dc_threshold support                             *    *      30.02.2002     intra_dc_threshold support                             *
63    *      04.12.2001     support for additional headers                         *    *      04.12.2001     support for additional headers                         *
64    *      16.12.2001     inital version                                         *    *      16.12.2001     inital version                                         *
65    *    *                                                                                                                                                        *
66    ******************************************************************************/    ******************************************************************************/
67    
68    
69    #include <string.h>
70    #include <stdio.h>
71    
72  #include "bitstream.h"  #include "bitstream.h"
73  #include "zigzag.h"  #include "zigzag.h"
74  #include "../quant/quant_matrix.h"  #include "../quant/quant_matrix.h"
75    #include "mbcoding.h"
76    
77    
78  static uint32_t __inline  static uint32_t __inline
79  log2bin(uint32_t value)  log2bin(uint32_t value)
80  {  {
81  /* Changed by Chenm001 */  /* Changed by Chenm001 */
82  #ifndef WIN32  #if !defined(_MSC_VER)
83          int n = 0;          int n = 0;
84    
85          while (value) {          while (value) {
# Line 128  Line 134 
134  // for BVOP addbits == max(fcode,bcode) - 1  // for BVOP addbits == max(fcode,bcode) - 1
135  // returns mbpos  // returns mbpos
136  int  int
137  read_video_packet_header(Bitstream *bs, const int addbits, int * quant)  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  {  {
145          int nbits;          int startcode_bits = NUMBITS_VP_RESYNC_MARKER + addbits;
146            int mbnum_bits = log2bin(dec->mb_width *  dec->mb_height - 1);
147          int mbnum;          int mbnum;
148          int hec;          int hec = 0;
   
         nbits = NUMBITS_VP_RESYNC_MARKER + addbits;  
149    
150          BitstreamSkip(bs, BitstreamNumBitsToByteAlign(bs));          BitstreamSkip(bs, BitstreamNumBitsToByteAlign(bs));
151          BitstreamSkip(bs, nbits);          BitstreamSkip(bs, startcode_bits);
152    
153            DPRINTF(XVID_DEBUG_STARTCODE, "<video_packet_header>");
154    
155            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(XVID_DEBUG_HEADER, "mbnum %i", mbnum);
173    
174            if (dec->shape != VIDOBJLAY_SHAPE_BINARY_ONLY)
175            {
176                    *quant = BitstreamGetBits(bs, dec->quant_bits); /* quant_scale */
177                    DPRINTF(XVID_DEBUG_HEADER, "quant %i", *quant);
178            }
179    
180            if (dec->shape == VIDOBJLAY_SHAPE_RECTANGULAR)
181                    hec = BitstreamGetBit(bs);              /* header_extension_code */
182    
         DPRINTF(DPRINTF_STARTCODE, "<video_packet_header>");  
183    
184          // if (dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR) {          DPRINTF(XVID_DEBUG_HEADER, "header_extension_code %i", hec);
185                  // hec          if (hec)
186                  // vop_width          {
187                  // marker_bit                  int time_base;
188                  // vop_height                  int time_increment;
189                  // marker_bit                  int coding_type;
190    
191          //}                  for (time_base=0; BitstreamGetBit(bs)!=0; time_base++);         /* modulo_time_base */
192                    READ_MARKER();
193          mbnum = BitstreamGetBits(bs, 9);                  if (dec->time_inc_bits)
194          DPRINTF(DPRINTF_HEADER, "mbnum %i", mbnum);                          time_increment = (BitstreamGetBits(bs, dec->time_inc_bits));    /* vop_time_increment */
195                    READ_MARKER();
196          // if (dec->shape != VIDOBJLAY_SHAPE_BINARYONLY)                  DPRINTF(XVID_DEBUG_HEADER,"time %i:%i", time_base, time_increment);
197          *quant = BitstreamGetBits(bs, 5);  
198          DPRINTF(DPRINTF_HEADER, "quant %i", *quant);                  coding_type = BitstreamGetBits(bs, 2);
199                    DPRINTF(XVID_DEBUG_HEADER,"coding_type %i", coding_type);
200          // if (dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR)  
201          hec = BitstreamGetBit(bs);                  if (dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR)
202          DPRINTF(DPRINTF_HEADER, "header_extension_code %i", hec);                  {
203          // if (hec)                          BitstreamSkip(bs, 1);   /* change_conv_ratio_disable */
204          //   .. decoder hec-header ...                          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(XVID_DEBUG_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(XVID_DEBUG_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(XVID_DEBUG_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(XVID_DEBUG_HEADER, "vop_id_for_prediction %i", vop_id_for_prediction);
250                    }
251                    READ_MARKER();
252            }
253    
254          return mbnum;          return mbnum;
255  }  }
256    
257    
258    
259    
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(XVID_DEBUG_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  /*  /*
419  decode headers  decode headers
420  returns coding_type, or -1 if error  returns coding_type, or -1 if error
# Line 180  Line 427 
427  BitstreamReadHeaders(Bitstream * bs,  BitstreamReadHeaders(Bitstream * bs,
428                                           DECODER * dec,                                           DECODER * dec,
429                                           uint32_t * rounding,                                           uint32_t * rounding,
430                                             uint32_t * reduced_resolution,
431                                           uint32_t * quant,                                           uint32_t * quant,
432                                           uint32_t * fcode_forward,                                           uint32_t * fcode_forward,
433                                           uint32_t * fcode_backward,                                           uint32_t * fcode_backward,
434                                           uint32_t * intra_dc_threshold)                                           uint32_t * intra_dc_threshold,
435                                             WARPPOINTS *gmc_warp)
436  {  {
437          uint32_t vol_ver_id;          uint32_t vol_ver_id;
         static uint32_t time_increment_resolution;  
438          uint32_t coding_type;          uint32_t coding_type;
439          uint32_t start_code;          uint32_t start_code;
440          uint32_t time_incr = 0;          uint32_t time_incr = 0;
441          int32_t time_increment;          int32_t time_increment = 0;
442            int resize = 0;
443    
444          do {          do {
445    
446                  BitstreamByteAlign(bs);                  BitstreamByteAlign(bs);
447                  start_code = BitstreamShowBits(bs, 32);                  start_code = BitstreamShowBits(bs, 32);
448    
# Line 200  Line 450 
450    
451                          int profile;                          int profile;
452    
453                          DPRINTF(DPRINTF_STARTCODE, "<visual_object_sequence>");                          DPRINTF(XVID_DEBUG_STARTCODE, "<visual_object_sequence>");
454    
455                          BitstreamSkip(bs, 32);  // visual_object_sequence_start_code                          BitstreamSkip(bs, 32);  // visual_object_sequence_start_code
456                          profile = BitstreamGetBits(bs, 8);      // profile_and_level_indication                          profile = BitstreamGetBits(bs, 8);      // profile_and_level_indication
457    
458                          DPRINTF(DPRINTF_HEADER, "profile_and_level_indication %i", profile);                          DPRINTF(XVID_DEBUG_HEADER, "profile_and_level_indication %i", profile);
459    
460                  } else if (start_code == VISOBJSEQ_STOP_CODE) {                  } else if (start_code == VISOBJSEQ_STOP_CODE) {
461    
462                          BitstreamSkip(bs, 32);  // visual_object_sequence_stop_code                          BitstreamSkip(bs, 32);  // visual_object_sequence_stop_code
463    
464                          DPRINTF(DPRINTF_STARTCODE, "</visual_object_sequence>");                          DPRINTF(XVID_DEBUG_STARTCODE, "</visual_object_sequence>");
465    
466                  } else if (start_code == VISOBJ_START_CODE) {                  } else if (start_code == VISOBJ_START_CODE) {
467                            int visobj_ver_id;
468    
469                          DPRINTF(DPRINTF_STARTCODE, "<visual_object>");                          DPRINTF(XVID_DEBUG_STARTCODE, "<visual_object>");
470    
471                          BitstreamSkip(bs, 32);  // visual_object_start_code                          BitstreamSkip(bs, 32);  // visual_object_start_code
472                          if (BitstreamGetBit(bs))        // is_visual_object_identified                          if (BitstreamGetBit(bs))        // is_visual_object_identified
473                          {                          {
474                                  vol_ver_id = BitstreamGetBits(bs, 4);   // visual_object_ver_id                                  visobj_ver_id = BitstreamGetBits(bs, 4);        // visual_object_ver_id
475                                  DPRINTF(DPRINTF_HEADER,"ver_id %i", vol_ver_id);                                  DPRINTF(XVID_DEBUG_HEADER,"visobj_ver_id %i", visobj_ver_id);
476                                  BitstreamSkip(bs, 3);   // visual_object_priority                                  BitstreamSkip(bs, 3);   // visual_object_priority
477                          } else {                          } else {
478                                  vol_ver_id = 1;                                  visobj_ver_id = 1;
479                          }                          }
480    
481                          if (BitstreamShowBits(bs, 4) != VISOBJ_TYPE_VIDEO)      // visual_object_type                          if (BitstreamShowBits(bs, 4) != VISOBJ_TYPE_VIDEO)      // visual_object_type
482                          {                          {
483                                  DPRINTF(DPRINTF_ERROR, "visual_object_type != video");                                  DPRINTF(XVID_DEBUG_ERROR, "visual_object_type != video");
484                                  return -1;                                  return -1;
485                          }                          }
486                          BitstreamSkip(bs, 4);                          BitstreamSkip(bs, 4);
# Line 238  Line 489 
489    
490                          if (BitstreamGetBit(bs))        // video_signal_type                          if (BitstreamGetBit(bs))        // video_signal_type
491                          {                          {
492                                  DPRINTF(DPRINTF_HEADER,"+ video_signal_type");                                  DPRINTF(XVID_DEBUG_HEADER,"+ video_signal_type");
493                                  BitstreamSkip(bs, 3);   // video_format                                  BitstreamSkip(bs, 3);   // video_format
494                                  BitstreamSkip(bs, 1);   // video_range                                  BitstreamSkip(bs, 1);   // video_range
495                                  if (BitstreamGetBit(bs))        // color_description                                  if (BitstreamGetBit(bs))        // color_description
496                                  {                                  {
497                                          DPRINTF(DPRINTF_HEADER,"+ color_description");                                          DPRINTF(XVID_DEBUG_HEADER,"+ color_description");
498                                          BitstreamSkip(bs, 8);   // color_primaries                                          BitstreamSkip(bs, 8);   // color_primaries
499                                          BitstreamSkip(bs, 8);   // transfer_characteristics                                          BitstreamSkip(bs, 8);   // transfer_characteristics
500                                          BitstreamSkip(bs, 8);   // matrix_coefficients                                          BitstreamSkip(bs, 8);   // matrix_coefficients
# Line 251  Line 502 
502                          }                          }
503                  } else if ((start_code & ~VIDOBJ_START_CODE_MASK) == VIDOBJ_START_CODE) {                  } else if ((start_code & ~VIDOBJ_START_CODE_MASK) == VIDOBJ_START_CODE) {
504    
505                          DPRINTF(DPRINTF_STARTCODE, "<video_object>");                          DPRINTF(XVID_DEBUG_STARTCODE, "<video_object>");
506                          DPRINTF(DPRINTF_HEADER, "vo id %i", start_code & VIDOBJ_START_CODE_MASK);                          DPRINTF(XVID_DEBUG_HEADER, "vo id %i", start_code & VIDOBJ_START_CODE_MASK);
507    
508                          BitstreamSkip(bs, 32);  // video_object_start_code                          BitstreamSkip(bs, 32);  // video_object_start_code
509    
510                  } else if ((start_code & ~VIDOBJLAY_START_CODE_MASK) == VIDOBJLAY_START_CODE) {                  } else if ((start_code & ~VIDOBJLAY_START_CODE_MASK) == VIDOBJLAY_START_CODE) {
511    
512                          DPRINTF(DPRINTF_STARTCODE, "<video_object_layer>");                          DPRINTF(XVID_DEBUG_STARTCODE, "<video_object_layer>");
513                          DPRINTF(DPRINTF_HEADER, "vol id %i", start_code & VIDOBJLAY_START_CODE_MASK);                          DPRINTF(XVID_DEBUG_HEADER, "vol id %i", start_code & VIDOBJLAY_START_CODE_MASK);
514    
515                          BitstreamSkip(bs, 32);  // video_object_layer_start_code                          BitstreamSkip(bs, 32);  // video_object_layer_start_code
   
516                          BitstreamSkip(bs, 1);   // random_accessible_vol                          BitstreamSkip(bs, 1);   // random_accessible_vol
517    
518                          // video_object_type_indication              BitstreamSkip(bs, 8);   // video_object_type_indication
                         if (BitstreamShowBits(bs, 8) != VIDOBJLAY_TYPE_SIMPLE && BitstreamShowBits(bs, 8) != VIDOBJLAY_TYPE_CORE && BitstreamShowBits(bs, 8) != VIDOBJLAY_TYPE_MAIN && BitstreamShowBits(bs, 8) != 0)   // BUGGY DIVX  
                         {  
                                 DPRINTF(DPRINTF_ERROR,"video_object_type_indication %i not supported ",  
                                         BitstreamShowBits(bs, 8));  
                                 return -1;  
                         }  
                         BitstreamSkip(bs, 8);  
   
519    
520                          if (BitstreamGetBit(bs))        // is_object_layer_identifier                          if (BitstreamGetBit(bs))        // is_object_layer_identifier
521                          {                          {
522                                  DPRINTF(DPRINTF_HEADER, "+ is_object_layer_identifier");                                  DPRINTF(XVID_DEBUG_HEADER, "+ is_object_layer_identifier");
523                                  vol_ver_id = BitstreamGetBits(bs, 4);   // video_object_layer_verid                                  vol_ver_id = BitstreamGetBits(bs, 4);   // video_object_layer_verid
524                                  DPRINTF(DPRINTF_HEADER,"ver_id %i", vol_ver_id);                                  DPRINTF(XVID_DEBUG_HEADER,"ver_id %i", vol_ver_id);
525                                  BitstreamSkip(bs, 3);   // video_object_layer_priority                                  BitstreamSkip(bs, 3);   // video_object_layer_priority
526                          } else {                          } else {
527                                  vol_ver_id = 1;                                  vol_ver_id = 1;
528                          }                          }
529    
530                          if (BitstreamGetBits(bs, 4) == VIDOBJLAY_AR_EXTPAR)     // aspect_ratio_info                          dec->aspect_ratio = BitstreamGetBits(bs, 4);
531    
532                            if (dec->aspect_ratio == VIDOBJLAY_AR_EXTPAR)   // aspect_ratio_info
533                          {                          {
534                                  DPRINTF(DPRINTF_HEADER, "+ aspect_ratio_info");                                  DPRINTF(XVID_DEBUG_HEADER, "+ aspect_ratio_info");
535                                  BitstreamSkip(bs, 8);   // par_width                                  dec->par_width = BitstreamGetBits(bs, 8);       // par_width
536                                  BitstreamSkip(bs, 8);   // par_height                                  dec->par_height = BitstreamGetBits(bs, 8);      // par_height
537                          }                          }
538    
539                          if (BitstreamGetBit(bs))        // vol_control_parameters                          if (BitstreamGetBit(bs))        // vol_control_parameters
540                          {                          {
541                                  DPRINTF(DPRINTF_HEADER, "+ vol_control_parameters");                                  DPRINTF(XVID_DEBUG_HEADER, "+ vol_control_parameters");
542                                  BitstreamSkip(bs, 2);   // chroma_format                                  BitstreamSkip(bs, 2);   // chroma_format
543                                  dec->low_delay = BitstreamGetBit(bs);   // low_delay                                  dec->low_delay = BitstreamGetBit(bs);   // low_delay
544                                  DPRINTF(DPRINTF_HEADER, "low_delay %i", dec->low_delay);                                  DPRINTF(XVID_DEBUG_HEADER, "low_delay %i", dec->low_delay);
545                                  if (BitstreamGetBit(bs))        // vbv_parameters                                  if (BitstreamGetBit(bs))        // vbv_parameters
546                                  {                                  {
547                                          DPRINTF(DPRINTF_HEADER,"+ vbv_parameters");                                          unsigned int bitrate;
548                                          BitstreamSkip(bs, 15);  // first_half_bitrate                                          unsigned int buffer_size;
549                                            unsigned int occupancy;
550    
551                                            DPRINTF(XVID_DEBUG_HEADER,"+ vbv_parameters");
552    
553                                            bitrate = BitstreamGetBits(bs,15) << 15;        // first_half_bit_rate
554                                          READ_MARKER();                                          READ_MARKER();
555                                          BitstreamSkip(bs, 15);  // latter_half_bitrate                                          bitrate |= BitstreamGetBits(bs,15);             // latter_half_bit_rate
556                                          READ_MARKER();                                          READ_MARKER();
557                                          BitstreamSkip(bs, 15);  // first_half_vbv_buffer_size  
558                                            buffer_size = BitstreamGetBits(bs, 15) << 3;    // first_half_vbv_buffer_size
559                                          READ_MARKER();                                          READ_MARKER();
560                                          BitstreamSkip(bs, 3);   // latter_half_vbv_buffer_size                                          buffer_size |= BitstreamGetBits(bs, 3);         // latter_half_vbv_buffer_size
561                                          BitstreamSkip(bs, 11);  // first_half_vbv_occupancy  
562                                            occupancy = BitstreamGetBits(bs, 11) << 15;     // first_half_vbv_occupancy
563                                          READ_MARKER();                                          READ_MARKER();
564                                          BitstreamSkip(bs, 15);  // latter_half_vbv_occupancy                                          occupancy |= BitstreamGetBits(bs, 15);  // latter_half_vbv_occupancy
565                                          READ_MARKER();                                          READ_MARKER();
566    
567                                            DPRINTF(XVID_DEBUG_HEADER,"bitrate %d (unit=400 bps)", bitrate);
568                                            DPRINTF(XVID_DEBUG_HEADER,"buffer_size %d (unit=16384 bits)", buffer_size);
569                                            DPRINTF(XVID_DEBUG_HEADER,"occupancy %d (unit=64 bits)", occupancy);
570                                  }                                  }
571                            }else{
572                                    dec->low_delay = dec->low_delay_default;
573                          }                          }
574    
575                          dec->shape = BitstreamGetBits(bs, 2);   // video_object_layer_shape                          dec->shape = BitstreamGetBits(bs, 2);   // video_object_layer_shape
576                          DPRINTF(DPRINTF_HEADER, "shape %i", dec->shape);  
577                            DPRINTF(XVID_DEBUG_HEADER, "shape %i", dec->shape);
578                            if (dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR)
579                            {
580                                    DPRINTF(XVID_DEBUG_ERROR,"non-rectangular shapes are not supported");
581                            }
582    
583                          if (dec->shape == VIDOBJLAY_SHAPE_GRAYSCALE && vol_ver_id != 1) {                          if (dec->shape == VIDOBJLAY_SHAPE_GRAYSCALE && vol_ver_id != 1) {
584                                  BitstreamSkip(bs, 4);   // video_object_layer_shape_extension                                  BitstreamSkip(bs, 4);   // video_object_layer_shape_extension
# Line 326  Line 587 
587                          READ_MARKER();                          READ_MARKER();
588    
589  // *************************** for decode B-frame time ***********************  // *************************** for decode B-frame time ***********************
590                          time_increment_resolution = BitstreamGetBits(bs, 16);   // vop_time_increment_resolution                          dec->time_inc_resolution = BitstreamGetBits(bs, 16);    // vop_time_increment_resolution
591                            DPRINTF(XVID_DEBUG_HEADER,"vop_time_increment_resolution %i", dec->time_inc_resolution);
592    
593                          DPRINTF(DPRINTF_HEADER,"vop_time_increment_resolution %i", time_increment_resolution);  //                      dec->time_inc_resolution--;
594    
595                          time_increment_resolution--;                          if (dec->time_inc_resolution > 0) {
596                                    dec->time_inc_bits = log2bin(dec->time_inc_resolution-1);
                         if (time_increment_resolution > 0) {  
                                 dec->time_inc_bits = log2bin(time_increment_resolution);  
597                          } else {                          } else {
598                                  // dec->time_inc_bits = 0;                                  // dec->time_inc_bits = 0;
599                                  // for "old" xvid compatibility, set time_inc_bits = 1                                  // for "old" xvid compatibility, set time_inc_bits = 1
# Line 344  Line 604 
604    
605                          if (BitstreamGetBit(bs))        // fixed_vop_rate                          if (BitstreamGetBit(bs))        // fixed_vop_rate
606                          {                          {
607                                  DPRINTF(DPRINTF_HEADER, "+ fixed_vop_rate");                                  DPRINTF(XVID_DEBUG_HEADER, "+ fixed_vop_rate");
608                                  BitstreamSkip(bs, dec->time_inc_bits);  // fixed_vop_time_increment                                  BitstreamSkip(bs, dec->time_inc_bits);  // fixed_vop_time_increment
609                          }                          }
610    
# Line 359  Line 619 
619                                          height = BitstreamGetBits(bs, 13);      // video_object_layer_height                                          height = BitstreamGetBits(bs, 13);      // video_object_layer_height
620                                          READ_MARKER();                                          READ_MARKER();
621    
622                                          DPRINTF(DPRINTF_HEADER, "width %i", width);                                          DPRINTF(XVID_DEBUG_HEADER, "width %i", width);
623                                          DPRINTF(DPRINTF_HEADER, "height %i", height);                                          DPRINTF(XVID_DEBUG_HEADER, "height %i", height);
624    
625                                          // for auto set width & height                                          if (dec->width != width || dec->height != height)
626                                          if (dec->width == 0)                                          {
627                                                    if (dec->fixed_dimensions)
628                                                    {
629                                                            DPRINTF(XVID_DEBUG_ERROR, "decoder width/height does not match bitstream");
630                                                            return -1;
631                                                    }
632                                                    resize = 1;
633                                                  dec->width = width;                                                  dec->width = width;
                                         if (dec->height == 0)  
634                                                  dec->height = height;                                                  dec->height = height;
   
                                         if (width != dec->width || height != dec->height) {  
                                                 DPRINTF(DPRINTF_ERROR, "XVID_DEC_PARAM width/height does not match bitstream");  
                                                 return -1;  
635                                          }                                          }
   
636                                  }                                  }
637    
638                                  dec->interlacing = BitstreamGetBit(bs);                                  dec->interlacing = BitstreamGetBit(bs);
639                                  DPRINTF(DPRINTF_HEADER, "interlace", dec->interlacing);                                  DPRINTF(XVID_DEBUG_HEADER, "interlacing %i", dec->interlacing);
640    
641                                  if (!BitstreamGetBit(bs))       // obmc_disable                                  if (!BitstreamGetBit(bs))       // obmc_disable
642                                  {                                  {
643                                          DPRINTF(DPRINTF_ERROR, "obmc_disabled==false not supported");                                          DPRINTF(XVID_DEBUG_ERROR, "obmc_disabled==false not supported");
644                                          // TODO                                          // TODO
645                                          // fucking divx4.02 has this enabled                                          // fucking divx4.02 has this enabled
646                                  }                                  }
647    
648                                  if (BitstreamGetBits(bs, (vol_ver_id == 1 ? 1 : 2)))    // sprite_enable                                  dec->sprite_enable = BitstreamGetBits(bs, (vol_ver_id == 1 ? 1 : 2));   // sprite_enable
649    
650                                    if (dec->sprite_enable == SPRITE_STATIC || dec->sprite_enable == SPRITE_GMC)
651                                  {                                  {
652                                          DPRINTF(DPRINTF_ERROR, "spriate_enabled not supported");                                          int low_latency_sprite_enable;
653                                          return -1;  
654                                            if (dec->sprite_enable != SPRITE_GMC)
655                                            {
656                                                    int sprite_width;
657                                                    int sprite_height;
658                                                    int sprite_left_coord;
659                                                    int sprite_top_coord;
660                                                    sprite_width = BitstreamGetBits(bs, 13);                // sprite_width
661                                                    READ_MARKER();
662                                                    sprite_height = BitstreamGetBits(bs, 13);       // sprite_height
663                                                    READ_MARKER();
664                                                    sprite_left_coord = BitstreamGetBits(bs, 13);   // sprite_left_coordinate
665                                                    READ_MARKER();
666                                                    sprite_top_coord = BitstreamGetBits(bs, 13);    // sprite_top_coordinate
667                                                    READ_MARKER();
668                                            }
669                                            dec->sprite_warping_points = BitstreamGetBits(bs, 6);           // no_of_sprite_warping_points
670                                            dec->sprite_warping_accuracy = BitstreamGetBits(bs, 2);         // sprite_warping_accuracy
671                                            dec->sprite_brightness_change = BitstreamGetBits(bs, 1);                // brightness_change
672                                            if (dec->sprite_enable != SPRITE_GMC)
673                                            {
674                                                    low_latency_sprite_enable = BitstreamGetBits(bs, 1);            // low_latency_sprite_enable
675                                            }
676                                  }                                  }
677    
678                                  if (vol_ver_id != 1 &&                                  if (vol_ver_id != 1 &&
# Line 398  Line 682 
682    
683                                  if (BitstreamGetBit(bs))        // not_8_bit                                  if (BitstreamGetBit(bs))        // not_8_bit
684                                  {                                  {
685                                          DPRINTF(DPRINTF_HEADER, "not_8_bit==true (ignored)");                                          DPRINTF(XVID_DEBUG_HEADER, "not_8_bit==true (ignored)");
686                                          dec->quant_bits = BitstreamGetBits(bs, 4);      // quant_precision                                          dec->quant_bits = BitstreamGetBits(bs, 4);      // quant_precision
687                                          BitstreamSkip(bs, 4);   // bits_per_pixel                                          BitstreamSkip(bs, 4);   // bits_per_pixel
688                                  } else {                                  } else {
# Line 412  Line 696 
696                                  }                                  }
697    
698                                  dec->quant_type = BitstreamGetBit(bs);  // quant_type                                  dec->quant_type = BitstreamGetBit(bs);  // quant_type
699                                  DPRINTF(DPRINTF_HEADER, "quant_type %i", dec->quant_type);                                  DPRINTF(XVID_DEBUG_HEADER, "quant_type %i", dec->quant_type);
700    
701                                  if (dec->quant_type) {                                  if (dec->quant_type) {
702                                          if (BitstreamGetBit(bs))        // load_intra_quant_mat                                          if (BitstreamGetBit(bs))        // load_intra_quant_mat
703                                          {                                          {
704                                                  uint8_t matrix[64];                                                  uint8_t matrix[64];
705    
706                                                  DPRINTF(DPRINTF_HEADER, "load_intra_quant_mat");                                                  DPRINTF(XVID_DEBUG_HEADER, "load_intra_quant_mat");
707    
708                                                  bs_get_matrix(bs, matrix);                                                  bs_get_matrix(bs, matrix);
709                                                  set_intra_matrix(matrix);                                                  set_intra_matrix(matrix);
# Line 430  Line 714 
714                                          {                                          {
715                                                  uint8_t matrix[64];                                                  uint8_t matrix[64];
716    
717                                                  DPRINTF(DPRINTF_HEADER, "load_inter_quant_mat");                                                  DPRINTF(XVID_DEBUG_HEADER, "load_inter_quant_mat");
718    
719                                                  bs_get_matrix(bs, matrix);                                                  bs_get_matrix(bs, matrix);
720                                                  set_inter_matrix(matrix);                                                  set_inter_matrix(matrix);
# Line 438  Line 722 
722                                                  set_inter_matrix(get_default_inter_matrix());                                                  set_inter_matrix(get_default_inter_matrix());
723    
724                                          if (dec->shape == VIDOBJLAY_SHAPE_GRAYSCALE) {                                          if (dec->shape == VIDOBJLAY_SHAPE_GRAYSCALE) {
725                                                  DPRINTF(DPRINTF_ERROR, "greyscale matrix not supported");                                                  DPRINTF(XVID_DEBUG_ERROR, "greyscale matrix not supported");
726                                                  return -1;                                                  return -1;
727                                          }                                          }
728    
# Line 446  Line 730 
730    
731    
732                                  if (vol_ver_id != 1) {                                  if (vol_ver_id != 1) {
733                                          dec->quarterpel = BitstreamGetBit(bs);  // quarter_sampe                                          dec->quarterpel = BitstreamGetBit(bs);  // quarter_sample
734                                          if (dec->quarterpel) {                                          DPRINTF(XVID_DEBUG_HEADER,"quarterpel %i", dec->quarterpel);
                                                 DPRINTF(DPRINTF_ERROR, "quarter_sample not supported");  
735                                          }                                          }
736                                  } else {                                  else
737                                          dec->quarterpel = 0;                                          dec->quarterpel = 0;
                                 }  
738    
739                                  if (!BitstreamGetBit(bs))       // complexity_estimation_disable  
740                                    dec->complexity_estimation_disable = BitstreamGetBit(bs);       /* complexity estimation disable */
741                                    if (!dec->complexity_estimation_disable)
742                                  {                                  {
743                                          DPRINTF(DPRINTF_ERROR, "complexity_estimation not supported");                                          read_vol_complexity_estimation_header(bs, dec);
                                         return -1;  
744                                  }                                  }
745    
746                                  BitstreamSkip(bs, 1);   // resync_marker_disable                                  BitstreamSkip(bs, 1);   // resync_marker_disable
747    
748                                  if (BitstreamGetBit(bs))        // data_partitioned                                  if (BitstreamGetBit(bs))        // data_partitioned
749                                  {                                  {
750                                          DPRINTF(DPRINTF_ERROR, "data_partitioned not supported");                                          DPRINTF(XVID_DEBUG_ERROR, "data_partitioned not supported");
751                                          BitstreamSkip(bs, 1);   // reversible_vlc                                          BitstreamSkip(bs, 1);   // reversible_vlc
752                                  }                                  }
753    
754                                  if (vol_ver_id != 1) {                                  if (vol_ver_id != 1) {
755                                          if (BitstreamGetBit(bs))        // newpred_enable                                          dec->newpred_enable = BitstreamGetBit(bs);
756                                            if (dec->newpred_enable)        // newpred_enable
757                                          {                                          {
758                                                  DPRINTF(DPRINTF_HEADER, "+ newpred_enable");                                                  DPRINTF(XVID_DEBUG_HEADER, "+ newpred_enable");
759                                                  BitstreamSkip(bs, 2);   // requested_upstream_message_type                                                  BitstreamSkip(bs, 2);   // requested_upstream_message_type
760                                                  BitstreamSkip(bs, 1);   // newpred_segment_type                                                  BitstreamSkip(bs, 1);   // newpred_segment_type
761                                          }                                          }
762                                          if (BitstreamGetBit(bs))        // reduced_resolution_vop_enable                                          dec->reduced_resolution_enable = BitstreamGetBit(bs);   /* reduced_resolution_vop_enable */
763                                          {                                          DPRINTF(XVID_DEBUG_HEADER, "reduced_resolution_enable %i", dec->reduced_resolution_enable);
                                                 DPRINTF(DPRINTF_ERROR, "reduced_resolution_vop not supported");  
                                                 return -1;  
764                                          }                                          }
765                                    else
766                                    {
767                                            dec->newpred_enable = 0;
768                                            dec->reduced_resolution_enable = 0;
769                                  }                                  }
770    
771                                  if ((dec->scalability = BitstreamGetBit(bs)))   // scalability                                  dec->scalability = BitstreamGetBit(bs); /* scalability */
772                                  {                                  if (dec->scalability)
773                                          DPRINTF(DPRINTF_ERROR, "scalability not supported");                                  {
774                                            DPRINTF(XVID_DEBUG_ERROR, "scalability not supported");
775                                            BitstreamSkip(bs, 1);   /* hierarchy_type */
776                                            BitstreamSkip(bs, 4);   /* ref_layer_id */
777                                            BitstreamSkip(bs, 1);   /* ref_layer_sampling_direc */
778                                            BitstreamSkip(bs, 5);   /* hor_sampling_factor_n */
779                                            BitstreamSkip(bs, 5);   /* hor_sampling_factor_m */
780                                            BitstreamSkip(bs, 5);   /* vert_sampling_factor_n */
781                                            BitstreamSkip(bs, 5);   /* vert_sampling_factor_m */
782                                            BitstreamSkip(bs, 1);   /* enhancement_type */
783                                            if(dec->shape == VIDOBJLAY_SHAPE_BINARY /* && hierarchy_type==0 */) {
784                                                    BitstreamSkip(bs, 1);   /* use_ref_shape */
785                                                    BitstreamSkip(bs, 1);   /* use_ref_texture */
786                                                    BitstreamSkip(bs, 5);   /* shape_hor_sampling_factor_n */
787                                                    BitstreamSkip(bs, 5);   /* shape_hor_sampling_factor_m */
788                                                    BitstreamSkip(bs, 5);   /* shape_vert_sampling_factor_n */
789                                                    BitstreamSkip(bs, 5);   /* shape_vert_sampling_factor_m */
790                                            }
791                                          return -1;                                          return -1;
792                                  }                                  }
793                          } else                          // dec->shape == BINARY_ONLY                          } else                          // dec->shape == BINARY_ONLY
794                          {                          {
795                                  if (vol_ver_id != 1) {                                  if (vol_ver_id != 1) {
796                                          if (BitstreamGetBit(bs))        // scalability                                          dec->scalability = BitstreamGetBit(bs); /* scalability */
797                                            if (dec->scalability)
798                                          {                                          {
799                                          DPRINTF(DPRINTF_ERROR, "scalability not supported");                                                  DPRINTF(XVID_DEBUG_ERROR, "scalability not supported");
800                                                    BitstreamSkip(bs, 4);   /* ref_layer_id */
801                                                    BitstreamSkip(bs, 5);   /* hor_sampling_factor_n */
802                                                    BitstreamSkip(bs, 5);   /* hor_sampling_factor_m */
803                                                    BitstreamSkip(bs, 5);   /* vert_sampling_factor_n */
804                                                    BitstreamSkip(bs, 5);   /* vert_sampling_factor_m */
805                                                  return -1;                                                  return -1;
806                                          }                                          }
807                                  }                                  }
# Line 500  Line 809 
809    
810                          }                          }
811    
812                            return (resize ? -3 : -2 );     /* VOL */
813    
814                  } else if (start_code == GRPOFVOP_START_CODE) {                  } else if (start_code == GRPOFVOP_START_CODE) {
815    
816                          DPRINTF(DPRINTF_STARTCODE, "<group_of_vop>");                          DPRINTF(XVID_DEBUG_STARTCODE, "<group_of_vop>");
817    
818                          BitstreamSkip(bs, 32);                          BitstreamSkip(bs, 32);
819                          {                          {
# Line 513  Line 824 
824                                  READ_MARKER();                                  READ_MARKER();
825                                  seconds = BitstreamGetBits(bs, 6);                                  seconds = BitstreamGetBits(bs, 6);
826    
827                                  DPRINTF(DPRINTF_HEADER, "time %ih%im%is", hours);                                  DPRINTF(XVID_DEBUG_HEADER, "time %ih%im%is", hours,minutes,seconds);
828                          }                          }
829                          BitstreamSkip(bs, 1);   // closed_gov                          BitstreamSkip(bs, 1);   // closed_gov
830                          BitstreamSkip(bs, 1);   // broken_link                          BitstreamSkip(bs, 1);   // broken_link
831    
832                  } else if (start_code == VOP_START_CODE) {                  } else if (start_code == VOP_START_CODE) {
833    
834                          DPRINTF(DPRINTF_STARTCODE, "<vop>");                          DPRINTF(XVID_DEBUG_STARTCODE, "<vop>");
835    
836                          BitstreamSkip(bs, 32);  // vop_start_code                          BitstreamSkip(bs, 32);  // vop_start_code
837    
838                          coding_type = BitstreamGetBits(bs, 2);  // vop_coding_type                          coding_type = BitstreamGetBits(bs, 2);  // vop_coding_type
839                          DPRINTF(DPRINTF_HEADER, "coding_type %i", coding_type);                          DPRINTF(XVID_DEBUG_HEADER, "coding_type %i", coding_type);
840    
841  // *************************** for decode B-frame time ***********************  // *************************** for decode B-frame time ***********************
842                          while (BitstreamGetBit(bs) != 0)        // time_base                          while (BitstreamGetBit(bs) != 0)        // time_base
# Line 537  Line 848 
848                                  time_increment = (BitstreamGetBits(bs, dec->time_inc_bits));    // vop_time_increment                                  time_increment = (BitstreamGetBits(bs, dec->time_inc_bits));    // vop_time_increment
849                          }                          }
850    
851                          DPRINTF(DPRINTF_HEADER, "time_base %i", time_incr);                          DPRINTF(XVID_DEBUG_HEADER, "time_base %i", time_incr);
852                          DPRINTF(DPRINTF_HEADER, "time_increment %i", time_increment);                          DPRINTF(XVID_DEBUG_HEADER, "time_increment %i", time_increment);
853    
854                          DPRINTF(DPRINTF_TIMECODE, "%c %i:%i",                          DPRINTF(XVID_DEBUG_TIMECODE, "%c %i:%i",
855                                  coding_type == I_VOP ? 'I' : coding_type == P_VOP ? 'P' : 'B',                                  coding_type == I_VOP ? 'I' : coding_type == P_VOP ? 'P' : coding_type == B_VOP ? 'B' : 'S',
856                                  time_incr, time_increment);                                  time_incr, time_increment);
857    
858                          if (coding_type != B_VOP) {                          if (coding_type != B_VOP) {
859                                  dec->last_time_base = dec->time_base;                                  dec->last_time_base = dec->time_base;
860                                  dec->time_base += time_incr;                                  dec->time_base += time_incr;
861                                  dec->time =                                  dec->time = time_increment;
862                                          dec->time_base * time_increment_resolution +  
863    /*                                      dec->time_base * dec->time_inc_resolution +
864                                          time_increment;                                          time_increment;
865                                  dec->time_pp = (uint32_t) (dec->time - dec->last_non_b_time);  */                              dec->time_pp = (uint32_t)
866                                            (dec->time_inc_resolution + dec->time - dec->last_non_b_time)%dec->time_inc_resolution;
867                                  dec->last_non_b_time = dec->time;                                  dec->last_non_b_time = dec->time;
868                          } else {                          } else {
869                                  dec->time =                                  dec->time = time_increment;
870    /*
871                                          (dec->last_time_base +                                          (dec->last_time_base +
872                                           time_incr) * time_increment_resolution + time_increment;                                           time_incr) * dec->time_inc_resolution + time_increment;
873                                  dec->time_bp = (uint32_t) (dec->last_non_b_time - dec->time);  */
874                                    dec->time_bp = (uint32_t)
875                                            (dec->time_inc_resolution + dec->last_non_b_time - dec->time)%dec->time_inc_resolution;
876                          }                          }
877                            DPRINTF(XVID_DEBUG_HEADER,"time_pp=%i", dec->time_pp);
878                            DPRINTF(XVID_DEBUG_HEADER,"time_bp=%i", dec->time_bp);
879    
880                          READ_MARKER();                          READ_MARKER();
881    
882                          if (!BitstreamGetBit(bs))       // vop_coded                          if (!BitstreamGetBit(bs))       // vop_coded
883                          {                          {
884                                  DPRINTF(DPRINTF_HEADER, "vop_coded==false");                                  DPRINTF(XVID_DEBUG_HEADER, "vop_coded==false");
885                                  return N_VOP;                                  return N_VOP;
886                          }                          }
887    
888                          /* if (newpred_enable)                          if (dec->newpred_enable)
889                            {
890                                    int vop_id;
891                                    int vop_id_for_prediction;
892    
893                                    vop_id = BitstreamGetBits(bs, MIN(dec->time_inc_bits + 3, 15));
894                                    DPRINTF(XVID_DEBUG_HEADER, "vop_id %i", vop_id);
895                                    if (BitstreamGetBit(bs))        /* vop_id_for_prediction_indication */
896                             {                             {
897                                            vop_id_for_prediction = BitstreamGetBits(bs, MIN(dec->time_inc_bits + 3, 15));
898                                            DPRINTF(XVID_DEBUG_HEADER, "vop_id_for_prediction %i", vop_id_for_prediction);
899                             }                             }
900                           */                                  READ_MARKER();
901                            }
902    
903    
904    
905                          // fix a little bug by MinChen <chenm002@163.com>                          // fix a little bug by MinChen <chenm002@163.com>
906                          if ((dec->shape != VIDOBJLAY_SHAPE_BINARY_ONLY) &&                          if ((dec->shape != VIDOBJLAY_SHAPE_BINARY_ONLY) &&
907                                  (coding_type == P_VOP)) {                                  ( (coding_type == P_VOP) || (coding_type == S_VOP && dec->sprite_enable == SPRITE_GMC) ) ) {
908                                  *rounding = BitstreamGetBit(bs);        // rounding_type                                  *rounding = BitstreamGetBit(bs);        // rounding_type
909                                  DPRINTF(DPRINTF_HEADER, "rounding %i", *rounding);                                  DPRINTF(XVID_DEBUG_HEADER, "rounding %i", *rounding);
910                          }                          }
911    
912                          /* if (reduced_resolution_enable)                          if (dec->reduced_resolution_enable &&
913                                    dec->shape == VIDOBJLAY_SHAPE_RECTANGULAR &&
914                                    (coding_type == P_VOP || coding_type == I_VOP)) {
915    
916                                    *reduced_resolution = BitstreamGetBit(bs);
917                                    DPRINTF(XVID_DEBUG_HEADER, "reduced_resolution %i", *reduced_resolution);
918                            }
919                            else
920                             {                             {
921                                    *reduced_resolution = 0;
922                             }                             }
                          */  
923    
924                          if (dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR) {                          if (dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR) {
925                                    if(!(dec->sprite_enable == SPRITE_STATIC && coding_type == I_VOP)) {
926    
927                                  uint32_t width, height;                                  uint32_t width, height;
928                                  uint32_t horiz_mc_ref, vert_mc_ref;                                  uint32_t horiz_mc_ref, vert_mc_ref;
929    
# Line 597  Line 936 
936                                  vert_mc_ref = BitstreamGetBits(bs, 13);                                  vert_mc_ref = BitstreamGetBits(bs, 13);
937                                  READ_MARKER();                                  READ_MARKER();
938    
939                                  DPRINTF(DPRINTF_HEADER, "width %i", width);                                          DPRINTF(XVID_DEBUG_HEADER, "width %i", width);
940                                  DPRINTF(DPRINTF_HEADER, "height %i", height);                                          DPRINTF(XVID_DEBUG_HEADER, "height %i", height);
941                                  DPRINTF(DPRINTF_HEADER, "horiz_mc_ref %i", horiz_mc_ref);                                          DPRINTF(XVID_DEBUG_HEADER, "horiz_mc_ref %i", horiz_mc_ref);
942                                  DPRINTF(DPRINTF_HEADER, "vert_mc_ref %i", vert_mc_ref);                                          DPRINTF(XVID_DEBUG_HEADER, "vert_mc_ref %i", vert_mc_ref);
943                                    }
944    
945                                  BitstreamSkip(bs, 1);   // change_conv_ratio_disable                                  BitstreamSkip(bs, 1);   // change_conv_ratio_disable
946                                  if (BitstreamGetBit(bs))        // vop_constant_alpha                                  if (BitstreamGetBit(bs))        // vop_constant_alpha
# Line 609  Line 949 
949                                  }                                  }
950                          }                          }
951    
   
952                          if (dec->shape != VIDOBJLAY_SHAPE_BINARY_ONLY) {                          if (dec->shape != VIDOBJLAY_SHAPE_BINARY_ONLY) {
953    
954                                    if (!dec->complexity_estimation_disable)
955                                    {
956                                            read_vop_complexity_estimation_header(bs, dec, coding_type);
957                                    }
958    
959                                  // intra_dc_vlc_threshold                                  // intra_dc_vlc_threshold
960                                  *intra_dc_threshold =                                  *intra_dc_threshold =
961                                          intra_dc_threshold_table[BitstreamGetBits(bs, 3)];                                          intra_dc_threshold_table[BitstreamGetBits(bs, 3)];
962    
963                                    dec->top_field_first = 0;
964                                    dec->alternate_vertical_scan = 0;
965    
966                                  if (dec->interlacing) {                                  if (dec->interlacing) {
967                                          dec->top_field_first = BitstreamGetBit(bs);                                          dec->top_field_first = BitstreamGetBit(bs);
968                                          DPRINTF(DPRINTF_HEADER, "interlace top_field_first %i", dec->top_field_first);                                          DPRINTF(XVID_DEBUG_HEADER, "interlace top_field_first %i", dec->top_field_first);
969                                          dec->alternate_vertical_scan = BitstreamGetBit(bs);                                          dec->alternate_vertical_scan = BitstreamGetBit(bs);
970                                          DPRINTF(DPRINTF_HEADER, "interlace alternate_vertical_scan %i", dec->alternate_vertical_scan);                                          DPRINTF(XVID_DEBUG_HEADER, "interlace alternate_vertical_scan %i", dec->alternate_vertical_scan);
971    
972                                  }                                  }
973                          }                          }
974    
975                            if ((dec->sprite_enable == SPRITE_STATIC || dec->sprite_enable== SPRITE_GMC) && coding_type == S_VOP) {
976    
977                                    int i;
978    
979                                    for (i = 0 ; i < dec->sprite_warping_points; i++)
980                                    {
981                                            int length;
982                                            int x = 0, y = 0;
983    
984                                            /* sprite code borowed from ffmpeg; thx Michael Niedermayer <michaelni@gmx.at> */
985                                            length = bs_get_spritetrajectory(bs);
986                                            if(length){
987                                                    x= BitstreamGetBits(bs, length);
988                                                    if ((x >> (length - 1)) == 0) /* if MSB not set it is negative*/
989                                                            x = - (x ^ ((1 << length) - 1));
990                                            }
991                                            READ_MARKER();
992    
993                                            length = bs_get_spritetrajectory(bs);
994                                            if(length){
995                                                    y = BitstreamGetBits(bs, length);
996                                                    if ((y >> (length - 1)) == 0) /* if MSB not set it is negative*/
997                                                            y = - (y ^ ((1 << length) - 1));
998                                            }
999                                            READ_MARKER();
1000    
1001                                            gmc_warp->duv[i].x = x;
1002                                            gmc_warp->duv[i].y = y;
1003    
1004                                            DPRINTF(XVID_DEBUG_HEADER,"sprite_warping_point[%i] xy=(%i,%i)", i, x, y);
1005                                    }
1006    
1007                                    if (dec->sprite_brightness_change)
1008                                    {
1009                                            // XXX: brightness_change_factor()
1010                                    }
1011                                    if (dec->sprite_enable == SPRITE_STATIC)
1012                                    {
1013                                            // XXX: todo
1014                                    }
1015    
1016                            }
1017    
1018                          if ((*quant = BitstreamGetBits(bs, dec->quant_bits)) < 1)       // vop_quant                          if ((*quant = BitstreamGetBits(bs, dec->quant_bits)) < 1)       // vop_quant
1019                                  *quant = 1;                                  *quant = 1;
1020                            DPRINTF(XVID_DEBUG_HEADER, "quant %i", *quant);
                         DPRINTF(DPRINTF_HEADER, "quant %i", *quant);  
1021    
1022                          if (coding_type != I_VOP) {                          if (coding_type != I_VOP) {
1023                                  *fcode_forward = BitstreamGetBits(bs, 3);       // fcode_forward                                  *fcode_forward = BitstreamGetBits(bs, 3);       // fcode_forward
1024                                  DPRINTF(DPRINTF_HEADER, "fcode_forward %i", *fcode_forward);                                  DPRINTF(XVID_DEBUG_HEADER, "fcode_forward %i", *fcode_forward);
1025                          }                          }
1026    
1027                          if (coding_type == B_VOP) {                          if (coding_type == B_VOP) {
1028                                  *fcode_backward = BitstreamGetBits(bs, 3);      // fcode_backward                                  *fcode_backward = BitstreamGetBits(bs, 3);      // fcode_backward
1029                                  DPRINTF(DPRINTF_HEADER, "fcode_backward %i", *fcode_backward);                                  DPRINTF(XVID_DEBUG_HEADER, "fcode_backward %i", *fcode_backward);
1030                          }                          }
1031                          if (!dec->scalability) {                          if (!dec->scalability) {
1032                                  if ((dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR) &&                                  if ((dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR) &&
# Line 647  Line 1037 
1037                          return coding_type;                          return coding_type;
1038    
1039                  } else if (start_code == USERDATA_START_CODE) {                  } else if (start_code == USERDATA_START_CODE) {
1040                            char tmp[256];
1041                          DPRINTF(DPRINTF_STARTCODE, "<user_data>");                      int i, version, build;
1042                            char packed;
1043    
1044                          BitstreamSkip(bs, 32);  // user_data_start_code                          BitstreamSkip(bs, 32);  // user_data_start_code
1045    
1046                            tmp[0] = BitstreamShowBits(bs, 8);
1047    
1048                            for(i = 1; i < 256; i++){
1049                                    tmp[i] = (BitstreamShowBits(bs, 16) & 0xFF);
1050    
1051                                    if(tmp[i] == 0)
1052                                            break;
1053    
1054                                    BitstreamSkip(bs, 8);
1055                            }
1056    
1057                            DPRINTF(XVID_DEBUG_STARTCODE, "<user_data>: %s", tmp);
1058    
1059                        /* divx detection */
1060                            i = sscanf(tmp, "DivX%dBuild%d%c", &version, &build, &packed);
1061                            if (i < 2)
1062                                    i = sscanf(tmp, "DivX%db%d%c", &version, &build, &packed);
1063    
1064                            if (i >= 2)
1065                            {
1066                                    dec->packed_mode = (i == 3 && packed == 'p');
1067                                    DPRINTF(XVID_DEBUG_HEADER, "divx version=%i, build=%i packed=%i",
1068                                                    version, build, dec->packed_mode);
1069                            }
1070    
1071                  } else                                  // start_code == ?                  } else                                  // start_code == ?
1072                  {                  {
1073                          if (BitstreamShowBits(bs, 24) == 0x000001) {                          if (BitstreamShowBits(bs, 24) == 0x000001) {
1074                                  DPRINTF(DPRINTF_STARTCODE, "<unknown: %x>", BitstreamShowBits(bs, 32));                                  DPRINTF(XVID_DEBUG_STARTCODE, "<unknown: %x>", BitstreamShowBits(bs, 32));
1075                          }                          }
1076                          BitstreamSkip(bs, 8);                          BitstreamSkip(bs, 8);
1077                  }                  }
# Line 693  Line 1109 
1109  */  */
1110  void  void
1111  BitstreamWriteVolHeader(Bitstream * const bs,  BitstreamWriteVolHeader(Bitstream * const bs,
1112                                                  const MBParam * pParam,                                                  const MBParam * pParam)
                                                 const FRAMEINFO * frame)  
1113  {  {
1114            static const unsigned int vo_id = 0;
1115            static const unsigned int vol_id = 0;
1116            int vol_ver_id=1;
1117        int vol_type_ind=VIDOBJLAY_TYPE_SIMPLE;
1118    
1119            if ( (pParam->vol_flags & XVID_VOL_QUARTERPEL) ||
1120             (pParam->vol_flags & XVID_VOL_GMC) ||
1121                     (pParam->vol_flags & XVID_VOL_REDUCED_ENABLE))
1122                    vol_ver_id = 2;
1123    
1124        if ((pParam->vol_flags & XVID_VOL_REDUCED_ENABLE)) {
1125            vol_type_ind = VIDOBJLAY_TYPE_ART_SIMPLE;
1126        }
1127    
1128            if ((pParam->vol_flags & XVID_VOL_QUARTERPEL) ||
1129            (pParam->vol_flags & XVID_VOL_GMC)) {
1130            vol_type_ind = VIDOBJLAY_TYPE_ASP;
1131        }
1132    
1133            // visual_object_sequence_start_code
1134    //      BitstreamPad(bs);
1135    /* no padding here, anymore. You have to make sure that you are
1136       byte aligned, and that always 1-8 padding bits have been written */
1137    
1138        if (pParam->profile) {
1139                BitstreamPutBits(bs, VISOBJSEQ_START_CODE, 32);
1140                BitstreamPutBits(bs, pParam->profile, 8);
1141        }
1142    
1143            // visual_object_start_code
1144            BitstreamPad(bs);
1145            BitstreamPutBits(bs, VISOBJ_START_CODE, 32);
1146            BitstreamPutBits(bs, 0, 1);             // is_visual_object_identifier
1147            BitstreamPutBits(bs, VISOBJ_TYPE_VIDEO, 4);             // visual_object_type
1148    
1149          // video object_start_code & vo_id          // video object_start_code & vo_id
1150          BitstreamPad(bs);          BitstreamPad(bs);
1151          BitstreamPutBits(bs, VO_START_CODE, 27);          BitstreamPutBits(bs, VIDOBJ_START_CODE|(vo_id&0x5), 32);
         BitstreamPutBits(bs, 0, 5);  
1152    
1153          // video_object_layer_start_code & vol_id          // video_object_layer_start_code & vol_id
1154          BitstreamPutBits(bs, VOL_START_CODE, 28);          BitstreamPad(bs);
1155          BitstreamPutBits(bs, 0, 4);          BitstreamPutBits(bs, VIDOBJLAY_START_CODE|(vol_id&0x4), 32);
1156    
1157          BitstreamPutBit(bs, 0);         // random_accessible_vol          BitstreamPutBit(bs, 0);         // random_accessible_vol
1158          BitstreamPutBits(bs, 0, 8);     // video_object_type_indication          BitstreamPutBits(bs, vol_type_ind, 8);  // video_object_type_indication
1159    
1160            if (vol_ver_id == 1)
1161            {
1162          BitstreamPutBit(bs, 0);         // is_object_layer_identified (0=not given)          BitstreamPutBit(bs, 0);         // is_object_layer_identified (0=not given)
1163            }
1164            else
1165            {
1166                    BitstreamPutBit(bs, 1);         // is_object_layer_identified
1167                    BitstreamPutBits(bs, vol_ver_id, 4);    // vol_ver_id == 2
1168                    BitstreamPutBits(bs, 4, 3); // vol_ver_priority (1==lowest, 7==highest) ??
1169            }
1170    
1171          BitstreamPutBits(bs, 1, 4);     // aspect_ratio_info (1=1:1)          BitstreamPutBits(bs, 1, 4);     // aspect_ratio_info (1=1:1)
1172    
 #ifdef BFRAMES  
         if (pParam->max_bframes > 0) {  
                 //DPRINTF("low_delay=1");  
1173                  BitstreamPutBit(bs, 1); // vol_control_parameters                  BitstreamPutBit(bs, 1); // vol_control_parameters
1174                  BitstreamPutBits(bs, 1, 2);     // chroma_format 1="4:2:0"                  BitstreamPutBits(bs, 1, 2);     // chroma_format 1="4:2:0"
1175    
1176            if (pParam->max_bframes > 0) {
1177                  BitstreamPutBit(bs, 0); // low_delay                  BitstreamPutBit(bs, 0); // low_delay
                 BitstreamPutBit(bs, 0); // vbv_parameters (0=not given)  
1178          } else          } else
 #endif  
1179          {          {
1180                  BitstreamPutBits(bs, 0, 1);     // vol_control_parameters (0=not given)                  BitstreamPutBit(bs, 1); // low_delay
1181          }          }
1182            BitstreamPutBit(bs, 0); // vbv_parameters (0=not given)
1183    
1184          BitstreamPutBits(bs, 0, 2);     // video_object_layer_shape (0=rectangular)          BitstreamPutBits(bs, 0, 2);     // video_object_layer_shape (0=rectangular)
1185    
1186          WRITE_MARKER();          WRITE_MARKER();
1187    
1188          /* time_increment_resolution; ignored by current decore versions          /* time_inc_resolution; ignored by current decore versions
1189             eg. 2fps     res=2       inc=1             eg. 2fps     res=2       inc=1
1190             25fps        res=25      inc=1             25fps        res=25      inc=1
1191             29.97fps res=30000   inc=1001             29.97fps res=30000   inc=1001
1192           */           */
 #ifdef BFRAMES  
1193          BitstreamPutBits(bs, pParam->fbase, 16);          BitstreamPutBits(bs, pParam->fbase, 16);
 #else  
         BitstreamPutBits(bs, 2, 16);  
 #endif  
1194    
1195          WRITE_MARKER();          WRITE_MARKER();
1196    
1197  #ifdef BFRAMES      if (pParam->fincr>0) {
1198          BitstreamPutBit(bs, 1);         // fixed_vop_rate = 1          BitstreamPutBit(bs, 1);         // fixed_vop_rate = 1
1199          BitstreamPutBits(bs, pParam->fincr, log2bin(pParam->fbase));    // fixed_vop_time_increment          BitstreamPutBits(bs, pParam->fincr, log2bin(pParam->fbase));    // fixed_vop_time_increment
1200  #else      }else{
1201          BitstreamPutBit(bs, 0);         // fixed_vop_rate = 0          BitstreamPutBit(bs, 0);         // fixed_vop_rate = 0
1202  #endif      }
1203    
1204          WRITE_MARKER();          WRITE_MARKER();
1205          BitstreamPutBits(bs, pParam->width, 13);        // width          BitstreamPutBits(bs, pParam->width, 13);        // width
# Line 754  Line 1207 
1207          BitstreamPutBits(bs, pParam->height, 13);       // height          BitstreamPutBits(bs, pParam->height, 13);       // height
1208          WRITE_MARKER();          WRITE_MARKER();
1209    
1210          BitstreamPutBit(bs, frame->global_flags & XVID_INTERLACING);    // interlace          BitstreamPutBit(bs, pParam->vol_flags & XVID_VOL_INTERLACING);  // interlace
1211          BitstreamPutBit(bs, 1);         // obmc_disable (overlapped block motion compensation)          BitstreamPutBit(bs, 1);         // obmc_disable (overlapped block motion compensation)
1212          BitstreamPutBit(bs, 0);         // sprite_enable  
1213          BitstreamPutBit(bs, 0);         // not_in_bit          if (vol_ver_id != 1)
1214            {       if ((pParam->vol_flags & XVID_VOL_GMC))
1215                    {       BitstreamPutBits(bs, 2, 2);             // sprite_enable=='GMC'
1216                            BitstreamPutBits(bs, 2, 6);             // no_of_sprite_warping_points
1217                            BitstreamPutBits(bs, 3, 2);             // sprite_warping_accuracy 0==1/2, 1=1/4, 2=1/8, 3=1/16
1218                            BitstreamPutBit(bs, 0);                 // sprite_brightness_change (not supported)
1219    
1220    /* currently we use no_of_sprite_warping_points==2, sprite_warping_accuracy==3
1221       for DivX5 compatability */
1222    
1223                    } else
1224                            BitstreamPutBits(bs, 0, 2);             // sprite_enable==off
1225            }
1226            else
1227                    BitstreamPutBit(bs, 0);         // sprite_enable==off
1228    
1229            BitstreamPutBit(bs, 0);         // not_8_bit
1230    
1231          // quant_type   0=h.263  1=mpeg4(quantizer tables)          // quant_type   0=h.263  1=mpeg4(quantizer tables)
1232          BitstreamPutBit(bs, pParam->m_quant_type);          BitstreamPutBit(bs, pParam->vol_flags & XVID_VOL_MPEGQUANT);
1233    
1234          if (pParam->m_quant_type) {          if ((pParam->vol_flags & XVID_VOL_MPEGQUANT)) {
1235                  BitstreamPutBit(bs, get_intra_matrix_status()); // load_intra_quant_mat                  BitstreamPutBit(bs, get_intra_matrix_status()); // load_intra_quant_mat
1236                  if (get_intra_matrix_status()) {                  if (get_intra_matrix_status()) {
1237                          bs_put_matrix(bs, get_intra_matrix());                          bs_put_matrix(bs, get_intra_matrix());
# Line 775  Line 1244 
1244    
1245          }          }
1246    
1247            if (vol_ver_id != 1) {
1248                    if ((pParam->vol_flags & XVID_VOL_QUARTERPEL))
1249                            BitstreamPutBit(bs, 1);         //  quarterpel
1250                    else
1251                            BitstreamPutBit(bs, 0);         // no quarterpel
1252            }
1253    
1254          BitstreamPutBit(bs, 1);         // complexity_estimation_disable          BitstreamPutBit(bs, 1);         // complexity_estimation_disable
1255          BitstreamPutBit(bs, 1);         // resync_marker_disable          BitstreamPutBit(bs, 1);         // resync_marker_disable
1256          BitstreamPutBit(bs, 0);         // data_partitioned          BitstreamPutBit(bs, 0);         // data_partitioned
1257    
1258            if (vol_ver_id != 1)
1259            {
1260                    BitstreamPutBit(bs, 0);         // newpred_enable
1261    
1262                    BitstreamPutBit(bs, (pParam->vol_flags & XVID_VOL_REDUCED_ENABLE)?1:0);
1263                                                                            /* reduced_resolution_vop_enabled */
1264            }
1265    
1266          BitstreamPutBit(bs, 0);         // scalability          BitstreamPutBit(bs, 0);         // scalability
1267    
1268            /* fake divx5 id, to ensure compatibility with divx5 decoder */
1269    #define DIVX5_ID "DivX000b000p"
1270            if (pParam->max_bframes > 0 && (pParam->global_flags & XVID_GLOBAL_PACKED)) {
1271                    BitstreamWriteUserData(bs, DIVX5_ID, strlen(DIVX5_ID));
1272            }
1273    
1274            /* xvid id */
1275    #define XVID_ID "XviD" XVID_BS_VERSION
1276            BitstreamWriteUserData(bs, XVID_ID, strlen(XVID_ID));
1277  }  }
1278    
1279    
1280  /*  /*
1281    write vop header    write vop header
   
   NOTE: doesnt handle bother with time_base & time_inc  
   time_base = n seconds since last resync (eg. last iframe)  
   time_inc = nth of a second since last resync  
   (decoder uses these values to determine precise time since last resync)  
1282  */  */
1283  void  void
1284  BitstreamWriteVopHeader(Bitstream * const bs,  BitstreamWriteVopHeader(
1285                                                    Bitstream * const bs,
1286                                                  const MBParam * pParam,                                                  const MBParam * pParam,
1287                                                  const FRAMEINFO * frame,                                                  const FRAMEINFO * const frame,
1288                                                  int vop_coded)                                                  int vop_coded)
1289  {  {
 #ifdef BFRAMES  
1290          uint32_t i;          uint32_t i;
1291  #endif  
1292          BitstreamPad(bs);  //      BitstreamPad(bs);
1293    /* no padding here, anymore. You have to make sure that you are
1294       byte aligned, and that always 1-8 padding bits have been written */
1295    
1296          BitstreamPutBits(bs, VOP_START_CODE, 32);          BitstreamPutBits(bs, VOP_START_CODE, 32);
1297    
1298          BitstreamPutBits(bs, frame->coding_type, 2);          BitstreamPutBits(bs, frame->coding_type, 2);
1299            //DPRINTF(XVID_DEBUG_HEADER, "coding_type = %i", frame->coding_type);
1300    
         // time_base = 0  write n x PutBit(1), PutBit(0)  
 #ifdef BFRAMES  
1301          for (i = 0; i < frame->seconds; i++) {          for (i = 0; i < frame->seconds; i++) {
1302                  BitstreamPutBit(bs, 1);                  BitstreamPutBit(bs, 1);
1303          }          }
1304          BitstreamPutBit(bs, 0);          BitstreamPutBit(bs, 0);
 #else  
         BitstreamPutBits(bs, 0, 1);  
 #endif  
1305    
1306          WRITE_MARKER();          WRITE_MARKER();
1307    
1308          // time_increment: value=nth_of_sec, nbits = log2(resolution)          // time_increment: value=nth_of_sec, nbits = log2(resolution)
1309  #ifdef BFRAMES  
1310          BitstreamPutBits(bs, frame->ticks, log2bin(pParam->fbase));          BitstreamPutBits(bs, frame->ticks, log2bin(pParam->fbase));
1311          /*DPRINTF("[%i:%i] %c\n", frame->seconds, frame->ticks,          /*DPRINTF("[%i:%i] %c", frame->seconds, frame->ticks,
1312                          frame->coding_type == I_VOP ? 'I' : frame->coding_type ==                          frame->coding_type == I_VOP ? 'I' : frame->coding_type ==
1313                          P_VOP ? 'P' : 'B');*/                          P_VOP ? 'P' : 'B');*/
 #else  
         BitstreamPutBits(bs, 1, 1);  
 #endif  
1314    
1315          WRITE_MARKER();          WRITE_MARKER();
1316    
# Line 835  Line 1321 
1321    
1322          BitstreamPutBits(bs, 1, 1);     // vop_coded          BitstreamPutBits(bs, 1, 1);     // vop_coded
1323    
1324          if (frame->coding_type == P_VOP)          if ( (frame->coding_type == P_VOP) || (frame->coding_type == S_VOP) )
1325                  BitstreamPutBits(bs, frame->rounding_type, 1);                  BitstreamPutBits(bs, frame->rounding_type, 1);
1326    
1327            if ((frame->vol_flags & XVID_VOL_REDUCED_ENABLE))
1328                    BitstreamPutBit(bs, (frame->vop_flags & XVID_VOP_REDUCED)?1:0);
1329    
1330          BitstreamPutBits(bs, 0, 3);     // intra_dc_vlc_threshold          BitstreamPutBits(bs, 0, 3);     // intra_dc_vlc_threshold
1331    
1332          if (frame->global_flags & XVID_INTERLACING) {          if ((frame->vol_flags & XVID_VOL_INTERLACING)) {
1333                  BitstreamPutBit(bs, 1); // top field first                  BitstreamPutBit(bs, (frame->vop_flags & XVID_VOP_TOPFIELDFIRST));
1334                  BitstreamPutBit(bs, 0); // alternate vertical scan                  BitstreamPutBit(bs, (frame->vop_flags & XVID_VOP_ALTERNATESCAN));
1335          }          }
1336    
1337            if (frame->coding_type == S_VOP) {
1338                    if (1)  {               // no_of_sprite_warping_points>=1 (we use 2!)
1339                            int k;
1340                            for (k=0;k<2;k++)
1341                            {
1342                                    bs_put_spritetrajectory(bs, frame->warp.duv[k].x ); // du[k]
1343                                    WRITE_MARKER();
1344    
1345                                    bs_put_spritetrajectory(bs, frame->warp.duv[k].y ); // dv[k]
1346                                    WRITE_MARKER();
1347    
1348                            if ((frame->vol_flags & XVID_VOL_QUARTERPEL))
1349                            {
1350                                    DPRINTF(XVID_DEBUG_HEADER,"sprite_warping_point[%i] xy=(%i,%i) *QPEL*", k, frame->warp.duv[k].x/2, frame->warp.duv[k].y/2);
1351                            }
1352                            else
1353                            {
1354                                    DPRINTF(XVID_DEBUG_HEADER,"sprite_warping_point[%i] xy=(%i,%i)", k, frame->warp.duv[k].x, frame->warp.duv[k].y);
1355                            }
1356                            }
1357                    }
1358            }
1359    
1360    
1361            //DPRINTF(XVID_DEBUG_HEADER, "quant = %i", frame->quant);
1362    
1363          BitstreamPutBits(bs, frame->quant, 5);  // quantizer          BitstreamPutBits(bs, frame->quant, 5);  // quantizer
1364    
1365          if (frame->coding_type != I_VOP)          if (frame->coding_type != I_VOP)
# Line 855  Line 1370 
1370    
1371  }  }
1372    
   
1373  void  void
1374  BitstreamWriteUserData(Bitstream * const bs,  BitstreamWriteUserData(Bitstream * const bs,
1375                                                  uint8_t * data,                                                  uint8_t * data,

Legend:
Removed from v.294  
changed lines
  Added in v.1032

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