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

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

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

revision 619, Sat Nov 2 15:52:31 2002 UTC revision 645, Tue Nov 12 15:53:47 2002 UTC
# Line 66  Line 66 
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"
# Line 131  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 183  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 269  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 288  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 315  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 329  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 365  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 388  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 449  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 471  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
615                                  {                                  {
# Line 502  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 543  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 551  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 574  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 == S_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 608  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 616  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 =
# Line 634  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 657  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 751  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
# Line 843  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    
1057          for (i = 0; i < frame->seconds; i++) {          for (i = 0; i < frame->seconds; i++) {
1058                  BitstreamPutBit(bs, 1);                  BitstreamPutBit(bs, 1);
# Line 854  Line 1064 
1064          // time_increment: value=nth_of_sec, nbits = log2(resolution)          // time_increment: value=nth_of_sec, nbits = log2(resolution)
1065    
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');*/
1070    
# Line 890  Line 1100 
1100                          else                          else
1101                                  bs_put_spritetrajectory(bs, frame->GMC_MV.y ); // dv[0]                                  bs_put_spritetrajectory(bs, frame->GMC_MV.y ); // dv[0]
1102                          WRITE_MARKER();                          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) */  /* GMC is halfpel in bitstream, even though GMC_MV was pseudo-qpel (2*halfpel) */
1116    

Legend:
Removed from v.619  
changed lines
  Added in v.645

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