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

Diff of /xvidcore/src/bitstream/bitstream.c

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

revision 1.28, Tue Sep 3 17:25:45 2002 UTC revision 1.28.2.6, Tue Nov 12 15:53:23 2002 UTC
# Line 41  Line 41 
41    *                                                                            *    *                                                                            *
42    *  Revision history:                                                         *    *  Revision history:                                                         *
43    *                                                                            *    *                                                                            *
44      *  28.10.2002 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 "bitstream.h"  #include "bitstream.h"
71  #include "zigzag.h"  #include "zigzag.h"
72  #include "../quant/quant_matrix.h"  #include "../quant/quant_matrix.h"
73    #include "mbcoding.h"
74    
75    
76  static uint32_t __inline  static uint32_t __inline
# Line 128  Line 132 
132  // for BVOP addbits == max(fcode,bcode) - 1  // for BVOP addbits == max(fcode,bcode) - 1
133  // returns mbpos  // returns mbpos
134  int  int
135  read_video_packet_header(Bitstream *bs, const int addbits, int * quant)  read_video_packet_header(Bitstream *bs,
136                                                    DECODER * dec,
137                                                    const int addbits,
138                                                    int * quant,
139                                                    int * fcode_forward,
140                                                    int  * fcode_backward,
141                                                    int * intra_dc_threshold)
142  {  {
143          int nbits;          int startcode_bits = NUMBITS_VP_RESYNC_MARKER + addbits;
144            int mbnum_bits = log2bin(dec->mb_width *  dec->mb_height - 1);
145          int mbnum;          int mbnum;
146          int hec;          int hec = 0;
   
         nbits = NUMBITS_VP_RESYNC_MARKER + addbits;  
147    
148          BitstreamSkip(bs, BitstreamNumBitsToByteAlign(bs));          BitstreamSkip(bs, BitstreamNumBitsToByteAlign(bs));
149          BitstreamSkip(bs, nbits);          BitstreamSkip(bs, startcode_bits);
150    
151          DPRINTF(DPRINTF_STARTCODE, "<video_packet_header>");          DPRINTF(DPRINTF_STARTCODE, "<video_packet_header>");
152    
153          // if (dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR) {          if (dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR)
154                  // hec          {
155                  // vop_width                  hec = BitstreamGetBit(bs);              /* header_extension_code */
156                  // marker_bit                  if (hec && !(dec->sprite_enable == SPRITE_STATIC /* && current_coding_type = I_VOP */))
157                  // vop_height                  {
158                  // marker_bit                          BitstreamSkip(bs, 13);                  /* vop_width */
159                            READ_MARKER();
160          //}                          BitstreamSkip(bs, 13);                  /* vop_height */
161                            READ_MARKER();
162                            BitstreamSkip(bs, 13);                  /* vop_horizontal_mc_spatial_ref */
163                            READ_MARKER();
164                            BitstreamSkip(bs, 13);                  /* vop_vertical_mc_spatial_ref */
165                            READ_MARKER();
166                    }
167            }
168    
169          mbnum = BitstreamGetBits(bs, 9);          mbnum = BitstreamGetBits(bs, mbnum_bits);               /* macroblock_number */
170          DPRINTF(DPRINTF_HEADER, "mbnum %i", mbnum);          DPRINTF(DPRINTF_HEADER, "mbnum %i", mbnum);
171    
172          // if (dec->shape != VIDOBJLAY_SHAPE_BINARYONLY)          if (dec->shape != VIDOBJLAY_SHAPE_BINARY_ONLY)
173          *quant = BitstreamGetBits(bs, 5);          {
174                    *quant = BitstreamGetBits(bs, 5);       /* quant_scale */
175          DPRINTF(DPRINTF_HEADER, "quant %i", *quant);          DPRINTF(DPRINTF_HEADER, "quant %i", *quant);
176            }
177    
178            if (dec->shape == VIDOBJLAY_SHAPE_RECTANGULAR)
179                    hec = BitstreamGetBit(bs);              /* header_extension_code */
180    
181    
         // if (dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR)  
         hec = BitstreamGetBit(bs);  
182          DPRINTF(DPRINTF_HEADER, "header_extension_code %i", hec);          DPRINTF(DPRINTF_HEADER, "header_extension_code %i", hec);
183          // if (hec)          if (hec)
184          //   .. decoder hec-header ...          {
185                    int time_base;
186                    int time_increment;
187                    int coding_type;
188    
189                    for (time_base=0; BitstreamGetBit(bs)!=0; time_base++);         /* modulo_time_base */
190                    READ_MARKER();
191                    if (dec->time_inc_bits)
192                            time_increment = (BitstreamGetBits(bs, dec->time_inc_bits));    /* vop_time_increment */
193                    READ_MARKER();
194                    DPRINTF(DPRINTF_HEADER,"time %i:%i", time_base, time_increment);
195    
196                    coding_type = BitstreamGetBits(bs, 2);
197                    DPRINTF(DPRINTF_HEADER,"coding_type %i", coding_type);
198    
199                    if (dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR)
200                    {
201                            BitstreamSkip(bs, 1);   /* change_conv_ratio_disable */
202                            if (coding_type != I_VOP)
203                                    BitstreamSkip(bs, 1);   /* vop_shape_coding_type */
204                    }
205    
206                    if (dec->shape != VIDOBJLAY_SHAPE_BINARY_ONLY)
207                    {
208                            *intra_dc_threshold = intra_dc_threshold_table[BitstreamGetBits(bs, 3)];
209    
210                            if (dec->sprite_enable == SPRITE_GMC && coding_type == S_VOP &&
211                                    dec->sprite_warping_points > 0)
212                            {
213                                    // TODO: sprite trajectory
214                            }
215                            if (dec->reduced_resolution_enable &&
216                                    dec->shape == VIDOBJLAY_SHAPE_RECTANGULAR &&
217                                    (coding_type == P_VOP || coding_type == I_VOP))
218                            {
219                                    BitstreamSkip(bs, 1); /* vop_reduced_resolution */
220                            }
221    
222                            if (coding_type != I_VOP && fcode_forward)
223                            {
224                                    *fcode_forward = BitstreamGetBits(bs, 3);
225                                    DPRINTF(DPRINTF_HEADER,"fcode_forward %i", *fcode_forward);
226                            }
227    
228                            if (coding_type == B_VOP && fcode_backward)
229                            {
230                                    *fcode_backward = BitstreamGetBits(bs, 3);
231                                    DPRINTF(DPRINTF_HEADER,"fcode_backward %i", fcode_backward);
232                            }
233                    }
234    
235            }
236    
237            if (dec->newpred_enable)
238            {
239                    int vop_id;
240                    int vop_id_for_prediction;
241    
242                    vop_id = BitstreamGetBits(bs, MIN(dec->time_inc_bits + 3, 15));
243                    DPRINTF(DPRINTF_HEADER, "vop_id %i", vop_id);
244                    if (BitstreamGetBit(bs))        /* vop_id_for_prediction_indication */
245                    {
246                            vop_id_for_prediction = BitstreamGetBits(bs, MIN(dec->time_inc_bits + 3, 15));
247                            DPRINTF(DPRINTF_HEADER, "vop_id_for_prediction %i", vop_id_for_prediction);
248                    }
249                    READ_MARKER();
250            }
251    
252          return mbnum;          return mbnum;
253  }  }
# Line 180  Line 266 
266  BitstreamReadHeaders(Bitstream * bs,  BitstreamReadHeaders(Bitstream * bs,
267                                           DECODER * dec,                                           DECODER * dec,
268                                           uint32_t * rounding,                                           uint32_t * rounding,
269                                             uint32_t * reduced_resolution,
270                                           uint32_t * quant,                                           uint32_t * quant,
271                                           uint32_t * fcode_forward,                                           uint32_t * fcode_forward,
272                                           uint32_t * fcode_backward,                                           uint32_t * fcode_backward,
273                                           uint32_t * intra_dc_threshold)                                           uint32_t * intra_dc_threshold,
274                                             VECTOR * gmc_mv)
275  {  {
276          uint32_t vol_ver_id;          uint32_t vol_ver_id;
         static uint32_t time_increment_resolution;  
277          uint32_t coding_type;          uint32_t coding_type;
278          uint32_t start_code;          uint32_t start_code;
279          uint32_t time_incr = 0;          uint32_t time_incr = 0;
280          int32_t time_increment;          int32_t time_increment;
281            int resize = 0;
282    
283          do {          do {
284    
285                  BitstreamByteAlign(bs);                  BitstreamByteAlign(bs);
286                  start_code = BitstreamShowBits(bs, 32);                  start_code = BitstreamShowBits(bs, 32);
287    
# Line 266  Line 355 
355                          BitstreamSkip(bs, 1);   // random_accessible_vol                          BitstreamSkip(bs, 1);   // random_accessible_vol
356    
357                          // video_object_type_indication                          // video_object_type_indication
358                          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                          if (BitstreamShowBits(bs, 8) != VIDOBJLAY_TYPE_SIMPLE &&
359                                    BitstreamShowBits(bs, 8) != VIDOBJLAY_TYPE_CORE &&
360                                    BitstreamShowBits(bs, 8) != VIDOBJLAY_TYPE_MAIN &&
361                                    BitstreamShowBits(bs, 8) != VIDOBJLAY_TYPE_ACE &&
362                                    BitstreamShowBits(bs, 8) != VIDOBJLAY_TYPE_ART_SIMPLE &&
363                                    BitstreamShowBits(bs, 8) != 0)  // BUGGY DIVX
364                          {                          {
365                                  DPRINTF(DPRINTF_ERROR,"video_object_type_indication %i not supported ",                                  DPRINTF(DPRINTF_ERROR,"video_object_type_indication %i not supported ",
366                                          BitstreamShowBits(bs, 8));                                          BitstreamShowBits(bs, 8));
# Line 285  Line 379 
379                                  vol_ver_id = 1;                                  vol_ver_id = 1;
380                          }                          }
381    
382                          if (BitstreamGetBits(bs, 4) == VIDOBJLAY_AR_EXTPAR)     // aspect_ratio_info                          dec->aspect_ratio = BitstreamGetBits(bs, 4);
383    
384                            if (dec->aspect_ratio == VIDOBJLAY_AR_EXTPAR)   // aspect_ratio_info
385                          {                          {
386                                  DPRINTF(DPRINTF_HEADER, "+ aspect_ratio_info");                                  DPRINTF(DPRINTF_HEADER, "+ aspect_ratio_info");
387                                  BitstreamSkip(bs, 8);   // par_width                                  dec->par_width = BitstreamGetBits(bs, 8);       // par_width
388                                  BitstreamSkip(bs, 8);   // par_height                                  dec->par_height = BitstreamGetBits(bs, 8);      // par_height
389                          }                          }
390    
391                          if (BitstreamGetBit(bs))        // vol_control_parameters                          if (BitstreamGetBit(bs))        // vol_control_parameters
# Line 312  Line 408 
408                                          READ_MARKER();                                          READ_MARKER();
409                                          BitstreamSkip(bs, 15);  // latter_half_vbv_occupancy                                          BitstreamSkip(bs, 15);  // latter_half_vbv_occupancy
410                                          READ_MARKER();                                          READ_MARKER();
   
411                                  }                                  }
412                          }                          }
413    
414                          dec->shape = BitstreamGetBits(bs, 2);   // video_object_layer_shape                          dec->shape = BitstreamGetBits(bs, 2);   // video_object_layer_shape
415    
416                          DPRINTF(DPRINTF_HEADER, "shape %i", dec->shape);                          DPRINTF(DPRINTF_HEADER, "shape %i", dec->shape);
417                            if (dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR)
418                            {
419                                    DPRINTF(DPRINTF_ERROR,"non-rectangular shapes are not supported");
420                            }
421    
422                          if (dec->shape == VIDOBJLAY_SHAPE_GRAYSCALE && vol_ver_id != 1) {                          if (dec->shape == VIDOBJLAY_SHAPE_GRAYSCALE && vol_ver_id != 1) {
423                                  BitstreamSkip(bs, 4);   // video_object_layer_shape_extension                                  BitstreamSkip(bs, 4);   // video_object_layer_shape_extension
# Line 326  Line 426 
426                          READ_MARKER();                          READ_MARKER();
427    
428  // *************************** for decode B-frame time ***********************  // *************************** for decode B-frame time ***********************
429                          time_increment_resolution = BitstreamGetBits(bs, 16);   // vop_time_increment_resolution                          dec->time_inc_resolution = BitstreamGetBits(bs, 16);    // vop_time_increment_resolution
430                            DPRINTF(DPRINTF_HEADER,"vop_time_increment_resolution %i", dec->time_inc_resolution);
431    
432                          DPRINTF(DPRINTF_HEADER,"vop_time_increment_resolution %i", time_increment_resolution);  //                      dec->time_inc_resolution--;
433    
434  //                      time_increment_resolution--;                          if (dec->time_inc_resolution > 0) {
435                                    dec->time_inc_bits = log2bin(dec->time_inc_resolution-1);
                         if (time_increment_resolution > 0) {  
                                 dec->time_inc_bits = log2bin(time_increment_resolution-1);  
436                          } else {                          } else {
437                                  // dec->time_inc_bits = 0;                                  // dec->time_inc_bits = 0;
438                                  // for "old" xvid compatibility, set time_inc_bits = 1                                  // for "old" xvid compatibility, set time_inc_bits = 1
# Line 362  Line 461 
461                                          DPRINTF(DPRINTF_HEADER, "width %i", width);                                          DPRINTF(DPRINTF_HEADER, "width %i", width);
462                                          DPRINTF(DPRINTF_HEADER, "height %i", height);                                          DPRINTF(DPRINTF_HEADER, "height %i", height);
463    
464                                          // for auto set width & height                                          if (dec->width != width || dec->height != height)
465                                          if (dec->width == 0)                                          {
466                                                  dec->width = width;                                                  if (dec->fixed_dimensions)
467                                          if (dec->height == 0)                                                  {
                                                 dec->height = height;  
   
                                         if (width != dec->width || height != dec->height) {  
468                                                  DPRINTF(DPRINTF_ERROR, "XVID_DEC_PARAM width/height does not match bitstream");                                                  DPRINTF(DPRINTF_ERROR, "XVID_DEC_PARAM width/height does not match bitstream");
469                                                  return -1;                                                  return -1;
470                                          }                                          }
471                                                    resize = 1;
472                                                    dec->width = width;
473                                                    dec->height = height;
474                                            }
475                                  }                                  }
476    
477                                  dec->interlacing = BitstreamGetBit(bs);                                  dec->interlacing = BitstreamGetBit(bs);
478                                  DPRINTF(DPRINTF_HEADER, "interlace", dec->interlacing);                                  DPRINTF(DPRINTF_HEADER, "interlacing %i", dec->interlacing);
479    
480                                  if (!BitstreamGetBit(bs))       // obmc_disable                                  if (!BitstreamGetBit(bs))       // obmc_disable
481                                  {                                  {
# Line 385  Line 484 
484                                          // fucking divx4.02 has this enabled                                          // fucking divx4.02 has this enabled
485                                  }                                  }
486    
487                                  if (BitstreamGetBits(bs, (vol_ver_id == 1 ? 1 : 2)))    // sprite_enable                                  dec->sprite_enable = BitstreamGetBits(bs, (vol_ver_id == 1 ? 1 : 2));   // sprite_enable
488    
489                                    if (dec->sprite_enable == SPRITE_STATIC || dec->sprite_enable == SPRITE_GMC)
490                                  {                                  {
491                                          DPRINTF(DPRINTF_ERROR, "spriate_enabled not supported");                                          int low_latency_sprite_enable;
492                                          return -1;  
493                                            if (dec->sprite_enable != SPRITE_GMC)
494                                            {
495                                                    int sprite_width;
496                                                    int sprite_height;
497                                                    int sprite_left_coord;
498                                                    int sprite_top_coord;
499                                                    sprite_width = BitstreamGetBits(bs, 13);                // sprite_width
500                                                    READ_MARKER();
501                                                    sprite_height = BitstreamGetBits(bs, 13);       // sprite_height
502                                                    READ_MARKER();
503                                                    sprite_left_coord = BitstreamGetBits(bs, 13);   // sprite_left_coordinate
504                                                    READ_MARKER();
505                                                    sprite_top_coord = BitstreamGetBits(bs, 13);    // sprite_top_coordinate
506                                                    READ_MARKER();
507                                            }
508                                            dec->sprite_warping_points = BitstreamGetBits(bs, 6);           // no_of_sprite_warping_points
509                                            dec->sprite_warping_accuracy = BitstreamGetBits(bs, 2);         // sprite_warping_accuracy
510                                            dec->sprite_brightness_change = BitstreamGetBits(bs, 1);                // brightness_change
511                                            if (dec->sprite_enable != SPRITE_GMC)
512                                            {
513                                                    low_latency_sprite_enable = BitstreamGetBits(bs, 1);            // low_latency_sprite_enable
514                                            }
515                                  }                                  }
516    
517                                  if (vol_ver_id != 1 &&                                  if (vol_ver_id != 1 &&
# Line 446  Line 569 
569    
570    
571                                  if (vol_ver_id != 1) {                                  if (vol_ver_id != 1) {
                                         DEBUG("QUARTERPEL BITSTREAM");  
572                                          dec->quarterpel = BitstreamGetBit(bs);  // quarter_sample                                          dec->quarterpel = BitstreamGetBit(bs);  // quarter_sample
573                                            DPRINTF(DPRINTF_HEADER,"quarterpel %i", dec->quarterpel);
574                                  }                                  }
575                                  else                                  else
576                                          dec->quarterpel = 0;                                          dec->quarterpel = 0;
# Line 468  Line 591 
591                                  }                                  }
592    
593                                  if (vol_ver_id != 1) {                                  if (vol_ver_id != 1) {
594                                          if (BitstreamGetBit(bs))        // newpred_enable                                          dec->newpred_enable = BitstreamGetBit(bs);
595                                            if (dec->newpred_enable)        // newpred_enable
596                                          {                                          {
597                                                  DPRINTF(DPRINTF_HEADER, "+ newpred_enable");                                                  DPRINTF(DPRINTF_HEADER, "+ newpred_enable");
598                                                  BitstreamSkip(bs, 2);   // requested_upstream_message_type                                                  BitstreamSkip(bs, 2);   // requested_upstream_message_type
599                                                  BitstreamSkip(bs, 1);   // newpred_segment_type                                                  BitstreamSkip(bs, 1);   // newpred_segment_type
600                                          }                                          }
601                                          if (BitstreamGetBit(bs))        // reduced_resolution_vop_enable                                          dec->reduced_resolution_enable = BitstreamGetBit(bs);
602                                            if (dec->reduced_resolution_enable)     // reduced_resolution_vop_enable
603                                          {                                          {
604                                                  DPRINTF(DPRINTF_ERROR, "reduced_resolution_vop not supported");                                                  DPRINTF(DPRINTF_ERROR, "reduced_resolution_vop not supported");
605                                                  return -1;                                                  //return -1;
606                                            }
607                                          }                                          }
608                                    else
609                                    {
610                                            dec->newpred_enable = 0;
611                                            dec->reduced_resolution_enable = 0;
612                                  }                                  }
613    
614                                  if ((dec->scalability = BitstreamGetBit(bs)))   // scalability                                  if ((dec->scalability = BitstreamGetBit(bs)))   // scalability
# Line 499  Line 629 
629    
630                          }                          }
631    
632                            return (resize ? -3 : -2 );     /* VOL */
633    
634                  } else if (start_code == GRPOFVOP_START_CODE) {                  } else if (start_code == GRPOFVOP_START_CODE) {
635    
636                          DPRINTF(DPRINTF_STARTCODE, "<group_of_vop>");                          DPRINTF(DPRINTF_STARTCODE, "<group_of_vop>");
# Line 540  Line 672 
672                          DPRINTF(DPRINTF_HEADER, "time_increment %i", time_increment);                          DPRINTF(DPRINTF_HEADER, "time_increment %i", time_increment);
673    
674                          DPRINTF(DPRINTF_TIMECODE, "%c %i:%i",                          DPRINTF(DPRINTF_TIMECODE, "%c %i:%i",
675                                  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',
676                                  time_incr, time_increment);                                  time_incr, time_increment);
677    
678                          if (coding_type != B_VOP) {                          if (coding_type != B_VOP) {
# Line 548  Line 680 
680                                  dec->time_base += time_incr;                                  dec->time_base += time_incr;
681                                  dec->time = time_increment;                                  dec->time = time_increment;
682    
683  /*                                      dec->time_base * time_increment_resolution +  /*                                      dec->time_base * dec->time_inc_resolution +
684                                          time_increment;                                          time_increment;
685  */                              dec->time_pp = (uint32_t)  */                              dec->time_pp = (uint32_t)
686                                          (time_increment_resolution + dec->time - dec->last_non_b_time)%time_increment_resolution;                                          (dec->time_inc_resolution + dec->time - dec->last_non_b_time)%dec->time_inc_resolution;
687                                  dec->last_non_b_time = dec->time;                                  dec->last_non_b_time = dec->time;
688                          } else {                          } else {
689                                  dec->time = time_increment;                                  dec->time = time_increment;
690  /*  /*
691                                          (dec->last_time_base +                                          (dec->last_time_base +
692                                           time_incr) * time_increment_resolution + time_increment;                                           time_incr) * dec->time_inc_resolution + time_increment;
693  */  */
694                                  dec->time_bp = (uint32_t)                                  dec->time_bp = (uint32_t)
695                                          (time_increment_resolution + dec->last_non_b_time - dec->time)%time_increment_resolution;                                          (dec->time_inc_resolution + dec->last_non_b_time - dec->time)%dec->time_inc_resolution;
696                          }                          }
697    
698                          READ_MARKER();                          READ_MARKER();
# Line 571  Line 703 
703                                  return N_VOP;                                  return N_VOP;
704                          }                          }
705    
706                          /* if (newpred_enable)                          if (dec->newpred_enable)
707                            {
708                                    int vop_id;
709                                    int vop_id_for_prediction;
710    
711                                    vop_id = BitstreamGetBits(bs, MIN(dec->time_inc_bits + 3, 15));
712                                    DPRINTF(DPRINTF_HEADER, "vop_id %i", vop_id);
713                                    if (BitstreamGetBit(bs))        /* vop_id_for_prediction_indication */
714                             {                             {
715                                            vop_id_for_prediction = BitstreamGetBits(bs, MIN(dec->time_inc_bits + 3, 15));
716                                            DPRINTF(DPRINTF_HEADER, "vop_id_for_prediction %i", vop_id_for_prediction);
717                             }                             }
718                           */                                  READ_MARKER();
719                            }
720    
721    
722    
723                          // fix a little bug by MinChen <chenm002@163.com>                          // fix a little bug by MinChen <chenm002@163.com>
724                          if ((dec->shape != VIDOBJLAY_SHAPE_BINARY_ONLY) &&                          if ((dec->shape != VIDOBJLAY_SHAPE_BINARY_ONLY) &&
725                                  (coding_type == P_VOP)) {                                  ( (coding_type == P_VOP) || (coding_type == S_VOP && dec->sprite_enable == SPRITE_GMC) ) ) {
726                                  *rounding = BitstreamGetBit(bs);        // rounding_type                                  *rounding = BitstreamGetBit(bs);        // rounding_type
727                                  DPRINTF(DPRINTF_HEADER, "rounding %i", *rounding);                                  DPRINTF(DPRINTF_HEADER, "rounding %i", *rounding);
728                          }                          }
729    
730                          /* if (reduced_resolution_enable)                          if (dec->reduced_resolution_enable &&
731                                    dec->shape == VIDOBJLAY_SHAPE_RECTANGULAR &&
732                                    (coding_type == P_VOP || coding_type == I_VOP)) {
733    
734                                    *reduced_resolution = BitstreamGetBit(bs);
735                            }
736                            else
737                             {                             {
738                                    *reduced_resolution = 0;
739                             }                             }
                          */  
740    
741                          if (dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR) {                          if (dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR) {
742                                    if(!(dec->sprite_enable == SPRITE_STATIC && coding_type == I_VOP)) {
743    
744                                  uint32_t width, height;                                  uint32_t width, height;
745                                  uint32_t horiz_mc_ref, vert_mc_ref;                                  uint32_t horiz_mc_ref, vert_mc_ref;
746    
# Line 605  Line 757 
757                                  DPRINTF(DPRINTF_HEADER, "height %i", height);                                  DPRINTF(DPRINTF_HEADER, "height %i", height);
758                                  DPRINTF(DPRINTF_HEADER, "horiz_mc_ref %i", horiz_mc_ref);                                  DPRINTF(DPRINTF_HEADER, "horiz_mc_ref %i", horiz_mc_ref);
759                                  DPRINTF(DPRINTF_HEADER, "vert_mc_ref %i", vert_mc_ref);                                  DPRINTF(DPRINTF_HEADER, "vert_mc_ref %i", vert_mc_ref);
760                                    }
761    
762                                  BitstreamSkip(bs, 1);   // change_conv_ratio_disable                                  BitstreamSkip(bs, 1);   // change_conv_ratio_disable
763                                  if (BitstreamGetBit(bs))        // vop_constant_alpha                                  if (BitstreamGetBit(bs))        // vop_constant_alpha
# Line 613  Line 766 
766                                  }                                  }
767                          }                          }
768    
   
769                          if (dec->shape != VIDOBJLAY_SHAPE_BINARY_ONLY) {                          if (dec->shape != VIDOBJLAY_SHAPE_BINARY_ONLY) {
770                                  // intra_dc_vlc_threshold                                  // intra_dc_vlc_threshold
771                                  *intra_dc_threshold =                                  *intra_dc_threshold =
772                                          intra_dc_threshold_table[BitstreamGetBits(bs, 3)];                                          intra_dc_threshold_table[BitstreamGetBits(bs, 3)];
773    
774                                    dec->top_field_first = 0;
775                                    dec->alternate_vertical_scan = 0;
776    
777                                  if (dec->interlacing) {                                  if (dec->interlacing) {
778                                          dec->top_field_first = BitstreamGetBit(bs);                                          dec->top_field_first = BitstreamGetBit(bs);
779                                          DPRINTF(DPRINTF_HEADER, "interlace top_field_first %i", dec->top_field_first);                                          DPRINTF(DPRINTF_HEADER, "interlace top_field_first %i", dec->top_field_first);
# Line 628  Line 783 
783                                  }                                  }
784                          }                          }
785    
786                            if ((dec->sprite_enable == SPRITE_STATIC || dec->sprite_enable== SPRITE_GMC) && coding_type == S_VOP) {
787    
788                                    int i;
789    
790                                    for (i = 0 ; i < dec->sprite_warping_points; i++)
791                                    {
792                                            int length;
793                                            int x = 0, y = 0;
794    
795                                            /* sprite code borowed from ffmpeg; thx Michael Niedermayer <michaelni@gmx.at> */
796                                            length = bs_get_spritetrajectory(bs);
797                                            if(length){
798                                                    x= BitstreamGetBits(bs, length);
799                                                    if ((x >> (length - 1)) == 0) /* if MSB not set it is negative*/
800                                                            x = - (x ^ ((1 << length) - 1));
801                                            }
802                                            READ_MARKER();
803    
804                                            length = bs_get_spritetrajectory(bs);
805                                            if(length){
806                                                    y = BitstreamGetBits(bs, length);
807                                                    if ((y >> (length - 1)) == 0) /* if MSB not set it is negative*/
808                                                            y = - (y ^ ((1 << length) - 1));
809                                            }
810                                            READ_MARKER();
811    
812                                            gmc_mv[i].x = x;
813                                            gmc_mv[i].y = y;
814    
815                                            DPRINTF(DPRINTF_HEADER,"sprite_warping_point[%i] xy=(%i,%i)", i, x, y);
816                                    }
817    
818                                    if (dec->sprite_brightness_change)
819                                    {
820                                            // XXX: brightness_change_factor()
821                                    }
822                                    if (dec->sprite_enable == SPRITE_STATIC)
823                                    {
824                                            // XXX: todo
825                                    }
826    
827                            }
828    
829                          if ((*quant = BitstreamGetBits(bs, dec->quant_bits)) < 1)       // vop_quant                          if ((*quant = BitstreamGetBits(bs, dec->quant_bits)) < 1)       // vop_quant
830                                  *quant = 1;                                  *quant = 1;
   
831                          DPRINTF(DPRINTF_HEADER, "quant %i", *quant);                          DPRINTF(DPRINTF_HEADER, "quant %i", *quant);
832    
833                          if (coding_type != I_VOP) {                          if (coding_type != I_VOP) {
# Line 651  Line 848 
848                          return coding_type;                          return coding_type;
849    
850                  } else if (start_code == USERDATA_START_CODE) {                  } else if (start_code == USERDATA_START_CODE) {
851                            char tmp[256];
852                          DPRINTF(DPRINTF_STARTCODE, "<user_data>");                      int i;
853    
854                          BitstreamSkip(bs, 32);  // user_data_start_code                          BitstreamSkip(bs, 32);  // user_data_start_code
855    
856                            tmp[0] = BitstreamShowBits(bs, 8);
857    
858                            for(i = 1; i < 256; i++){
859                                    tmp[i] = (BitstreamShowBits(bs, 16) & 0xFF);
860    
861                                    if(tmp[i] == 0)
862                                            break;
863    
864                                    BitstreamSkip(bs, 8);
865                            }
866    
867                            DPRINTF(DPRINTF_STARTCODE, "<user_data>: %s\n", tmp);
868    
869                            if(strncmp(tmp, "DivX501b481p", 12) == 0) {
870                                    dec->packed_mode = 1;
871                                    DPRINTF(DPRINTF_STARTCODE, "packed_mode = %d\n", dec->packed_mode);
872    
873                            }
874                  } else                                  // start_code == ?                  } else                                  // start_code == ?
875                  {                  {
876                          if (BitstreamShowBits(bs, 24) == 0x000001) {                          if (BitstreamShowBits(bs, 24) == 0x000001) {
# Line 698  Line 913 
913  void  void
914  BitstreamWriteVolHeader(Bitstream * const bs,  BitstreamWriteVolHeader(Bitstream * const bs,
915                                                  const MBParam * pParam,                                                  const MBParam * pParam,
916                                                  const FRAMEINFO * frame)                                                  const FRAMEINFO * const frame)
917  {  {
918            int vol_ver_id=1;
919    
920            if ( (pParam->m_quarterpel) || (frame->global_flags & XVID_GMC) )
921                    vol_ver_id = 2;
922    
923          // video object_start_code & vo_id          // video object_start_code & vo_id
924          BitstreamPad(bs);          BitstreamPad(bs);
925          BitstreamPutBits(bs, VO_START_CODE, 27);          BitstreamPutBits(bs, VO_START_CODE, 27);
# Line 711  Line 931 
931    
932          BitstreamPutBit(bs, 0);         // random_accessible_vol          BitstreamPutBit(bs, 0);         // random_accessible_vol
933          BitstreamPutBits(bs, 0, 8);     // video_object_type_indication          BitstreamPutBits(bs, 0, 8);     // video_object_type_indication
934    
935            if (vol_ver_id == 1)
936            {
937          BitstreamPutBit(bs, 0);         // is_object_layer_identified (0=not given)          BitstreamPutBit(bs, 0);         // is_object_layer_identified (0=not given)
938            }
939            else
940            {
941                    BitstreamPutBit(bs, 1);         // is_object_layer_identified
942                    BitstreamPutBits(bs, vol_ver_id, 4);    // vol_ver_id == 2
943                    BitstreamPutBits(bs, 4, 3); // vol_ver_priority (1==lowest, 7==highest) ??
944            }
945    
946          BitstreamPutBits(bs, 1, 4);     // aspect_ratio_info (1=1:1)          BitstreamPutBits(bs, 1, 4);     // aspect_ratio_info (1=1:1)
947    
948          BitstreamPutBit(bs, 1); // vol_control_parameters          BitstreamPutBit(bs, 1); // vol_control_parameters
949          BitstreamPutBits(bs, 1, 2);     // chroma_format 1="4:2:0"          BitstreamPutBits(bs, 1, 2);     // chroma_format 1="4:2:0"
950    
 #ifdef BFRAMES  
951          if (pParam->max_bframes > 0) {          if (pParam->max_bframes > 0) {
952                  BitstreamPutBit(bs, 0); // low_delay                  BitstreamPutBit(bs, 0); // low_delay
953          } else          } else
 #endif  
954          {          {
955                  BitstreamPutBit(bs, 1); // low_delay                  BitstreamPutBit(bs, 1); // low_delay
956          }          }
# Line 731  Line 960 
960    
961          WRITE_MARKER();          WRITE_MARKER();
962    
963          /* time_increment_resolution; ignored by current decore versions          /* time_inc_resolution; ignored by current decore versions
964             eg. 2fps     res=2       inc=1             eg. 2fps     res=2       inc=1
965             25fps        res=25      inc=1             25fps        res=25      inc=1
966             29.97fps res=30000   inc=1001             29.97fps res=30000   inc=1001
967           */           */
 #ifdef BFRAMES  
         BitstreamPutBits(bs, pParam->fbase, 16);  
 #else  
968          BitstreamPutBits(bs, pParam->fbase, 16);          BitstreamPutBits(bs, pParam->fbase, 16);
 #endif  
969    
970          WRITE_MARKER();          WRITE_MARKER();
971    
 #ifdef BFRAMES  
         BitstreamPutBit(bs, 1);         // fixed_vop_rate = 1  
         BitstreamPutBits(bs, pParam->fincr, log2bin(pParam->fbase));    // fixed_vop_time_increment  
 #else  
972          BitstreamPutBit(bs, 1);         // fixed_vop_rate = 1          BitstreamPutBit(bs, 1);         // fixed_vop_rate = 1
973          BitstreamPutBits(bs, pParam->fincr, log2bin(pParam->fbase));    // fixed_vop_time_increment          BitstreamPutBits(bs, pParam->fincr, log2bin(pParam->fbase));    // fixed_vop_time_increment
 #endif  
974    
975          WRITE_MARKER();          WRITE_MARKER();
976          BitstreamPutBits(bs, pParam->width, 13);        // width          BitstreamPutBits(bs, pParam->width, 13);        // width
# Line 760  Line 980 
980    
981          BitstreamPutBit(bs, frame->global_flags & XVID_INTERLACING);    // interlace          BitstreamPutBit(bs, frame->global_flags & XVID_INTERLACING);    // interlace
982          BitstreamPutBit(bs, 1);         // obmc_disable (overlapped block motion compensation)          BitstreamPutBit(bs, 1);         // obmc_disable (overlapped block motion compensation)
983          BitstreamPutBit(bs, 0);         // sprite_enable  
984          BitstreamPutBit(bs, 0);         // not_in_bit          if (vol_ver_id != 1)
985            {       if (frame->global_flags & XVID_GMC)
986                    {       BitstreamPutBits(bs, 2, 2);             // sprite_enable=='GMC'
987                            BitstreamPutBits(bs, 2, 6);             // no_of_sprite_warping_points
988                            BitstreamPutBits(bs, 3, 2);             // sprite_warping_accuracy 0==1/2, 1=1/4, 2=1/8, 3=1/16
989                            BitstreamPutBit(bs, 0);                 // sprite_brightness_change (not supported)
990    
991    /* currently we use no_of_sprite_warping_points==2, sprite_warping_accuracy==3
992       for DivX5 compatability */
993    
994                    } else
995                            BitstreamPutBits(bs, 0, 2);             // sprite_enable==off
996            }
997            else
998                    BitstreamPutBit(bs, 0);         // sprite_enable==off
999    
1000            BitstreamPutBit(bs, 0);         // not_8_bit
1001    
1002          // quant_type   0=h.263  1=mpeg4(quantizer tables)          // quant_type   0=h.263  1=mpeg4(quantizer tables)
1003          BitstreamPutBit(bs, pParam->m_quant_type);          BitstreamPutBit(bs, pParam->m_quant_type);
# Line 779  Line 1015 
1015    
1016          }          }
1017    
1018            if (vol_ver_id != 1) {
1019                    if (pParam->m_quarterpel)
1020                            BitstreamPutBit(bs, 1);         //  quarterpel
1021                    else
1022                            BitstreamPutBit(bs, 0);         // no quarterpel
1023            }
1024    
1025          BitstreamPutBit(bs, 1);         // complexity_estimation_disable          BitstreamPutBit(bs, 1);         // complexity_estimation_disable
1026          BitstreamPutBit(bs, 1);         // resync_marker_disable          BitstreamPutBit(bs, 1);         // resync_marker_disable
1027          BitstreamPutBit(bs, 0);         // data_partitioned          BitstreamPutBit(bs, 0);         // data_partitioned
1028    
1029            if (vol_ver_id != 1)
1030            {
1031                    BitstreamPutBit(bs, 0);         // newpred_enable
1032                    BitstreamPutBit(bs, 0);         // reduced_resolution_vop_enabled
1033            }
1034    
1035          BitstreamPutBit(bs, 0);         // scalability          BitstreamPutBit(bs, 0);         // scalability
1036    
1037  }  }
1038    
1039    
1040  /*  /*
1041    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)  
1042  */  */
1043  void  void
1044  BitstreamWriteVopHeader(Bitstream * const bs,  BitstreamWriteVopHeader(Bitstream * const bs,
1045                                                  const MBParam * pParam,                                                  const MBParam * pParam,
1046                                                  const FRAMEINFO * frame,                                                  const FRAMEINFO * const frame,
1047                                                  int vop_coded)                                                  int vop_coded)
1048  {  {
1049          uint32_t i;          uint32_t i;
# Line 806  Line 1052 
1052          BitstreamPutBits(bs, VOP_START_CODE, 32);          BitstreamPutBits(bs, VOP_START_CODE, 32);
1053    
1054          BitstreamPutBits(bs, frame->coding_type, 2);          BitstreamPutBits(bs, frame->coding_type, 2);
1055            DPRINTF(DPRINTF_HEADER, "coding_type = %i", frame->coding_type);
1056    
         // time_base = 0  write n x PutBit(1), PutBit(0)  
 #ifdef BFRAMES  
         for (i = 0; i < frame->seconds; i++) {  
                 BitstreamPutBit(bs, 1);  
         }  
         BitstreamPutBit(bs, 0);  
 #else  
1057          for (i = 0; i < frame->seconds; i++) {          for (i = 0; i < frame->seconds; i++) {
1058                  BitstreamPutBit(bs, 1);                  BitstreamPutBit(bs, 1);
1059          }          }
1060          BitstreamPutBit(bs, 0);          BitstreamPutBit(bs, 0);
 //      BitstreamPutBits(bs, 0, 1);  
 #endif  
1061    
1062          WRITE_MARKER();          WRITE_MARKER();
1063    
1064          // time_increment: value=nth_of_sec, nbits = log2(resolution)          // time_increment: value=nth_of_sec, nbits = log2(resolution)
1065  #ifdef BFRAMES  
1066          BitstreamPutBits(bs, frame->ticks, log2bin(pParam->fbase));          BitstreamPutBits(bs, frame->ticks, log2bin(pParam->fbase));
1067          /*DPRINTF("[%i:%i] %c\n", frame->seconds, frame->ticks,          /*DPRINTF("[%i:%i] %c", frame->seconds, frame->ticks,
1068                          frame->coding_type == I_VOP ? 'I' : frame->coding_type ==                          frame->coding_type == I_VOP ? 'I' : frame->coding_type ==
1069                          P_VOP ? 'P' : 'B');*/                          P_VOP ? 'P' : 'B');*/
 #else  
         BitstreamPutBits(bs, frame->ticks, log2bin(pParam->fbase));  
 //      BitstreamPutBits(bs, 1, 1);  
 #endif  
1070    
1071          WRITE_MARKER();          WRITE_MARKER();
1072    
# Line 843  Line 1077 
1077    
1078          BitstreamPutBits(bs, 1, 1);     // vop_coded          BitstreamPutBits(bs, 1, 1);     // vop_coded
1079    
1080          if (frame->coding_type == P_VOP)          if ( (frame->coding_type == P_VOP) || (frame->coding_type == S_VOP) )
1081                  BitstreamPutBits(bs, frame->rounding_type, 1);                  BitstreamPutBits(bs, frame->rounding_type, 1);
1082    
1083          BitstreamPutBits(bs, 0, 3);     // intra_dc_vlc_threshold          BitstreamPutBits(bs, 0, 3);     // intra_dc_vlc_threshold
1084    
1085          if (frame->global_flags & XVID_INTERLACING) {          if (frame->global_flags & XVID_INTERLACING) {
1086                  BitstreamPutBit(bs, 1); // top field first                  BitstreamPutBit(bs, (frame->global_flags & XVID_TOPFIELDFIRST));
1087                  BitstreamPutBit(bs, 0); // alternate vertical scan                  BitstreamPutBit(bs, (frame->global_flags & XVID_ALTERNATESCAN));
1088            }
1089    
1090            if (frame->coding_type == S_VOP) {
1091                    if (1)  {               // no_of_sprite_warping_points>=1
1092                            if (pParam->m_quarterpel)
1093                                    bs_put_spritetrajectory(bs, frame->GMC_MV.x/2 ); // du[0]
1094                            else
1095                                    bs_put_spritetrajectory(bs, frame->GMC_MV.x ); // du[0]
1096                            WRITE_MARKER();
1097    
1098                            if (pParam->m_quarterpel)
1099                                    bs_put_spritetrajectory(bs, frame->GMC_MV.y/2 ); // dv[0]
1100                            else
1101                                    bs_put_spritetrajectory(bs, frame->GMC_MV.y ); // dv[0]
1102                            WRITE_MARKER();
1103    
1104    
1105                            if (pParam->m_quarterpel)
1106                            {
1107                                    DPRINTF(DPRINTF_HEADER,"sprite_warping_point[%i] xy=(%i,%i) *QPEL*", 0, frame->GMC_MV.x/2, frame->GMC_MV.y/2);
1108                            }
1109                            else
1110                            {
1111                                    DPRINTF(DPRINTF_HEADER,"sprite_warping_point[%i] xy=(%i,%i)", 0, frame->GMC_MV.x, frame->GMC_MV.y);
1112                            }
1113    
1114                    }
1115    /* GMC is halfpel in bitstream, even though GMC_MV was pseudo-qpel (2*halfpel) */
1116    
1117                    if (2) {                // no_of_sprite_warping_points>=2 (for DivX5 compat)
1118                            bs_put_spritetrajectory(bs, 0 );
1119                            WRITE_MARKER();
1120                            bs_put_spritetrajectory(bs, 0 );
1121                            WRITE_MARKER();
1122                    }
1123                    // no support for brightness_change!
1124          }          }
1125    
1126          BitstreamPutBits(bs, frame->quant, 5);  // quantizer          BitstreamPutBits(bs, frame->quant, 5);  // quantizer
# Line 863  Line 1133 
1133    
1134  }  }
1135    
   
1136  void  void
1137  BitstreamWriteUserData(Bitstream * const bs,  BitstreamWriteUserData(Bitstream * const bs,
1138                                                  uint8_t * data,                                                  uint8_t * data,

Legend:
Removed from v.1.28  
changed lines
  Added in v.1.28.2.6

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