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

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

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

revision 1031, Sat May 17 13:26:51 2003 UTC revision 1032, Sat May 17 13:37:49 2003 UTC
# Line 150  Line 150 
150          BitstreamSkip(bs, BitstreamNumBitsToByteAlign(bs));          BitstreamSkip(bs, BitstreamNumBitsToByteAlign(bs));
151          BitstreamSkip(bs, startcode_bits);          BitstreamSkip(bs, startcode_bits);
152    
153          DPRINTF(DPRINTF_STARTCODE, "<video_packet_header>");          DPRINTF(XVID_DEBUG_STARTCODE, "<video_packet_header>");
154    
155          if (dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR)          if (dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR)
156          {          {
# Line 169  Line 169 
169          }          }
170    
171          mbnum = BitstreamGetBits(bs, mbnum_bits);               /* macroblock_number */          mbnum = BitstreamGetBits(bs, mbnum_bits);               /* macroblock_number */
172          DPRINTF(DPRINTF_HEADER, "mbnum %i", mbnum);          DPRINTF(XVID_DEBUG_HEADER, "mbnum %i", mbnum);
173    
174          if (dec->shape != VIDOBJLAY_SHAPE_BINARY_ONLY)          if (dec->shape != VIDOBJLAY_SHAPE_BINARY_ONLY)
175          {          {
176                  *quant = BitstreamGetBits(bs, dec->quant_bits); /* quant_scale */                  *quant = BitstreamGetBits(bs, dec->quant_bits); /* quant_scale */
177                  DPRINTF(DPRINTF_HEADER, "quant %i", *quant);                  DPRINTF(XVID_DEBUG_HEADER, "quant %i", *quant);
178          }          }
179    
180          if (dec->shape == VIDOBJLAY_SHAPE_RECTANGULAR)          if (dec->shape == VIDOBJLAY_SHAPE_RECTANGULAR)
181                  hec = BitstreamGetBit(bs);              /* header_extension_code */                  hec = BitstreamGetBit(bs);              /* header_extension_code */
182    
183    
184          DPRINTF(DPRINTF_HEADER, "header_extension_code %i", hec);          DPRINTF(XVID_DEBUG_HEADER, "header_extension_code %i", hec);
185          if (hec)          if (hec)
186          {          {
187                  int time_base;                  int time_base;
# Line 193  Line 193 
193                  if (dec->time_inc_bits)                  if (dec->time_inc_bits)
194                          time_increment = (BitstreamGetBits(bs, dec->time_inc_bits));    /* vop_time_increment */                          time_increment = (BitstreamGetBits(bs, dec->time_inc_bits));    /* vop_time_increment */
195                  READ_MARKER();                  READ_MARKER();
196                  DPRINTF(DPRINTF_HEADER,"time %i:%i", time_base, time_increment);                  DPRINTF(XVID_DEBUG_HEADER,"time %i:%i", time_base, time_increment);
197    
198                  coding_type = BitstreamGetBits(bs, 2);                  coding_type = BitstreamGetBits(bs, 2);
199                  DPRINTF(DPRINTF_HEADER,"coding_type %i", coding_type);                  DPRINTF(XVID_DEBUG_HEADER,"coding_type %i", coding_type);
200    
201                  if (dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR)                  if (dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR)
202                  {                  {
# Line 224  Line 224 
224                          if (coding_type != I_VOP && fcode_forward)                          if (coding_type != I_VOP && fcode_forward)
225                          {                          {
226                                  *fcode_forward = BitstreamGetBits(bs, 3);                                  *fcode_forward = BitstreamGetBits(bs, 3);
227                                  DPRINTF(DPRINTF_HEADER,"fcode_forward %i", *fcode_forward);                                  DPRINTF(XVID_DEBUG_HEADER,"fcode_forward %i", *fcode_forward);
228                          }                          }
229    
230                          if (coding_type == B_VOP && fcode_backward)                          if (coding_type == B_VOP && fcode_backward)
231                          {                          {
232                                  *fcode_backward = BitstreamGetBits(bs, 3);                                  *fcode_backward = BitstreamGetBits(bs, 3);
233                                  DPRINTF(DPRINTF_HEADER,"fcode_backward %i", *fcode_backward);                                  DPRINTF(XVID_DEBUG_HEADER,"fcode_backward %i", *fcode_backward);
234                          }                          }
235                  }                  }
236    
# Line 242  Line 242 
242                  int vop_id_for_prediction;                  int vop_id_for_prediction;
243    
244                  vop_id = BitstreamGetBits(bs, MIN(dec->time_inc_bits + 3, 15));                  vop_id = BitstreamGetBits(bs, MIN(dec->time_inc_bits + 3, 15));
245                  DPRINTF(DPRINTF_HEADER, "vop_id %i", vop_id);                  DPRINTF(XVID_DEBUG_HEADER, "vop_id %i", vop_id);
246                  if (BitstreamGetBit(bs))        /* vop_id_for_prediction_indication */                  if (BitstreamGetBit(bs))        /* vop_id_for_prediction_indication */
247                  {                  {
248                          vop_id_for_prediction = BitstreamGetBits(bs, MIN(dec->time_inc_bits + 3, 15));                          vop_id_for_prediction = BitstreamGetBits(bs, MIN(dec->time_inc_bits + 3, 15));
249                          DPRINTF(DPRINTF_HEADER, "vop_id_for_prediction %i", vop_id_for_prediction);                          DPRINTF(XVID_DEBUG_HEADER, "vop_id_for_prediction %i", vop_id_for_prediction);
250                  }                  }
251                  READ_MARKER();                  READ_MARKER();
252          }          }
# Line 264  Line 264 
264          ESTIMATION * e = &dec->estimation;          ESTIMATION * e = &dec->estimation;
265    
266          e->method = BitstreamGetBits(bs, 2);    /* estimation_method */          e->method = BitstreamGetBits(bs, 2);    /* estimation_method */
267          DPRINTF(DPRINTF_HEADER,"+ complexity_estimation_header; method=%i", e->method);          DPRINTF(XVID_DEBUG_HEADER,"+ complexity_estimation_header; method=%i", e->method);
268    
269          if (e->method == 0 || e->method == 1)          if (e->method == 0 || e->method == 1)
270          {          {
# Line 450  Line 450 
450    
451                          int profile;                          int profile;
452    
453                          DPRINTF(DPRINTF_STARTCODE, "<visual_object_sequence>");                          DPRINTF(XVID_DEBUG_STARTCODE, "<visual_object_sequence>");
454    
455                          BitstreamSkip(bs, 32);  // visual_object_sequence_start_code                          BitstreamSkip(bs, 32);  // visual_object_sequence_start_code
456                          profile = BitstreamGetBits(bs, 8);      // profile_and_level_indication                          profile = BitstreamGetBits(bs, 8);      // profile_and_level_indication
457    
458                          DPRINTF(DPRINTF_HEADER, "profile_and_level_indication %i", profile);                          DPRINTF(XVID_DEBUG_HEADER, "profile_and_level_indication %i", profile);
459    
460                  } else if (start_code == VISOBJSEQ_STOP_CODE) {                  } else if (start_code == VISOBJSEQ_STOP_CODE) {
461    
462                          BitstreamSkip(bs, 32);  // visual_object_sequence_stop_code                          BitstreamSkip(bs, 32);  // visual_object_sequence_stop_code
463    
464                          DPRINTF(DPRINTF_STARTCODE, "</visual_object_sequence>");                          DPRINTF(XVID_DEBUG_STARTCODE, "</visual_object_sequence>");
465    
466                  } else if (start_code == VISOBJ_START_CODE) {                  } else if (start_code == VISOBJ_START_CODE) {
467                          int visobj_ver_id;                          int visobj_ver_id;
468    
469                          DPRINTF(DPRINTF_STARTCODE, "<visual_object>");                          DPRINTF(XVID_DEBUG_STARTCODE, "<visual_object>");
470    
471                          BitstreamSkip(bs, 32);  // visual_object_start_code                          BitstreamSkip(bs, 32);  // visual_object_start_code
472                          if (BitstreamGetBit(bs))        // is_visual_object_identified                          if (BitstreamGetBit(bs))        // is_visual_object_identified
473                          {                          {
474                                  visobj_ver_id = BitstreamGetBits(bs, 4);        // visual_object_ver_id                                  visobj_ver_id = BitstreamGetBits(bs, 4);        // visual_object_ver_id
475                                  DPRINTF(DPRINTF_HEADER,"visobj_ver_id %i", visobj_ver_id);                                  DPRINTF(XVID_DEBUG_HEADER,"visobj_ver_id %i", visobj_ver_id);
476                                  BitstreamSkip(bs, 3);   // visual_object_priority                                  BitstreamSkip(bs, 3);   // visual_object_priority
477                          } else {                          } else {
478                                  visobj_ver_id = 1;                                  visobj_ver_id = 1;
# Line 480  Line 480 
480    
481                          if (BitstreamShowBits(bs, 4) != VISOBJ_TYPE_VIDEO)      // visual_object_type                          if (BitstreamShowBits(bs, 4) != VISOBJ_TYPE_VIDEO)      // visual_object_type
482                          {                          {
483                                  DPRINTF(DPRINTF_ERROR, "visual_object_type != video");                                  DPRINTF(XVID_DEBUG_ERROR, "visual_object_type != video");
484                                  return -1;                                  return -1;
485                          }                          }
486                          BitstreamSkip(bs, 4);                          BitstreamSkip(bs, 4);
# Line 489  Line 489 
489    
490                          if (BitstreamGetBit(bs))        // video_signal_type                          if (BitstreamGetBit(bs))        // video_signal_type
491                          {                          {
492                                  DPRINTF(DPRINTF_HEADER,"+ video_signal_type");                                  DPRINTF(XVID_DEBUG_HEADER,"+ video_signal_type");
493                                  BitstreamSkip(bs, 3);   // video_format                                  BitstreamSkip(bs, 3);   // video_format
494                                  BitstreamSkip(bs, 1);   // video_range                                  BitstreamSkip(bs, 1);   // video_range
495                                  if (BitstreamGetBit(bs))        // color_description                                  if (BitstreamGetBit(bs))        // color_description
496                                  {                                  {
497                                          DPRINTF(DPRINTF_HEADER,"+ color_description");                                          DPRINTF(XVID_DEBUG_HEADER,"+ color_description");
498                                          BitstreamSkip(bs, 8);   // color_primaries                                          BitstreamSkip(bs, 8);   // color_primaries
499                                          BitstreamSkip(bs, 8);   // transfer_characteristics                                          BitstreamSkip(bs, 8);   // transfer_characteristics
500                                          BitstreamSkip(bs, 8);   // matrix_coefficients                                          BitstreamSkip(bs, 8);   // matrix_coefficients
# Line 502  Line 502 
502                          }                          }
503                  } else if ((start_code & ~VIDOBJ_START_CODE_MASK) == VIDOBJ_START_CODE) {                  } else if ((start_code & ~VIDOBJ_START_CODE_MASK) == VIDOBJ_START_CODE) {
504    
505                          DPRINTF(DPRINTF_STARTCODE, "<video_object>");                          DPRINTF(XVID_DEBUG_STARTCODE, "<video_object>");
506                          DPRINTF(DPRINTF_HEADER, "vo id %i", start_code & VIDOBJ_START_CODE_MASK);                          DPRINTF(XVID_DEBUG_HEADER, "vo id %i", start_code & VIDOBJ_START_CODE_MASK);
507    
508                          BitstreamSkip(bs, 32);  // video_object_start_code                          BitstreamSkip(bs, 32);  // video_object_start_code
509    
510                  } else if ((start_code & ~VIDOBJLAY_START_CODE_MASK) == VIDOBJLAY_START_CODE) {                  } else if ((start_code & ~VIDOBJLAY_START_CODE_MASK) == VIDOBJLAY_START_CODE) {
511    
512                          DPRINTF(DPRINTF_STARTCODE, "<video_object_layer>");                          DPRINTF(XVID_DEBUG_STARTCODE, "<video_object_layer>");
513                          DPRINTF(DPRINTF_HEADER, "vol id %i", start_code & VIDOBJLAY_START_CODE_MASK);                          DPRINTF(XVID_DEBUG_HEADER, "vol id %i", start_code & VIDOBJLAY_START_CODE_MASK);
514    
515                          BitstreamSkip(bs, 32);  // video_object_layer_start_code                          BitstreamSkip(bs, 32);  // video_object_layer_start_code
516                          BitstreamSkip(bs, 1);   // random_accessible_vol                          BitstreamSkip(bs, 1);   // random_accessible_vol
# Line 519  Line 519 
519    
520                          if (BitstreamGetBit(bs))        // is_object_layer_identifier                          if (BitstreamGetBit(bs))        // is_object_layer_identifier
521                          {                          {
522                                  DPRINTF(DPRINTF_HEADER, "+ is_object_layer_identifier");                                  DPRINTF(XVID_DEBUG_HEADER, "+ is_object_layer_identifier");
523                                  vol_ver_id = BitstreamGetBits(bs, 4);   // video_object_layer_verid                                  vol_ver_id = BitstreamGetBits(bs, 4);   // video_object_layer_verid
524                                  DPRINTF(DPRINTF_HEADER,"ver_id %i", vol_ver_id);                                  DPRINTF(XVID_DEBUG_HEADER,"ver_id %i", vol_ver_id);
525                                  BitstreamSkip(bs, 3);   // video_object_layer_priority                                  BitstreamSkip(bs, 3);   // video_object_layer_priority
526                          } else {                          } else {
527                                  vol_ver_id = 1;                                  vol_ver_id = 1;
# Line 531  Line 531 
531    
532                          if (dec->aspect_ratio == VIDOBJLAY_AR_EXTPAR)   // aspect_ratio_info                          if (dec->aspect_ratio == VIDOBJLAY_AR_EXTPAR)   // aspect_ratio_info
533                          {                          {
534                                  DPRINTF(DPRINTF_HEADER, "+ aspect_ratio_info");                                  DPRINTF(XVID_DEBUG_HEADER, "+ aspect_ratio_info");
535                                  dec->par_width = BitstreamGetBits(bs, 8);       // par_width                                  dec->par_width = BitstreamGetBits(bs, 8);       // par_width
536                                  dec->par_height = BitstreamGetBits(bs, 8);      // par_height                                  dec->par_height = BitstreamGetBits(bs, 8);      // par_height
537                          }                          }
538    
539                          if (BitstreamGetBit(bs))        // vol_control_parameters                          if (BitstreamGetBit(bs))        // vol_control_parameters
540                          {                          {
541                                  DPRINTF(DPRINTF_HEADER, "+ vol_control_parameters");                                  DPRINTF(XVID_DEBUG_HEADER, "+ vol_control_parameters");
542                                  BitstreamSkip(bs, 2);   // chroma_format                                  BitstreamSkip(bs, 2);   // chroma_format
543                                  dec->low_delay = BitstreamGetBit(bs);   // low_delay                                  dec->low_delay = BitstreamGetBit(bs);   // low_delay
544                                  DPRINTF(DPRINTF_HEADER, "low_delay %i", dec->low_delay);                                  DPRINTF(XVID_DEBUG_HEADER, "low_delay %i", dec->low_delay);
545                                  if (BitstreamGetBit(bs))        // vbv_parameters                                  if (BitstreamGetBit(bs))        // vbv_parameters
546                                  {                                  {
547                                          unsigned int bitrate;                                          unsigned int bitrate;
548                                          unsigned int buffer_size;                                          unsigned int buffer_size;
549                                          unsigned int occupancy;                                          unsigned int occupancy;
550    
551                                          DPRINTF(DPRINTF_HEADER,"+ vbv_parameters");                                          DPRINTF(XVID_DEBUG_HEADER,"+ vbv_parameters");
552    
553                                          bitrate = BitstreamGetBits(bs,15) << 15;        // first_half_bit_rate                                          bitrate = BitstreamGetBits(bs,15) << 15;        // first_half_bit_rate
554                                          READ_MARKER();                                          READ_MARKER();
# Line 564  Line 564 
564                                          occupancy |= BitstreamGetBits(bs, 15);  // latter_half_vbv_occupancy                                          occupancy |= BitstreamGetBits(bs, 15);  // latter_half_vbv_occupancy
565                                          READ_MARKER();                                          READ_MARKER();
566    
567                                          DPRINTF(DPRINTF_HEADER,"bitrate %d (unit=400 bps)", bitrate);                                          DPRINTF(XVID_DEBUG_HEADER,"bitrate %d (unit=400 bps)", bitrate);
568                                          DPRINTF(DPRINTF_HEADER,"buffer_size %d (unit=16384 bits)", buffer_size);                                          DPRINTF(XVID_DEBUG_HEADER,"buffer_size %d (unit=16384 bits)", buffer_size);
569                                          DPRINTF(DPRINTF_HEADER,"occupancy %d (unit=64 bits)", occupancy);                                          DPRINTF(XVID_DEBUG_HEADER,"occupancy %d (unit=64 bits)", occupancy);
570                                  }                                  }
571                          }else{                          }else{
572                                  dec->low_delay = dec->low_delay_default;                                  dec->low_delay = dec->low_delay_default;
# Line 574  Line 574 
574    
575                          dec->shape = BitstreamGetBits(bs, 2);   // video_object_layer_shape                          dec->shape = BitstreamGetBits(bs, 2);   // video_object_layer_shape
576    
577                          DPRINTF(DPRINTF_HEADER, "shape %i", dec->shape);                          DPRINTF(XVID_DEBUG_HEADER, "shape %i", dec->shape);
578                          if (dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR)                          if (dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR)
579                          {                          {
580                                  DPRINTF(DPRINTF_ERROR,"non-rectangular shapes are not supported");                                  DPRINTF(XVID_DEBUG_ERROR,"non-rectangular shapes are not supported");
581                          }                          }
582    
583                          if (dec->shape == VIDOBJLAY_SHAPE_GRAYSCALE && vol_ver_id != 1) {                          if (dec->shape == VIDOBJLAY_SHAPE_GRAYSCALE && vol_ver_id != 1) {
# Line 588  Line 588 
588    
589  // *************************** for decode B-frame time ***********************  // *************************** for decode B-frame time ***********************
590                          dec->time_inc_resolution = BitstreamGetBits(bs, 16);    // vop_time_increment_resolution                          dec->time_inc_resolution = BitstreamGetBits(bs, 16);    // vop_time_increment_resolution
591                          DPRINTF(DPRINTF_HEADER,"vop_time_increment_resolution %i", dec->time_inc_resolution);                          DPRINTF(XVID_DEBUG_HEADER,"vop_time_increment_resolution %i", dec->time_inc_resolution);
592    
593  //                      dec->time_inc_resolution--;  //                      dec->time_inc_resolution--;
594    
# Line 604  Line 604 
604    
605                          if (BitstreamGetBit(bs))        // fixed_vop_rate                          if (BitstreamGetBit(bs))        // fixed_vop_rate
606                          {                          {
607                                  DPRINTF(DPRINTF_HEADER, "+ fixed_vop_rate");                                  DPRINTF(XVID_DEBUG_HEADER, "+ fixed_vop_rate");
608                                  BitstreamSkip(bs, dec->time_inc_bits);  // fixed_vop_time_increment                                  BitstreamSkip(bs, dec->time_inc_bits);  // fixed_vop_time_increment
609                          }                          }
610    
# Line 619  Line 619 
619                                          height = BitstreamGetBits(bs, 13);      // video_object_layer_height                                          height = BitstreamGetBits(bs, 13);      // video_object_layer_height
620                                          READ_MARKER();                                          READ_MARKER();
621    
622                                          DPRINTF(DPRINTF_HEADER, "width %i", width);                                          DPRINTF(XVID_DEBUG_HEADER, "width %i", width);
623                                          DPRINTF(DPRINTF_HEADER, "height %i", height);                                          DPRINTF(XVID_DEBUG_HEADER, "height %i", height);
624    
625                                          if (dec->width != width || dec->height != height)                                          if (dec->width != width || dec->height != height)
626                                          {                                          {
627                                                  if (dec->fixed_dimensions)                                                  if (dec->fixed_dimensions)
628                                                  {                                                  {
629                                                          DPRINTF(DPRINTF_ERROR, "decoder width/height does not match bitstream");                                                          DPRINTF(XVID_DEBUG_ERROR, "decoder width/height does not match bitstream");
630                                                          return -1;                                                          return -1;
631                                                  }                                                  }
632                                                  resize = 1;                                                  resize = 1;
# Line 636  Line 636 
636                                  }                                  }
637    
638                                  dec->interlacing = BitstreamGetBit(bs);                                  dec->interlacing = BitstreamGetBit(bs);
639                                  DPRINTF(DPRINTF_HEADER, "interlacing %i", dec->interlacing);                                  DPRINTF(XVID_DEBUG_HEADER, "interlacing %i", dec->interlacing);
640    
641                                  if (!BitstreamGetBit(bs))       // obmc_disable                                  if (!BitstreamGetBit(bs))       // obmc_disable
642                                  {                                  {
643                                          DPRINTF(DPRINTF_ERROR, "obmc_disabled==false not supported");                                          DPRINTF(XVID_DEBUG_ERROR, "obmc_disabled==false not supported");
644                                          // TODO                                          // TODO
645                                          // fucking divx4.02 has this enabled                                          // fucking divx4.02 has this enabled
646                                  }                                  }
# Line 682  Line 682 
682    
683                                  if (BitstreamGetBit(bs))        // not_8_bit                                  if (BitstreamGetBit(bs))        // not_8_bit
684                                  {                                  {
685                                          DPRINTF(DPRINTF_HEADER, "not_8_bit==true (ignored)");                                          DPRINTF(XVID_DEBUG_HEADER, "not_8_bit==true (ignored)");
686                                          dec->quant_bits = BitstreamGetBits(bs, 4);      // quant_precision                                          dec->quant_bits = BitstreamGetBits(bs, 4);      // quant_precision
687                                          BitstreamSkip(bs, 4);   // bits_per_pixel                                          BitstreamSkip(bs, 4);   // bits_per_pixel
688                                  } else {                                  } else {
# Line 696  Line 696 
696                                  }                                  }
697    
698                                  dec->quant_type = BitstreamGetBit(bs);  // quant_type                                  dec->quant_type = BitstreamGetBit(bs);  // quant_type
699                                  DPRINTF(DPRINTF_HEADER, "quant_type %i", dec->quant_type);                                  DPRINTF(XVID_DEBUG_HEADER, "quant_type %i", dec->quant_type);
700    
701                                  if (dec->quant_type) {                                  if (dec->quant_type) {
702                                          if (BitstreamGetBit(bs))        // load_intra_quant_mat                                          if (BitstreamGetBit(bs))        // load_intra_quant_mat
703                                          {                                          {
704                                                  uint8_t matrix[64];                                                  uint8_t matrix[64];
705    
706                                                  DPRINTF(DPRINTF_HEADER, "load_intra_quant_mat");                                                  DPRINTF(XVID_DEBUG_HEADER, "load_intra_quant_mat");
707    
708                                                  bs_get_matrix(bs, matrix);                                                  bs_get_matrix(bs, matrix);
709                                                  set_intra_matrix(matrix);                                                  set_intra_matrix(matrix);
# Line 714  Line 714 
714                                          {                                          {
715                                                  uint8_t matrix[64];                                                  uint8_t matrix[64];
716    
717                                                  DPRINTF(DPRINTF_HEADER, "load_inter_quant_mat");                                                  DPRINTF(XVID_DEBUG_HEADER, "load_inter_quant_mat");
718    
719                                                  bs_get_matrix(bs, matrix);                                                  bs_get_matrix(bs, matrix);
720                                                  set_inter_matrix(matrix);                                                  set_inter_matrix(matrix);
# Line 722  Line 722 
722                                                  set_inter_matrix(get_default_inter_matrix());                                                  set_inter_matrix(get_default_inter_matrix());
723    
724                                          if (dec->shape == VIDOBJLAY_SHAPE_GRAYSCALE) {                                          if (dec->shape == VIDOBJLAY_SHAPE_GRAYSCALE) {
725                                                  DPRINTF(DPRINTF_ERROR, "greyscale matrix not supported");                                                  DPRINTF(XVID_DEBUG_ERROR, "greyscale matrix not supported");
726                                                  return -1;                                                  return -1;
727                                          }                                          }
728    
# Line 731  Line 731 
731    
732                                  if (vol_ver_id != 1) {                                  if (vol_ver_id != 1) {
733                                          dec->quarterpel = BitstreamGetBit(bs);  // quarter_sample                                          dec->quarterpel = BitstreamGetBit(bs);  // quarter_sample
734                                          DPRINTF(DPRINTF_HEADER,"quarterpel %i", dec->quarterpel);                                          DPRINTF(XVID_DEBUG_HEADER,"quarterpel %i", dec->quarterpel);
735                                  }                                  }
736                                  else                                  else
737                                          dec->quarterpel = 0;                                          dec->quarterpel = 0;
# Line 747  Line 747 
747    
748                                  if (BitstreamGetBit(bs))        // data_partitioned                                  if (BitstreamGetBit(bs))        // data_partitioned
749                                  {                                  {
750                                          DPRINTF(DPRINTF_ERROR, "data_partitioned not supported");                                          DPRINTF(XVID_DEBUG_ERROR, "data_partitioned not supported");
751                                          BitstreamSkip(bs, 1);   // reversible_vlc                                          BitstreamSkip(bs, 1);   // reversible_vlc
752                                  }                                  }
753    
# Line 755  Line 755 
755                                          dec->newpred_enable = BitstreamGetBit(bs);                                          dec->newpred_enable = BitstreamGetBit(bs);
756                                          if (dec->newpred_enable)        // newpred_enable                                          if (dec->newpred_enable)        // newpred_enable
757                                          {                                          {
758                                                  DPRINTF(DPRINTF_HEADER, "+ newpred_enable");                                                  DPRINTF(XVID_DEBUG_HEADER, "+ newpred_enable");
759                                                  BitstreamSkip(bs, 2);   // requested_upstream_message_type                                                  BitstreamSkip(bs, 2);   // requested_upstream_message_type
760                                                  BitstreamSkip(bs, 1);   // newpred_segment_type                                                  BitstreamSkip(bs, 1);   // newpred_segment_type
761                                          }                                          }
762                                          dec->reduced_resolution_enable = BitstreamGetBit(bs);   /* reduced_resolution_vop_enable */                                          dec->reduced_resolution_enable = BitstreamGetBit(bs);   /* reduced_resolution_vop_enable */
763                                          DPRINTF(DPRINTF_HEADER, "reduced_resolution_enable %i", dec->reduced_resolution_enable);                                          DPRINTF(XVID_DEBUG_HEADER, "reduced_resolution_enable %i", dec->reduced_resolution_enable);
764                                  }                                  }
765                                  else                                  else
766                                  {                                  {
# Line 771  Line 771 
771                                  dec->scalability = BitstreamGetBit(bs); /* scalability */                                  dec->scalability = BitstreamGetBit(bs); /* scalability */
772                                  if (dec->scalability)                                  if (dec->scalability)
773                                  {                                  {
774                                          DPRINTF(DPRINTF_ERROR, "scalability not supported");                                          DPRINTF(XVID_DEBUG_ERROR, "scalability not supported");
775                                          BitstreamSkip(bs, 1);   /* hierarchy_type */                                          BitstreamSkip(bs, 1);   /* hierarchy_type */
776                                          BitstreamSkip(bs, 4);   /* ref_layer_id */                                          BitstreamSkip(bs, 4);   /* ref_layer_id */
777                                          BitstreamSkip(bs, 1);   /* ref_layer_sampling_direc */                                          BitstreamSkip(bs, 1);   /* ref_layer_sampling_direc */
# Line 796  Line 796 
796                                          dec->scalability = BitstreamGetBit(bs); /* scalability */                                          dec->scalability = BitstreamGetBit(bs); /* scalability */
797                                          if (dec->scalability)                                          if (dec->scalability)
798                                          {                                          {
799                                                  DPRINTF(DPRINTF_ERROR, "scalability not supported");                                                  DPRINTF(XVID_DEBUG_ERROR, "scalability not supported");
800                                                  BitstreamSkip(bs, 4);   /* ref_layer_id */                                                  BitstreamSkip(bs, 4);   /* ref_layer_id */
801                                                  BitstreamSkip(bs, 5);   /* hor_sampling_factor_n */                                                  BitstreamSkip(bs, 5);   /* hor_sampling_factor_n */
802                                                  BitstreamSkip(bs, 5);   /* hor_sampling_factor_m */                                                  BitstreamSkip(bs, 5);   /* hor_sampling_factor_m */
# Line 813  Line 813 
813    
814                  } else if (start_code == GRPOFVOP_START_CODE) {                  } else if (start_code == GRPOFVOP_START_CODE) {
815    
816                          DPRINTF(DPRINTF_STARTCODE, "<group_of_vop>");                          DPRINTF(XVID_DEBUG_STARTCODE, "<group_of_vop>");
817    
818                          BitstreamSkip(bs, 32);                          BitstreamSkip(bs, 32);
819                          {                          {
# Line 824  Line 824 
824                                  READ_MARKER();                                  READ_MARKER();
825                                  seconds = BitstreamGetBits(bs, 6);                                  seconds = BitstreamGetBits(bs, 6);
826    
827                                  DPRINTF(DPRINTF_HEADER, "time %ih%im%is", hours,minutes,seconds);                                  DPRINTF(XVID_DEBUG_HEADER, "time %ih%im%is", hours,minutes,seconds);
828                          }                          }
829                          BitstreamSkip(bs, 1);   // closed_gov                          BitstreamSkip(bs, 1);   // closed_gov
830                          BitstreamSkip(bs, 1);   // broken_link                          BitstreamSkip(bs, 1);   // broken_link
831    
832                  } else if (start_code == VOP_START_CODE) {                  } else if (start_code == VOP_START_CODE) {
833    
834                          DPRINTF(DPRINTF_STARTCODE, "<vop>");                          DPRINTF(XVID_DEBUG_STARTCODE, "<vop>");
835    
836                          BitstreamSkip(bs, 32);  // vop_start_code                          BitstreamSkip(bs, 32);  // vop_start_code
837    
838                          coding_type = BitstreamGetBits(bs, 2);  // vop_coding_type                          coding_type = BitstreamGetBits(bs, 2);  // vop_coding_type
839                          DPRINTF(DPRINTF_HEADER, "coding_type %i", coding_type);                          DPRINTF(XVID_DEBUG_HEADER, "coding_type %i", coding_type);
840    
841  // *************************** for decode B-frame time ***********************  // *************************** for decode B-frame time ***********************
842                          while (BitstreamGetBit(bs) != 0)        // time_base                          while (BitstreamGetBit(bs) != 0)        // time_base
# Line 848  Line 848 
848                                  time_increment = (BitstreamGetBits(bs, dec->time_inc_bits));    // vop_time_increment                                  time_increment = (BitstreamGetBits(bs, dec->time_inc_bits));    // vop_time_increment
849                          }                          }
850    
851                          DPRINTF(DPRINTF_HEADER, "time_base %i", time_incr);                          DPRINTF(XVID_DEBUG_HEADER, "time_base %i", time_incr);
852                          DPRINTF(DPRINTF_HEADER, "time_increment %i", time_increment);                          DPRINTF(XVID_DEBUG_HEADER, "time_increment %i", time_increment);
853    
854                          DPRINTF(DPRINTF_TIMECODE, "%c %i:%i",                          DPRINTF(XVID_DEBUG_TIMECODE, "%c %i:%i",
855                                  coding_type == I_VOP ? 'I' : coding_type == P_VOP ? 'P' : coding_type == B_VOP ? 'B' : 'S',                                  coding_type == I_VOP ? 'I' : coding_type == P_VOP ? 'P' : coding_type == B_VOP ? 'B' : 'S',
856                                  time_incr, time_increment);                                  time_incr, time_increment);
857    
# Line 874  Line 874 
874                                  dec->time_bp = (uint32_t)                                  dec->time_bp = (uint32_t)
875                                          (dec->time_inc_resolution + dec->last_non_b_time - dec->time)%dec->time_inc_resolution;                                          (dec->time_inc_resolution + dec->last_non_b_time - dec->time)%dec->time_inc_resolution;
876                          }                          }
877                          DPRINTF(DPRINTF_HEADER,"time_pp=%i", dec->time_pp);                          DPRINTF(XVID_DEBUG_HEADER,"time_pp=%i", dec->time_pp);
878                          DPRINTF(DPRINTF_HEADER,"time_bp=%i", dec->time_bp);                          DPRINTF(XVID_DEBUG_HEADER,"time_bp=%i", dec->time_bp);
879    
880                          READ_MARKER();                          READ_MARKER();
881    
882                          if (!BitstreamGetBit(bs))       // vop_coded                          if (!BitstreamGetBit(bs))       // vop_coded
883                          {                          {
884                                  DPRINTF(DPRINTF_HEADER, "vop_coded==false");                                  DPRINTF(XVID_DEBUG_HEADER, "vop_coded==false");
885                                  return N_VOP;                                  return N_VOP;
886                          }                          }
887    
# Line 891  Line 891 
891                                  int vop_id_for_prediction;                                  int vop_id_for_prediction;
892    
893                                  vop_id = BitstreamGetBits(bs, MIN(dec->time_inc_bits + 3, 15));                                  vop_id = BitstreamGetBits(bs, MIN(dec->time_inc_bits + 3, 15));
894                                  DPRINTF(DPRINTF_HEADER, "vop_id %i", vop_id);                                  DPRINTF(XVID_DEBUG_HEADER, "vop_id %i", vop_id);
895                                  if (BitstreamGetBit(bs))        /* vop_id_for_prediction_indication */                                  if (BitstreamGetBit(bs))        /* vop_id_for_prediction_indication */
896                                  {                                  {
897                                          vop_id_for_prediction = BitstreamGetBits(bs, MIN(dec->time_inc_bits + 3, 15));                                          vop_id_for_prediction = BitstreamGetBits(bs, MIN(dec->time_inc_bits + 3, 15));
898                                          DPRINTF(DPRINTF_HEADER, "vop_id_for_prediction %i", vop_id_for_prediction);                                          DPRINTF(XVID_DEBUG_HEADER, "vop_id_for_prediction %i", vop_id_for_prediction);
899                                  }                                  }
900                                  READ_MARKER();                                  READ_MARKER();
901                          }                          }
# Line 906  Line 906 
906                          if ((dec->shape != VIDOBJLAY_SHAPE_BINARY_ONLY) &&                          if ((dec->shape != VIDOBJLAY_SHAPE_BINARY_ONLY) &&
907                                  ( (coding_type == P_VOP) || (coding_type == S_VOP && dec->sprite_enable == SPRITE_GMC) ) ) {                                  ( (coding_type == P_VOP) || (coding_type == S_VOP && dec->sprite_enable == SPRITE_GMC) ) ) {
908                                  *rounding = BitstreamGetBit(bs);        // rounding_type                                  *rounding = BitstreamGetBit(bs);        // rounding_type
909                                  DPRINTF(DPRINTF_HEADER, "rounding %i", *rounding);                                  DPRINTF(XVID_DEBUG_HEADER, "rounding %i", *rounding);
910                          }                          }
911    
912                          if (dec->reduced_resolution_enable &&                          if (dec->reduced_resolution_enable &&
# Line 914  Line 914 
914                                  (coding_type == P_VOP || coding_type == I_VOP)) {                                  (coding_type == P_VOP || coding_type == I_VOP)) {
915    
916                                  *reduced_resolution = BitstreamGetBit(bs);                                  *reduced_resolution = BitstreamGetBit(bs);
917                                  DPRINTF(DPRINTF_HEADER, "reduced_resolution %i", *reduced_resolution);                                  DPRINTF(XVID_DEBUG_HEADER, "reduced_resolution %i", *reduced_resolution);
918                          }                          }
919                          else                          else
920                          {                          {
# Line 936  Line 936 
936                                          vert_mc_ref = BitstreamGetBits(bs, 13);                                          vert_mc_ref = BitstreamGetBits(bs, 13);
937                                          READ_MARKER();                                          READ_MARKER();
938    
939                                          DPRINTF(DPRINTF_HEADER, "width %i", width);                                          DPRINTF(XVID_DEBUG_HEADER, "width %i", width);
940                                          DPRINTF(DPRINTF_HEADER, "height %i", height);                                          DPRINTF(XVID_DEBUG_HEADER, "height %i", height);
941                                          DPRINTF(DPRINTF_HEADER, "horiz_mc_ref %i", horiz_mc_ref);                                          DPRINTF(XVID_DEBUG_HEADER, "horiz_mc_ref %i", horiz_mc_ref);
942                                          DPRINTF(DPRINTF_HEADER, "vert_mc_ref %i", vert_mc_ref);                                          DPRINTF(XVID_DEBUG_HEADER, "vert_mc_ref %i", vert_mc_ref);
943                                  }                                  }
944    
945                                  BitstreamSkip(bs, 1);   // change_conv_ratio_disable                                  BitstreamSkip(bs, 1);   // change_conv_ratio_disable
# Line 965  Line 965 
965    
966                                  if (dec->interlacing) {                                  if (dec->interlacing) {
967                                          dec->top_field_first = BitstreamGetBit(bs);                                          dec->top_field_first = BitstreamGetBit(bs);
968                                          DPRINTF(DPRINTF_HEADER, "interlace top_field_first %i", dec->top_field_first);                                          DPRINTF(XVID_DEBUG_HEADER, "interlace top_field_first %i", dec->top_field_first);
969                                          dec->alternate_vertical_scan = BitstreamGetBit(bs);                                          dec->alternate_vertical_scan = BitstreamGetBit(bs);
970                                          DPRINTF(DPRINTF_HEADER, "interlace alternate_vertical_scan %i", dec->alternate_vertical_scan);                                          DPRINTF(XVID_DEBUG_HEADER, "interlace alternate_vertical_scan %i", dec->alternate_vertical_scan);
971    
972                                  }                                  }
973                          }                          }
# Line 1001  Line 1001 
1001                                          gmc_warp->duv[i].x = x;                                          gmc_warp->duv[i].x = x;
1002                                          gmc_warp->duv[i].y = y;                                          gmc_warp->duv[i].y = y;
1003    
1004                                          DPRINTF(DPRINTF_HEADER,"sprite_warping_point[%i] xy=(%i,%i)", i, x, y);                                          DPRINTF(XVID_DEBUG_HEADER,"sprite_warping_point[%i] xy=(%i,%i)", i, x, y);
1005                                  }                                  }
1006    
1007                                  if (dec->sprite_brightness_change)                                  if (dec->sprite_brightness_change)
# Line 1017  Line 1017 
1017    
1018                          if ((*quant = BitstreamGetBits(bs, dec->quant_bits)) < 1)       // vop_quant                          if ((*quant = BitstreamGetBits(bs, dec->quant_bits)) < 1)       // vop_quant
1019                                  *quant = 1;                                  *quant = 1;
1020                          DPRINTF(DPRINTF_HEADER, "quant %i", *quant);                          DPRINTF(XVID_DEBUG_HEADER, "quant %i", *quant);
1021    
1022                          if (coding_type != I_VOP) {                          if (coding_type != I_VOP) {
1023                                  *fcode_forward = BitstreamGetBits(bs, 3);       // fcode_forward                                  *fcode_forward = BitstreamGetBits(bs, 3);       // fcode_forward
1024                                  DPRINTF(DPRINTF_HEADER, "fcode_forward %i", *fcode_forward);                                  DPRINTF(XVID_DEBUG_HEADER, "fcode_forward %i", *fcode_forward);
1025                          }                          }
1026    
1027                          if (coding_type == B_VOP) {                          if (coding_type == B_VOP) {
1028                                  *fcode_backward = BitstreamGetBits(bs, 3);      // fcode_backward                                  *fcode_backward = BitstreamGetBits(bs, 3);      // fcode_backward
1029                                  DPRINTF(DPRINTF_HEADER, "fcode_backward %i", *fcode_backward);                                  DPRINTF(XVID_DEBUG_HEADER, "fcode_backward %i", *fcode_backward);
1030                          }                          }
1031                          if (!dec->scalability) {                          if (!dec->scalability) {
1032                                  if ((dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR) &&                                  if ((dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR) &&
# Line 1054  Line 1054 
1054                                  BitstreamSkip(bs, 8);                                  BitstreamSkip(bs, 8);
1055                          }                          }
1056    
1057                          DPRINTF(DPRINTF_STARTCODE, "<user_data>: %s", tmp);                          DPRINTF(XVID_DEBUG_STARTCODE, "<user_data>: %s", tmp);
1058    
1059                      /* divx detection */                      /* divx detection */
1060                          i = sscanf(tmp, "DivX%dBuild%d%c", &version, &build, &packed);                          i = sscanf(tmp, "DivX%dBuild%d%c", &version, &build, &packed);
# Line 1064  Line 1064 
1064                          if (i >= 2)                          if (i >= 2)
1065                          {                          {
1066                                  dec->packed_mode = (i == 3 && packed == 'p');                                  dec->packed_mode = (i == 3 && packed == 'p');
1067                                  DPRINTF(DPRINTF_HEADER, "divx version=%i, build=%i packed=%i",                                  DPRINTF(XVID_DEBUG_HEADER, "divx version=%i, build=%i packed=%i",
1068                                                  version, build, dec->packed_mode);                                                  version, build, dec->packed_mode);
1069                          }                          }
1070    
1071                  } else                                  // start_code == ?                  } else                                  // start_code == ?
1072                  {                  {
1073                          if (BitstreamShowBits(bs, 24) == 0x000001) {                          if (BitstreamShowBits(bs, 24) == 0x000001) {
1074                                  DPRINTF(DPRINTF_STARTCODE, "<unknown: %x>", BitstreamShowBits(bs, 32));                                  DPRINTF(XVID_DEBUG_STARTCODE, "<unknown: %x>", BitstreamShowBits(bs, 32));
1075                          }                          }
1076                          BitstreamSkip(bs, 8);                          BitstreamSkip(bs, 8);
1077                  }                  }
# Line 1296  Line 1296 
1296          BitstreamPutBits(bs, VOP_START_CODE, 32);          BitstreamPutBits(bs, VOP_START_CODE, 32);
1297    
1298          BitstreamPutBits(bs, frame->coding_type, 2);          BitstreamPutBits(bs, frame->coding_type, 2);
1299          DPRINTF(DPRINTF_HEADER, "coding_type = %i", frame->coding_type);          //DPRINTF(XVID_DEBUG_HEADER, "coding_type = %i", frame->coding_type);
1300    
1301          for (i = 0; i < frame->seconds; i++) {          for (i = 0; i < frame->seconds; i++) {
1302                  BitstreamPutBit(bs, 1);                  BitstreamPutBit(bs, 1);
# Line 1347  Line 1347 
1347    
1348                          if ((frame->vol_flags & XVID_VOL_QUARTERPEL))                          if ((frame->vol_flags & XVID_VOL_QUARTERPEL))
1349                          {                          {
1350                                  DPRINTF(DPRINTF_HEADER,"sprite_warping_point[%i] xy=(%i,%i) *QPEL*", k, frame->warp.duv[k].x/2, frame->warp.duv[k].y/2);                                  DPRINTF(XVID_DEBUG_HEADER,"sprite_warping_point[%i] xy=(%i,%i) *QPEL*", k, frame->warp.duv[k].x/2, frame->warp.duv[k].y/2);
1351                          }                          }
1352                          else                          else
1353                          {                          {
1354                                  DPRINTF(DPRINTF_HEADER,"sprite_warping_point[%i] xy=(%i,%i)", k, frame->warp.duv[k].x, frame->warp.duv[k].y);                                  DPRINTF(XVID_DEBUG_HEADER,"sprite_warping_point[%i] xy=(%i,%i)", k, frame->warp.duv[k].x, frame->warp.duv[k].y);
1355                          }                          }
1356                          }                          }
1357                  }                  }
1358          }          }
1359    
1360    
1361          DPRINTF(DPRINTF_HEADER, "quant = %i", frame->quant);          //DPRINTF(XVID_DEBUG_HEADER, "quant = %i", frame->quant);
1362    
1363          BitstreamPutBits(bs, frame->quant, 5);  // quantizer          BitstreamPutBits(bs, frame->quant, 5);  // quantizer
1364    

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

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