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

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

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

revision 1.39, Wed Feb 19 21:59:30 2003 UTC revision 1.39.2.12, Mon Jun 9 19:42:18 2003 UTC
# Line 1  Line 1 
1   /******************************************************************************  /*****************************************************************************
2    *                                                                            *   *
3    *  This file is part of XviD, a free MPEG-4 video encoder/decoder            *   *  XVID MPEG-4 VIDEO CODEC
4    *                                                                            *   *  - Bitstream reader/writer -
5    *  XviD is an implementation of a part of one or more MPEG-4 Video tools     *   *
6    *  as specified in ISO/IEC 14496-2 standard.  Those intending to use this    *   *  Copyright (C) 2001-2003 Peter Ross <pross@xvid.org>
7    *  software module in hardware or software products are advised that its     *   *                     2003 Cristoph Lampert <gruel@web.de>
8    *  use may infringe existing patents or copyrights, and any such use         *   *
9    *  would be at such party's own risk.  The original developer of this        *   *  This program is free software ; you can redistribute it and/or modify
10    *  software module and his/her company, and subsequent editors and their     *   *  it under the terms of the GNU General Public License as published by
11    *  companies, will have no liability for use of this software or             *   *  the Free Software Foundation ; either version 2 of the License, or
12    *  modifications or derivatives thereof.                                     *   *  (at your option) any later version.
13    *                                                                            *   *
14    *  XviD is free software; you can redistribute it and/or modify it           *   *  This program is distributed in the hope that it will be useful,
15    *  under the terms of the GNU General Public License as published by         *   *  but WITHOUT ANY WARRANTY ; without even the implied warranty of
16    *  the Free Software Foundation; either version 2 of the License, or         *   *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17    *  (at your option) any later version.                                       *   *  GNU General Public License for more details.
18    *                                                                            *   *
19    *  XviD is distributed in the hope that it will be useful, but               *   *  You should have received a copy of the GNU General Public License
20    *  WITHOUT ANY WARRANTY; without even the implied warranty of                *   *  along with this program ; if not, write to the Free Software
21    *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the             *   *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
22    *  GNU General Public License for more details.                              *   *
23    *                                                                            *   * $Id$
24    *  You should have received a copy of the GNU General Public License         *   *
25    *  along with this program; if not, write to the Free Software               *   ****************************************************************************/
   *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA  *  
   *                                                                            *  
   ******************************************************************************/  
   
  /******************************************************************************  
   *                                                                            *  
   *  bitstream.c                                                               *  
   *                                                                            *  
   *  Copyright (C) 2001 - Peter Ross <pross@cs.rmit.edu.au>                    *  
   *                                                                            *  
   *  For more information visit the XviD homepage: http://www.xvid.org         *  
   *                                                                            *  
   ******************************************************************************/  
   
  /******************************************************************************  
   *                                                                            *  
   *  Revision history:                                                         *  
   *                                                                            *  
   *  05.01.2003 GMC support - gruel                                            *  
   *  04.10.2002 qpel support - Isibaar                                         *  
   *  11.07.2002 add VOP width & height return to dec when dec->width           *  
   *             or dec->height is 0  (for use in examples/ex1.c)               *  
   *             MinChen <chenm001@163.com>                                     *  
   *  22.05.2002 bs_put_matrix fix                                              *  
   *  20.05.2002 added BitstreamWriteUserData                                   *  
   *  19.06.2002 Fix a little bug in use custom quant matrix                    *  
   *             MinChen <chenm001@163.com>                                     *  
   *  08.05.2002 add low_delay support for B_VOP decode                         *  
   *             MinChen <chenm001@163.com>                                     *  
   *  06.05.2002 low_delay                                                      *  
   *  06.05.2002 fixed fincr/fbase error                                        *  
   *  01.05.2002 added BVOP support to BitstreamWriteVopHeader                  *  
   *  15.04.2002 rewrite log2bin use asm386  By MinChen <chenm001@163.com>      *  
   *  26.03.2002 interlacing support                                            *  
   *  03.03.2002 qmatrix writing                                                *  
   *  03.03.2002 merged BITREADER and BITWRITER                                 *  
   *  30.02.2002 intra_dc_threshold support                                     *  
   *  04.12.2001 support for additional headers                                 *  
   *  16.12.2001 inital version                                                 *  
   *                                                                                                                                                        *  
   ******************************************************************************/  
   
26    
27  #include <string.h>  #include <string.h>
28  #include <stdio.h>  #include <stdio.h>
# Line 121  Line 79 
79                  matrix[scan_tables[0][i++]] = value;                  matrix[scan_tables[0][i++]] = value;
80          }          }
81          while (value != 0 && i < 64);          while (value != 0 && i < 64);
82          i--;    // fix little bug at coeff not full          i--;    /* fix little bug at coeff not full */
83    
84          while (i < 64) {          while (i < 64) {
85                  matrix[scan_tables[0][i++]] = last;                  matrix[scan_tables[0][i++]] = last;
# Line 130  Line 88 
88    
89    
90    
91  // for PVOP addbits == fcode - 1  /*
92  // for BVOP addbits == max(fcode,bcode) - 1   * for PVOP addbits == fcode - 1
93  // returns mbpos   * for BVOP addbits == max(fcode,bcode) - 1
94     * returns mbpos
95     */
96  int  int
97  read_video_packet_header(Bitstream *bs,  read_video_packet_header(Bitstream *bs,
98                                                  DECODER * dec,                                                  DECODER * dec,
# Line 150  Line 110 
110          BitstreamSkip(bs, BitstreamNumBitsToByteAlign(bs));          BitstreamSkip(bs, BitstreamNumBitsToByteAlign(bs));
111          BitstreamSkip(bs, startcode_bits);          BitstreamSkip(bs, startcode_bits);
112    
113          DPRINTF(DPRINTF_STARTCODE, "<video_packet_header>");          DPRINTF(XVID_DEBUG_STARTCODE, "<video_packet_header>\n");
114    
115          if (dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR)          if (dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR)
116          {          {
# Line 169  Line 129 
129          }          }
130    
131          mbnum = BitstreamGetBits(bs, mbnum_bits);               /* macroblock_number */          mbnum = BitstreamGetBits(bs, mbnum_bits);               /* macroblock_number */
132          DPRINTF(DPRINTF_HEADER, "mbnum %i", mbnum);          DPRINTF(XVID_DEBUG_HEADER, "mbnum %i\n", mbnum);
133    
134          if (dec->shape != VIDOBJLAY_SHAPE_BINARY_ONLY)          if (dec->shape != VIDOBJLAY_SHAPE_BINARY_ONLY)
135          {          {
136                  *quant = BitstreamGetBits(bs, dec->quant_bits); /* quant_scale */                  *quant = BitstreamGetBits(bs, dec->quant_bits); /* quant_scale */
137                  DPRINTF(DPRINTF_HEADER, "quant %i", *quant);                  DPRINTF(XVID_DEBUG_HEADER, "quant %i\n", *quant);
138          }          }
139    
140          if (dec->shape == VIDOBJLAY_SHAPE_RECTANGULAR)          if (dec->shape == VIDOBJLAY_SHAPE_RECTANGULAR)
141                  hec = BitstreamGetBit(bs);              /* header_extension_code */                  hec = BitstreamGetBit(bs);              /* header_extension_code */
142    
143    
144          DPRINTF(DPRINTF_HEADER, "header_extension_code %i", hec);          DPRINTF(XVID_DEBUG_HEADER, "header_extension_code %i\n", hec);
145          if (hec)          if (hec)
146          {          {
147                  int time_base;                  int time_base;
# Line 193  Line 153 
153                  if (dec->time_inc_bits)                  if (dec->time_inc_bits)
154                          time_increment = (BitstreamGetBits(bs, dec->time_inc_bits));    /* vop_time_increment */                          time_increment = (BitstreamGetBits(bs, dec->time_inc_bits));    /* vop_time_increment */
155                  READ_MARKER();                  READ_MARKER();
156                  DPRINTF(DPRINTF_HEADER,"time %i:%i", time_base, time_increment);                  DPRINTF(XVID_DEBUG_HEADER,"time %i:%i\n", time_base, time_increment);
157    
158                  coding_type = BitstreamGetBits(bs, 2);                  coding_type = BitstreamGetBits(bs, 2);
159                  DPRINTF(DPRINTF_HEADER,"coding_type %i", coding_type);                  DPRINTF(XVID_DEBUG_HEADER,"coding_type %i\n", coding_type);
160    
161                  if (dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR)                  if (dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR)
162                  {                  {
# Line 212  Line 172 
172                          if (dec->sprite_enable == SPRITE_GMC && coding_type == S_VOP &&                          if (dec->sprite_enable == SPRITE_GMC && coding_type == S_VOP &&
173                                  dec->sprite_warping_points > 0)                                  dec->sprite_warping_points > 0)
174                          {                          {
175                                  // TODO: sprite trajectory                                  /* TODO: sprite trajectory */
176                          }                          }
177                          if (dec->reduced_resolution_enable &&                          if (dec->reduced_resolution_enable &&
178                                  dec->shape == VIDOBJLAY_SHAPE_RECTANGULAR &&                                  dec->shape == VIDOBJLAY_SHAPE_RECTANGULAR &&
# Line 224  Line 184 
184                          if (coding_type != I_VOP && fcode_forward)                          if (coding_type != I_VOP && fcode_forward)
185                          {                          {
186                                  *fcode_forward = BitstreamGetBits(bs, 3);                                  *fcode_forward = BitstreamGetBits(bs, 3);
187                                  DPRINTF(DPRINTF_HEADER,"fcode_forward %i", *fcode_forward);                                  DPRINTF(XVID_DEBUG_HEADER,"fcode_forward %i\n", *fcode_forward);
188                          }                          }
189    
190                          if (coding_type == B_VOP && fcode_backward)                          if (coding_type == B_VOP && fcode_backward)
191                          {                          {
192                                  *fcode_backward = BitstreamGetBits(bs, 3);                                  *fcode_backward = BitstreamGetBits(bs, 3);
193                                  DPRINTF(DPRINTF_HEADER,"fcode_backward %i", *fcode_backward);                                  DPRINTF(XVID_DEBUG_HEADER,"fcode_backward %i\n", *fcode_backward);
194                          }                          }
195                  }                  }
196    
# Line 242  Line 202 
202                  int vop_id_for_prediction;                  int vop_id_for_prediction;
203    
204                  vop_id = BitstreamGetBits(bs, MIN(dec->time_inc_bits + 3, 15));                  vop_id = BitstreamGetBits(bs, MIN(dec->time_inc_bits + 3, 15));
205                  DPRINTF(DPRINTF_HEADER, "vop_id %i", vop_id);                  DPRINTF(XVID_DEBUG_HEADER, "vop_id %i\n", vop_id);
206                  if (BitstreamGetBit(bs))        /* vop_id_for_prediction_indication */                  if (BitstreamGetBit(bs))        /* vop_id_for_prediction_indication */
207                  {                  {
208                          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));
209                          DPRINTF(DPRINTF_HEADER, "vop_id_for_prediction %i", vop_id_for_prediction);                          DPRINTF(XVID_DEBUG_HEADER, "vop_id_for_prediction %i\n", vop_id_for_prediction);
210                  }                  }
211                  READ_MARKER();                  READ_MARKER();
212          }          }
# Line 264  Line 224 
224          ESTIMATION * e = &dec->estimation;          ESTIMATION * e = &dec->estimation;
225    
226          e->method = BitstreamGetBits(bs, 2);    /* estimation_method */          e->method = BitstreamGetBits(bs, 2);    /* estimation_method */
227          DPRINTF(DPRINTF_HEADER,"+ complexity_estimation_header; method=%i", e->method);          DPRINTF(XVID_DEBUG_HEADER,"+ complexity_estimation_header; method=%i\n", e->method);
228    
229          if (e->method == 0 || e->method == 1)          if (e->method == 0 || e->method == 1)
230          {          {
# Line 450  Line 410 
410    
411                          int profile;                          int profile;
412    
413                          DPRINTF(DPRINTF_STARTCODE, "<visual_object_sequence>");                          DPRINTF(XVID_DEBUG_STARTCODE, "<visual_object_sequence>\n");
414    
415                          BitstreamSkip(bs, 32);  // visual_object_sequence_start_code                          BitstreamSkip(bs, 32);  /* visual_object_sequence_start_code */
416                          profile = BitstreamGetBits(bs, 8);      // profile_and_level_indication                          profile = BitstreamGetBits(bs, 8);      /* profile_and_level_indication */
417    
418                          DPRINTF(DPRINTF_HEADER, "profile_and_level_indication %i", profile);                          DPRINTF(XVID_DEBUG_HEADER, "profile_and_level_indication %i\n", profile);
419    
420                  } else if (start_code == VISOBJSEQ_STOP_CODE) {                  } else if (start_code == VISOBJSEQ_STOP_CODE) {
421    
422                          BitstreamSkip(bs, 32);  // visual_object_sequence_stop_code                          BitstreamSkip(bs, 32);  /* visual_object_sequence_stop_code */
423    
424                          DPRINTF(DPRINTF_STARTCODE, "</visual_object_sequence>");                          DPRINTF(XVID_DEBUG_STARTCODE, "</visual_object_sequence>\n");
425    
426                  } else if (start_code == VISOBJ_START_CODE) {                  } else if (start_code == VISOBJ_START_CODE) {
427                          int visobj_ver_id;                          int visobj_ver_id;
428    
429                          DPRINTF(DPRINTF_STARTCODE, "<visual_object>");                          DPRINTF(XVID_DEBUG_STARTCODE, "<visual_object>\n");
430    
431                          BitstreamSkip(bs, 32);  // visual_object_start_code                          BitstreamSkip(bs, 32);  /* visual_object_start_code */
432                          if (BitstreamGetBit(bs))        // is_visual_object_identified                          if (BitstreamGetBit(bs))        /* is_visual_object_identified */
433                          {                          {
434                                  visobj_ver_id = BitstreamGetBits(bs, 4);        // visual_object_ver_id                                  visobj_ver_id = BitstreamGetBits(bs, 4);        /* visual_object_ver_id */
435                                  DPRINTF(DPRINTF_HEADER,"visobj_ver_id %i", visobj_ver_id);                                  DPRINTF(XVID_DEBUG_HEADER,"visobj_ver_id %i\n", visobj_ver_id);
436                                  BitstreamSkip(bs, 3);   // visual_object_priority                                  BitstreamSkip(bs, 3);   /* visual_object_priority */
437                          } else {                          } else {
438                                  visobj_ver_id = 1;                                  visobj_ver_id = 1;
439                          }                          }
440    
441                          if (BitstreamShowBits(bs, 4) != VISOBJ_TYPE_VIDEO)      // visual_object_type                          if (BitstreamShowBits(bs, 4) != VISOBJ_TYPE_VIDEO)      /* visual_object_type */
442                          {                          {
443                                  DPRINTF(DPRINTF_ERROR, "visual_object_type != video");                                  DPRINTF(XVID_DEBUG_ERROR, "visual_object_type != video\n");
444                                  return -1;                                  return -1;
445                          }                          }
446                          BitstreamSkip(bs, 4);                          BitstreamSkip(bs, 4);
447    
448                          // video_signal_type                          /* video_signal_type */
449    
450                          if (BitstreamGetBit(bs))        // video_signal_type                          if (BitstreamGetBit(bs))        /* video_signal_type */
451                          {                          {
452                                  DPRINTF(DPRINTF_HEADER,"+ video_signal_type");                                  DPRINTF(XVID_DEBUG_HEADER,"+ video_signal_type\n");
453                                  BitstreamSkip(bs, 3);   // video_format                                  BitstreamSkip(bs, 3);   /* video_format */
454                                  BitstreamSkip(bs, 1);   // video_range                                  BitstreamSkip(bs, 1);   /* video_range */
455                                  if (BitstreamGetBit(bs))        // color_description                                  if (BitstreamGetBit(bs))        /* color_description */
456                                  {                                  {
457                                          DPRINTF(DPRINTF_HEADER,"+ color_description");                                          DPRINTF(XVID_DEBUG_HEADER,"+ color_description");
458                                          BitstreamSkip(bs, 8);   // color_primaries                                          BitstreamSkip(bs, 8);   /* color_primaries */
459                                          BitstreamSkip(bs, 8);   // transfer_characteristics                                          BitstreamSkip(bs, 8);   /* transfer_characteristics */
460                                          BitstreamSkip(bs, 8);   // matrix_coefficients                                          BitstreamSkip(bs, 8);   /* matrix_coefficients */
461                                  }                                  }
462                          }                          }
463                  } else if ((start_code & ~VIDOBJ_START_CODE_MASK) == VIDOBJ_START_CODE) {                  } else if ((start_code & ~VIDOBJ_START_CODE_MASK) == VIDOBJ_START_CODE) {
464    
465                          DPRINTF(DPRINTF_STARTCODE, "<video_object>");                          DPRINTF(XVID_DEBUG_STARTCODE, "<video_object>\n");
466                          DPRINTF(DPRINTF_HEADER, "vo id %i", start_code & VIDOBJ_START_CODE_MASK);                          DPRINTF(XVID_DEBUG_HEADER, "vo id %i\n", start_code & VIDOBJ_START_CODE_MASK);
467    
468                          BitstreamSkip(bs, 32);  // video_object_start_code                          BitstreamSkip(bs, 32);  /* video_object_start_code */
469    
470                  } else if ((start_code & ~VIDOBJLAY_START_CODE_MASK) == VIDOBJLAY_START_CODE) {                  } else if ((start_code & ~VIDOBJLAY_START_CODE_MASK) == VIDOBJLAY_START_CODE) {
471    
472                          DPRINTF(DPRINTF_STARTCODE, "<video_object_layer>");                          DPRINTF(XVID_DEBUG_STARTCODE, "<video_object_layer>\n");
473                          DPRINTF(DPRINTF_HEADER, "vol id %i", start_code & VIDOBJLAY_START_CODE_MASK);                          DPRINTF(XVID_DEBUG_HEADER, "vol id %i\n", start_code & VIDOBJLAY_START_CODE_MASK);
474    
475                          BitstreamSkip(bs, 32);  // video_object_layer_start_code                          BitstreamSkip(bs, 32);  /* video_object_layer_start_code */
476                            BitstreamSkip(bs, 1);   /* random_accessible_vol */
477    
478                          BitstreamSkip(bs, 1);   // random_accessible_vol              BitstreamSkip(bs, 8);   /* video_object_type_indication */
479    
480                          // video_object_type_indication                          if (BitstreamGetBit(bs))        /* is_object_layer_identifier */
                         if (BitstreamShowBits(bs, 8) != VIDOBJLAY_TYPE_SIMPLE &&  
                                 BitstreamShowBits(bs, 8) != VIDOBJLAY_TYPE_CORE &&  
                                 BitstreamShowBits(bs, 8) != VIDOBJLAY_TYPE_MAIN &&  
                                 BitstreamShowBits(bs, 8) != VIDOBJLAY_TYPE_ACE &&  
                                 BitstreamShowBits(bs, 8) != VIDOBJLAY_TYPE_ART_SIMPLE &&  
                                 BitstreamShowBits(bs, 8) != 0)  // BUGGY DIVX  
481                          {                          {
482                                  DPRINTF(DPRINTF_ERROR,"video_object_type_indication %i not supported ",                                  DPRINTF(XVID_DEBUG_HEADER, "+ is_object_layer_identifier\n");
483                                          BitstreamShowBits(bs, 8));                                  vol_ver_id = BitstreamGetBits(bs, 4);   /* video_object_layer_verid */
484                                  return -1;                                  DPRINTF(XVID_DEBUG_HEADER,"ver_id %i\n", vol_ver_id);
485                          }                                  BitstreamSkip(bs, 3);   /* video_object_layer_priority */
                         BitstreamSkip(bs, 8);  
   
   
                         if (BitstreamGetBit(bs))        // is_object_layer_identifier  
                         {  
                                 DPRINTF(DPRINTF_HEADER, "+ is_object_layer_identifier");  
                                 vol_ver_id = BitstreamGetBits(bs, 4);   // video_object_layer_verid  
                                 DPRINTF(DPRINTF_HEADER,"ver_id %i", vol_ver_id);  
                                 BitstreamSkip(bs, 3);   // video_object_layer_priority  
486                          } else {                          } else {
487                                  vol_ver_id = 1;                                  vol_ver_id = 1;
488                          }                          }
489    
490                          dec->aspect_ratio = BitstreamGetBits(bs, 4);                          dec->aspect_ratio = BitstreamGetBits(bs, 4);
491    
492                          if (dec->aspect_ratio == VIDOBJLAY_AR_EXTPAR)   // aspect_ratio_info                          if (dec->aspect_ratio == VIDOBJLAY_AR_EXTPAR)   /* aspect_ratio_info */
493                          {                          {
494                                  DPRINTF(DPRINTF_HEADER, "+ aspect_ratio_info");                                  DPRINTF(XVID_DEBUG_HEADER, "+ aspect_ratio_info\n");
495                                  dec->par_width = BitstreamGetBits(bs, 8);       // par_width                                  dec->par_width = BitstreamGetBits(bs, 8);       /* par_width */
496                                  dec->par_height = BitstreamGetBits(bs, 8);      // par_height                                  dec->par_height = BitstreamGetBits(bs, 8);      /* par_height */
497                          }                          }
498    
499                          if (BitstreamGetBit(bs))        // vol_control_parameters                          if (BitstreamGetBit(bs))        /* vol_control_parameters */
500                          {                          {
501                                  DPRINTF(DPRINTF_HEADER, "+ vol_control_parameters");                                  DPRINTF(XVID_DEBUG_HEADER, "+ vol_control_parameters\n");
502                                  BitstreamSkip(bs, 2);   // chroma_format                                  BitstreamSkip(bs, 2);   /* chroma_format */
503                                  dec->low_delay = BitstreamGetBit(bs);   // low_delay                                  dec->low_delay = BitstreamGetBit(bs);   /* low_delay */
504                                  DPRINTF(DPRINTF_HEADER, "low_delay %i", dec->low_delay);                                  DPRINTF(XVID_DEBUG_HEADER, "low_delay %i\n", dec->low_delay);
505                                  if (BitstreamGetBit(bs))        // vbv_parameters                                  if (BitstreamGetBit(bs))        /* vbv_parameters */
506                                  {                                  {
507                                          unsigned int bitrate;                                          unsigned int bitrate;
508                                          unsigned int buffer_size;                                          unsigned int buffer_size;
509                                          unsigned int occupancy;                                          unsigned int occupancy;
510    
511                                          DPRINTF(DPRINTF_HEADER,"+ vbv_parameters");                                          DPRINTF(XVID_DEBUG_HEADER,"+ vbv_parameters\n");
512    
513                                          bitrate = BitstreamGetBits(bs,15) << 15;        // first_half_bit_rate                                          bitrate = BitstreamGetBits(bs,15) << 15;        /* first_half_bit_rate */
514                                          READ_MARKER();                                          READ_MARKER();
515                                          bitrate |= BitstreamGetBits(bs,15);             // latter_half_bit_rate                                          bitrate |= BitstreamGetBits(bs,15);             /* latter_half_bit_rate */
516                                          READ_MARKER();                                          READ_MARKER();
517    
518                                          buffer_size = BitstreamGetBits(bs, 15) << 3;    // first_half_vbv_buffer_size                                          buffer_size = BitstreamGetBits(bs, 15) << 3;    /* first_half_vbv_buffer_size */
519                                          READ_MARKER();                                          READ_MARKER();
520                                          buffer_size |= BitstreamGetBits(bs, 3);         // latter_half_vbv_buffer_size                                          buffer_size |= BitstreamGetBits(bs, 3);         /* latter_half_vbv_buffer_size */
521    
522                                          occupancy = BitstreamGetBits(bs, 11) << 15;     // first_half_vbv_occupancy                                          occupancy = BitstreamGetBits(bs, 11) << 15;     /* first_half_vbv_occupancy */
523                                          READ_MARKER();                                          READ_MARKER();
524                                          occupancy |= BitstreamGetBits(bs, 15);  // latter_half_vbv_occupancy                                          occupancy |= BitstreamGetBits(bs, 15);  /* latter_half_vbv_occupancy */
525                                          READ_MARKER();                                          READ_MARKER();
526    
527                                          DPRINTF(DPRINTF_HEADER,"bitrate %d (unit=400 bps)", bitrate);                                          DPRINTF(XVID_DEBUG_HEADER,"bitrate %d (unit=400 bps)\n", bitrate);
528                                          DPRINTF(DPRINTF_HEADER,"buffer_size %d (unit=16384 bits)", buffer_size);                                          DPRINTF(XVID_DEBUG_HEADER,"buffer_size %d (unit=16384 bits)\n", buffer_size);
529                                          DPRINTF(DPRINTF_HEADER,"occupancy %d (unit=64 bits)", occupancy);                                          DPRINTF(XVID_DEBUG_HEADER,"occupancy %d (unit=64 bits)\n", occupancy);
530                                  }                                  }
531                          }else{                          }else{
532                                  dec->low_delay = dec->low_delay_default;                                  dec->low_delay = dec->low_delay_default;
533                          }                          }
534    
535                          dec->shape = BitstreamGetBits(bs, 2);   // video_object_layer_shape                          dec->shape = BitstreamGetBits(bs, 2);   /* video_object_layer_shape */
536    
537                          DPRINTF(DPRINTF_HEADER, "shape %i", dec->shape);                          DPRINTF(XVID_DEBUG_HEADER, "shape %i\n", dec->shape);
538                          if (dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR)                          if (dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR)
539                          {                          {
540                                  DPRINTF(DPRINTF_ERROR,"non-rectangular shapes are not supported");                                  DPRINTF(XVID_DEBUG_ERROR,"non-rectangular shapes are not supported\n");
541                          }                          }
542    
543                          if (dec->shape == VIDOBJLAY_SHAPE_GRAYSCALE && vol_ver_id != 1) {                          if (dec->shape == VIDOBJLAY_SHAPE_GRAYSCALE && vol_ver_id != 1) {
544                                  BitstreamSkip(bs, 4);   // video_object_layer_shape_extension                                  BitstreamSkip(bs, 4);   /* video_object_layer_shape_extension */
545                          }                          }
546    
547                          READ_MARKER();                          READ_MARKER();
548    
549  // *************************** for decode B-frame time ***********************                          /********************** for decode B-frame time ***********************/
550                          dec->time_inc_resolution = BitstreamGetBits(bs, 16);    // vop_time_increment_resolution                          dec->time_inc_resolution = BitstreamGetBits(bs, 16);    /* vop_time_increment_resolution */
551                          DPRINTF(DPRINTF_HEADER,"vop_time_increment_resolution %i", dec->time_inc_resolution);                          DPRINTF(XVID_DEBUG_HEADER,"vop_time_increment_resolution %i\n", dec->time_inc_resolution);
552    
553  //                      dec->time_inc_resolution--;  #if 0
554                            dec->time_inc_resolution--;
555    #endif
556    
557                          if (dec->time_inc_resolution > 0) {                          if (dec->time_inc_resolution > 0) {
558                                  dec->time_inc_bits = log2bin(dec->time_inc_resolution-1);                                  dec->time_inc_bits = log2bin(dec->time_inc_resolution-1);
559                          } else {                          } else {
560                                  // dec->time_inc_bits = 0;  #if 0
561                                  // for "old" xvid compatibility, set time_inc_bits = 1                                  dec->time_inc_bits = 0;
562    #endif
563                                    /* for "old" xvid compatibility, set time_inc_bits = 1 */
564                                  dec->time_inc_bits = 1;                                  dec->time_inc_bits = 1;
565                          }                          }
566    
567                          READ_MARKER();                          READ_MARKER();
568    
569                          if (BitstreamGetBit(bs))        // fixed_vop_rate                          if (BitstreamGetBit(bs))        /* fixed_vop_rate */
570                          {                          {
571                                  DPRINTF(DPRINTF_HEADER, "+ fixed_vop_rate");                                  DPRINTF(XVID_DEBUG_HEADER, "+ fixed_vop_rate\n");
572                                  BitstreamSkip(bs, dec->time_inc_bits);  // fixed_vop_time_increment                                  BitstreamSkip(bs, dec->time_inc_bits);  /* fixed_vop_time_increment */
573                          }                          }
574    
575                          if (dec->shape != VIDOBJLAY_SHAPE_BINARY_ONLY) {                          if (dec->shape != VIDOBJLAY_SHAPE_BINARY_ONLY) {
# Line 628  Line 578 
578                                          uint32_t width, height;                                          uint32_t width, height;
579    
580                                          READ_MARKER();                                          READ_MARKER();
581                                          width = BitstreamGetBits(bs, 13);       // video_object_layer_width                                          width = BitstreamGetBits(bs, 13);       /* video_object_layer_width */
582                                          READ_MARKER();                                          READ_MARKER();
583                                          height = BitstreamGetBits(bs, 13);      // video_object_layer_height                                          height = BitstreamGetBits(bs, 13);      /* video_object_layer_height */
584                                          READ_MARKER();                                          READ_MARKER();
585    
586                                          DPRINTF(DPRINTF_HEADER, "width %i", width);                                          DPRINTF(XVID_DEBUG_HEADER, "width %i\n", width);
587                                          DPRINTF(DPRINTF_HEADER, "height %i", height);                                          DPRINTF(XVID_DEBUG_HEADER, "height %i\n", height);
588    
589                                          if (dec->width != width || dec->height != height)                                          if (dec->width != width || dec->height != height)
590                                          {                                          {
591                                                  if (dec->fixed_dimensions)                                                  if (dec->fixed_dimensions)
592                                                  {                                                  {
593                                                          DPRINTF(DPRINTF_ERROR, "XVID_DEC_PARAM width/height does not match bitstream");                                                          DPRINTF(XVID_DEBUG_ERROR, "decoder width/height does not match bitstream\n");
594                                                          return -1;                                                          return -1;
595                                                  }                                                  }
596                                                  resize = 1;                                                  resize = 1;
# Line 650  Line 600 
600                                  }                                  }
601    
602                                  dec->interlacing = BitstreamGetBit(bs);                                  dec->interlacing = BitstreamGetBit(bs);
603                                  DPRINTF(DPRINTF_HEADER, "interlacing %i", dec->interlacing);                                  DPRINTF(XVID_DEBUG_HEADER, "interlacing %i\n", dec->interlacing);
604    
605                                  if (!BitstreamGetBit(bs))       // obmc_disable                                  if (!BitstreamGetBit(bs))       /* obmc_disable */
606                                  {                                  {
607                                          DPRINTF(DPRINTF_ERROR, "obmc_disabled==false not supported");                                          DPRINTF(XVID_DEBUG_ERROR, "obmc_disabled==false not supported\n");
608                                          // TODO                                          /* TODO */
609                                          // fucking divx4.02 has this enabled                                          /* fucking divx4.02 has this enabled */
610                                  }                                  }
611    
612                                  dec->sprite_enable = BitstreamGetBits(bs, (vol_ver_id == 1 ? 1 : 2));   // sprite_enable                                  dec->sprite_enable = BitstreamGetBits(bs, (vol_ver_id == 1 ? 1 : 2));   /* sprite_enable */
613    
614                                  if (dec->sprite_enable == SPRITE_STATIC || dec->sprite_enable == SPRITE_GMC)                                  if (dec->sprite_enable == SPRITE_STATIC || dec->sprite_enable == SPRITE_GMC)
615                                  {                                  {
# Line 671  Line 621 
621                                                  int sprite_height;                                                  int sprite_height;
622                                                  int sprite_left_coord;                                                  int sprite_left_coord;
623                                                  int sprite_top_coord;                                                  int sprite_top_coord;
624                                                  sprite_width = BitstreamGetBits(bs, 13);                // sprite_width                                                  sprite_width = BitstreamGetBits(bs, 13);                /* sprite_width */
625                                                  READ_MARKER();                                                  READ_MARKER();
626                                                  sprite_height = BitstreamGetBits(bs, 13);       // sprite_height                                                  sprite_height = BitstreamGetBits(bs, 13);       /* sprite_height */
627                                                  READ_MARKER();                                                  READ_MARKER();
628                                                  sprite_left_coord = BitstreamGetBits(bs, 13);   // sprite_left_coordinate                                                  sprite_left_coord = BitstreamGetBits(bs, 13);   /* sprite_left_coordinate */
629                                                  READ_MARKER();                                                  READ_MARKER();
630                                                  sprite_top_coord = BitstreamGetBits(bs, 13);    // sprite_top_coordinate                                                  sprite_top_coord = BitstreamGetBits(bs, 13);    /* sprite_top_coordinate */
631                                                  READ_MARKER();                                                  READ_MARKER();
632                                          }                                          }
633                                          dec->sprite_warping_points = BitstreamGetBits(bs, 6);           // no_of_sprite_warping_points                                          dec->sprite_warping_points = BitstreamGetBits(bs, 6);           /* no_of_sprite_warping_points */
634                                          dec->sprite_warping_accuracy = BitstreamGetBits(bs, 2);         // sprite_warping_accuracy                                          dec->sprite_warping_accuracy = BitstreamGetBits(bs, 2);         /* sprite_warping_accuracy */
635                                          dec->sprite_brightness_change = BitstreamGetBits(bs, 1);                // brightness_change                                          dec->sprite_brightness_change = BitstreamGetBits(bs, 1);                /* brightness_change */
636                                          if (dec->sprite_enable != SPRITE_GMC)                                          if (dec->sprite_enable != SPRITE_GMC)
637                                          {                                          {
638                                                  low_latency_sprite_enable = BitstreamGetBits(bs, 1);            // low_latency_sprite_enable                                                  low_latency_sprite_enable = BitstreamGetBits(bs, 1);            /* low_latency_sprite_enable */
639                                          }                                          }
640                                  }                                  }
641    
642                                  if (vol_ver_id != 1 &&                                  if (vol_ver_id != 1 &&
643                                          dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR) {                                          dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR) {
644                                          BitstreamSkip(bs, 1);   // sadct_disable                                          BitstreamSkip(bs, 1);   /* sadct_disable */
645                                  }                                  }
646    
647                                  if (BitstreamGetBit(bs))        // not_8_bit                                  if (BitstreamGetBit(bs))        /* not_8_bit */
648                                  {                                  {
649                                          DPRINTF(DPRINTF_HEADER, "not_8_bit==true (ignored)");                                          DPRINTF(XVID_DEBUG_HEADER, "not_8_bit==true (ignored)\n");
650                                          dec->quant_bits = BitstreamGetBits(bs, 4);      // quant_precision                                          dec->quant_bits = BitstreamGetBits(bs, 4);      /* quant_precision */
651                                          BitstreamSkip(bs, 4);   // bits_per_pixel                                          BitstreamSkip(bs, 4);   /* bits_per_pixel */
652                                  } else {                                  } else {
653                                          dec->quant_bits = 5;                                          dec->quant_bits = 5;
654                                  }                                  }
655    
656                                  if (dec->shape == VIDOBJLAY_SHAPE_GRAYSCALE) {                                  if (dec->shape == VIDOBJLAY_SHAPE_GRAYSCALE) {
657                                          BitstreamSkip(bs, 1);   // no_gray_quant_update                                          BitstreamSkip(bs, 1);   /* no_gray_quant_update */
658                                          BitstreamSkip(bs, 1);   // composition_method                                          BitstreamSkip(bs, 1);   /* composition_method */
659                                          BitstreamSkip(bs, 1);   // linear_composition                                          BitstreamSkip(bs, 1);   /* linear_composition */
660                                  }                                  }
661    
662                                  dec->quant_type = BitstreamGetBit(bs);  // quant_type                                  dec->quant_type = BitstreamGetBit(bs);  /* quant_type */
663                                  DPRINTF(DPRINTF_HEADER, "quant_type %i", dec->quant_type);                                  DPRINTF(XVID_DEBUG_HEADER, "quant_type %i\n", dec->quant_type);
664    
665                                  if (dec->quant_type) {                                  if (dec->quant_type) {
666                                          if (BitstreamGetBit(bs))        // load_intra_quant_mat                                          if (BitstreamGetBit(bs))        /* load_intra_quant_mat */
667                                          {                                          {
668                                                  uint8_t matrix[64];                                                  uint8_t matrix[64];
669    
670                                                  DPRINTF(DPRINTF_HEADER, "load_intra_quant_mat");                                                  DPRINTF(XVID_DEBUG_HEADER, "load_intra_quant_mat\n");
671    
672                                                  bs_get_matrix(bs, matrix);                                                  bs_get_matrix(bs, matrix);
673                                                  set_intra_matrix(matrix);                                                  set_intra_matrix(matrix);
674                                          } else                                          } else
675                                                  set_intra_matrix(get_default_intra_matrix());                                                  set_intra_matrix(get_default_intra_matrix());
676    
677                                          if (BitstreamGetBit(bs))        // load_inter_quant_mat                                          if (BitstreamGetBit(bs))        /* load_inter_quant_mat */
678                                          {                                          {
679                                                  uint8_t matrix[64];                                                  uint8_t matrix[64];
680    
681                                                  DPRINTF(DPRINTF_HEADER, "load_inter_quant_mat");                                                  DPRINTF(XVID_DEBUG_HEADER, "load_inter_quant_mat\n");
682    
683                                                  bs_get_matrix(bs, matrix);                                                  bs_get_matrix(bs, matrix);
684                                                  set_inter_matrix(matrix);                                                  set_inter_matrix(matrix);
# Line 736  Line 686 
686                                                  set_inter_matrix(get_default_inter_matrix());                                                  set_inter_matrix(get_default_inter_matrix());
687    
688                                          if (dec->shape == VIDOBJLAY_SHAPE_GRAYSCALE) {                                          if (dec->shape == VIDOBJLAY_SHAPE_GRAYSCALE) {
689                                                  DPRINTF(DPRINTF_ERROR, "greyscale matrix not supported");                                                  DPRINTF(XVID_DEBUG_ERROR, "greyscale matrix not supported\n");
690                                                  return -1;                                                  return -1;
691                                          }                                          }
692    
# Line 744  Line 694 
694    
695    
696                                  if (vol_ver_id != 1) {                                  if (vol_ver_id != 1) {
697                                          dec->quarterpel = BitstreamGetBit(bs);  // quarter_sample                                          dec->quarterpel = BitstreamGetBit(bs);  /* quarter_sample */
698                                          DPRINTF(DPRINTF_HEADER,"quarterpel %i", dec->quarterpel);                                          DPRINTF(XVID_DEBUG_HEADER,"quarterpel %i\n", dec->quarterpel);
699                                  }                                  }
700                                  else                                  else
701                                          dec->quarterpel = 0;                                          dec->quarterpel = 0;
# Line 757  Line 707 
707                                          read_vol_complexity_estimation_header(bs, dec);                                          read_vol_complexity_estimation_header(bs, dec);
708                                  }                                  }
709    
710                                  BitstreamSkip(bs, 1);   // resync_marker_disable                                  BitstreamSkip(bs, 1);   /* resync_marker_disable */
711    
712                                  if (BitstreamGetBit(bs))        // data_partitioned                                  if (BitstreamGetBit(bs))        /* data_partitioned */
713                                  {                                  {
714                                          DPRINTF(DPRINTF_ERROR, "data_partitioned not supported");                                          DPRINTF(XVID_DEBUG_ERROR, "data_partitioned not supported\n");
715                                          BitstreamSkip(bs, 1);   // reversible_vlc                                          BitstreamSkip(bs, 1);   /* reversible_vlc */
716                                  }                                  }
717    
718                                  if (vol_ver_id != 1) {                                  if (vol_ver_id != 1) {
719                                          dec->newpred_enable = BitstreamGetBit(bs);                                          dec->newpred_enable = BitstreamGetBit(bs);
720                                          if (dec->newpred_enable)        // newpred_enable                                          if (dec->newpred_enable)        /* newpred_enable */
721                                          {                                          {
722                                                  DPRINTF(DPRINTF_HEADER, "+ newpred_enable");                                                  DPRINTF(XVID_DEBUG_HEADER, "+ newpred_enable\n");
723                                                  BitstreamSkip(bs, 2);   // requested_upstream_message_type                                                  BitstreamSkip(bs, 2);   /* requested_upstream_message_type */
724                                                  BitstreamSkip(bs, 1);   // newpred_segment_type                                                  BitstreamSkip(bs, 1);   /* newpred_segment_type */
725                                          }                                          }
726                                          dec->reduced_resolution_enable = BitstreamGetBit(bs);   /* reduced_resolution_vop_enable */                                          dec->reduced_resolution_enable = BitstreamGetBit(bs);   /* reduced_resolution_vop_enable */
727                                          DPRINTF(DPRINTF_HEADER, "reduced_resolution_enable %i", dec->reduced_resolution_enable);                                          DPRINTF(XVID_DEBUG_HEADER, "reduced_resolution_enable %i\n", dec->reduced_resolution_enable);
728                                  }                                  }
729                                  else                                  else
730                                  {                                  {
# Line 785  Line 735 
735                                  dec->scalability = BitstreamGetBit(bs); /* scalability */                                  dec->scalability = BitstreamGetBit(bs); /* scalability */
736                                  if (dec->scalability)                                  if (dec->scalability)
737                                  {                                  {
738                                          DPRINTF(DPRINTF_ERROR, "scalability not supported");                                          DPRINTF(XVID_DEBUG_ERROR, "scalability not supported\n");
739                                          BitstreamSkip(bs, 1);   /* hierarchy_type */                                          BitstreamSkip(bs, 1);   /* hierarchy_type */
740                                          BitstreamSkip(bs, 4);   /* ref_layer_id */                                          BitstreamSkip(bs, 4);   /* ref_layer_id */
741                                          BitstreamSkip(bs, 1);   /* ref_layer_sampling_direc */                                          BitstreamSkip(bs, 1);   /* ref_layer_sampling_direc */
# Line 804  Line 754 
754                                          }                                          }
755                                          return -1;                                          return -1;
756                                  }                                  }
757                          } else                          // dec->shape == BINARY_ONLY                          } else                          /* dec->shape == BINARY_ONLY */
758                          {                          {
759                                  if (vol_ver_id != 1) {                                  if (vol_ver_id != 1) {
760                                          dec->scalability = BitstreamGetBit(bs); /* scalability */                                          dec->scalability = BitstreamGetBit(bs); /* scalability */
761                                          if (dec->scalability)                                          if (dec->scalability)
762                                          {                                          {
763                                                  DPRINTF(DPRINTF_ERROR, "scalability not supported");                                                  DPRINTF(XVID_DEBUG_ERROR, "scalability not supported\n");
764                                                  BitstreamSkip(bs, 4);   /* ref_layer_id */                                                  BitstreamSkip(bs, 4);   /* ref_layer_id */
765                                                  BitstreamSkip(bs, 5);   /* hor_sampling_factor_n */                                                  BitstreamSkip(bs, 5);   /* hor_sampling_factor_n */
766                                                  BitstreamSkip(bs, 5);   /* hor_sampling_factor_m */                                                  BitstreamSkip(bs, 5);   /* hor_sampling_factor_m */
# Line 819  Line 769 
769                                                  return -1;                                                  return -1;
770                                          }                                          }
771                                  }                                  }
772                                  BitstreamSkip(bs, 1);   // resync_marker_disable                                  BitstreamSkip(bs, 1);   /* resync_marker_disable */
773    
774                          }                          }
775    
# Line 827  Line 777 
777    
778                  } else if (start_code == GRPOFVOP_START_CODE) {                  } else if (start_code == GRPOFVOP_START_CODE) {
779    
780                          DPRINTF(DPRINTF_STARTCODE, "<group_of_vop>");                          DPRINTF(XVID_DEBUG_STARTCODE, "<group_of_vop>\n");
781    
782                          BitstreamSkip(bs, 32);                          BitstreamSkip(bs, 32);
783                          {                          {
# Line 838  Line 788 
788                                  READ_MARKER();                                  READ_MARKER();
789                                  seconds = BitstreamGetBits(bs, 6);                                  seconds = BitstreamGetBits(bs, 6);
790    
791                                  DPRINTF(DPRINTF_HEADER, "time %ih%im%is", hours,minutes,seconds);                                  DPRINTF(XVID_DEBUG_HEADER, "time %ih%im%is\n", hours,minutes,seconds);
792                          }                          }
793                          BitstreamSkip(bs, 1);   // closed_gov                          BitstreamSkip(bs, 1);   /* closed_gov */
794                          BitstreamSkip(bs, 1);   // broken_link                          BitstreamSkip(bs, 1);   /* broken_link */
795    
796                  } else if (start_code == VOP_START_CODE) {                  } else if (start_code == VOP_START_CODE) {
797    
798                          DPRINTF(DPRINTF_STARTCODE, "<vop>");                          DPRINTF(XVID_DEBUG_STARTCODE, "<vop>\n");
799    
800                          BitstreamSkip(bs, 32);  // vop_start_code                          BitstreamSkip(bs, 32);  /* vop_start_code */
801    
802                          coding_type = BitstreamGetBits(bs, 2);  // vop_coding_type                          coding_type = BitstreamGetBits(bs, 2);  /* vop_coding_type */
803                          DPRINTF(DPRINTF_HEADER, "coding_type %i", coding_type);                          DPRINTF(XVID_DEBUG_HEADER, "coding_type %i\n", coding_type);
804    
805  // *************************** for decode B-frame time ***********************                          /*********************** for decode B-frame time ***********************/
806                          while (BitstreamGetBit(bs) != 0)        // time_base                          while (BitstreamGetBit(bs) != 0)        /* time_base */
807                                  time_incr++;                                  time_incr++;
808    
809                          READ_MARKER();                          READ_MARKER();
810    
811                          if (dec->time_inc_bits) {                          if (dec->time_inc_bits) {
812                                  time_increment = (BitstreamGetBits(bs, dec->time_inc_bits));    // vop_time_increment                                  time_increment = (BitstreamGetBits(bs, dec->time_inc_bits));    /* vop_time_increment */
813                          }                          }
814    
815                          DPRINTF(DPRINTF_HEADER, "time_base %i", time_incr);                          DPRINTF(XVID_DEBUG_HEADER, "time_base %i\n", time_incr);
816                          DPRINTF(DPRINTF_HEADER, "time_increment %i", time_increment);                          DPRINTF(XVID_DEBUG_HEADER, "time_increment %i\n", time_increment);
817    
818                          DPRINTF(DPRINTF_TIMECODE, "%c %i:%i",                          DPRINTF(XVID_DEBUG_TIMECODE, "%c %i:%i\n",
819                                  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',
820                                  time_incr, time_increment);                                  time_incr, time_increment);
821    
# Line 874  Line 824 
824                                  dec->time_base += time_incr;                                  dec->time_base += time_incr;
825                                  dec->time = time_increment;                                  dec->time = time_increment;
826    
827  /*                                      dec->time_base * dec->time_inc_resolution +  #if 0
828                                            dec->time_base * dec->time_inc_resolution +
829                                          time_increment;                                          time_increment;
830  */                              dec->time_pp = (uint32_t)  #endif
831                                            dec->time_pp = (uint32_t)
832                                          (dec->time_inc_resolution + dec->time - dec->last_non_b_time)%dec->time_inc_resolution;                                          (dec->time_inc_resolution + dec->time - dec->last_non_b_time)%dec->time_inc_resolution;
833                                  dec->last_non_b_time = dec->time;                                  dec->last_non_b_time = dec->time;
834                          } else {                          } else {
835                                  dec->time = time_increment;                                  dec->time = time_increment;
836  /*  #if 0
837                                          (dec->last_time_base +                                          (dec->last_time_base +
838                                           time_incr) * dec->time_inc_resolution + time_increment;                                           time_incr) * dec->time_inc_resolution + time_increment;
839  */  #endif
840                                  dec->time_bp = (uint32_t)                                  dec->time_bp = (uint32_t)
841                                          (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;
842                          }                          }
843                          DPRINTF(DPRINTF_HEADER,"time_pp=%i", dec->time_pp);                          DPRINTF(XVID_DEBUG_HEADER,"time_pp=%i\n", dec->time_pp);
844                          DPRINTF(DPRINTF_HEADER,"time_bp=%i", dec->time_bp);                          DPRINTF(XVID_DEBUG_HEADER,"time_bp=%i\n", dec->time_bp);
845    
846                          READ_MARKER();                          READ_MARKER();
847    
848                          if (!BitstreamGetBit(bs))       // vop_coded                          if (!BitstreamGetBit(bs))       /* vop_coded */
849                          {                          {
850                                  DPRINTF(DPRINTF_HEADER, "vop_coded==false");                                  DPRINTF(XVID_DEBUG_HEADER, "vop_coded==false\n");
851                                  return N_VOP;                                  return N_VOP;
852                          }                          }
853    
# Line 905  Line 857 
857                                  int vop_id_for_prediction;                                  int vop_id_for_prediction;
858    
859                                  vop_id = BitstreamGetBits(bs, MIN(dec->time_inc_bits + 3, 15));                                  vop_id = BitstreamGetBits(bs, MIN(dec->time_inc_bits + 3, 15));
860                                  DPRINTF(DPRINTF_HEADER, "vop_id %i", vop_id);                                  DPRINTF(XVID_DEBUG_HEADER, "vop_id %i\n", vop_id);
861                                  if (BitstreamGetBit(bs))        /* vop_id_for_prediction_indication */                                  if (BitstreamGetBit(bs))        /* vop_id_for_prediction_indication */
862                                  {                                  {
863                                          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));
864                                          DPRINTF(DPRINTF_HEADER, "vop_id_for_prediction %i", vop_id_for_prediction);                                          DPRINTF(XVID_DEBUG_HEADER, "vop_id_for_prediction %i\n", vop_id_for_prediction);
865                                  }                                  }
866                                  READ_MARKER();                                  READ_MARKER();
867                          }                          }
868    
869    
870    
871                          // fix a little bug by MinChen <chenm002@163.com>                          /* fix a little bug by MinChen <chenm002@163.com> */
872                          if ((dec->shape != VIDOBJLAY_SHAPE_BINARY_ONLY) &&                          if ((dec->shape != VIDOBJLAY_SHAPE_BINARY_ONLY) &&
873                                  ( (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) ) ) {
874                                  *rounding = BitstreamGetBit(bs);        // rounding_type                                  *rounding = BitstreamGetBit(bs);        /* rounding_type */
875                                  DPRINTF(DPRINTF_HEADER, "rounding %i", *rounding);                                  DPRINTF(XVID_DEBUG_HEADER, "rounding %i\n", *rounding);
876                          }                          }
877    
878                          if (dec->reduced_resolution_enable &&                          if (dec->reduced_resolution_enable &&
# Line 928  Line 880 
880                                  (coding_type == P_VOP || coding_type == I_VOP)) {                                  (coding_type == P_VOP || coding_type == I_VOP)) {
881    
882                                  *reduced_resolution = BitstreamGetBit(bs);                                  *reduced_resolution = BitstreamGetBit(bs);
883                                  DPRINTF(DPRINTF_HEADER, "reduced_resolution %i", *reduced_resolution);                                  DPRINTF(XVID_DEBUG_HEADER, "reduced_resolution %i\n", *reduced_resolution);
884                          }                          }
885                          else                          else
886                          {                          {
# Line 950  Line 902 
902                                          vert_mc_ref = BitstreamGetBits(bs, 13);                                          vert_mc_ref = BitstreamGetBits(bs, 13);
903                                          READ_MARKER();                                          READ_MARKER();
904    
905                                          DPRINTF(DPRINTF_HEADER, "width %i", width);                                          DPRINTF(XVID_DEBUG_HEADER, "width %i\n", width);
906                                          DPRINTF(DPRINTF_HEADER, "height %i", height);                                          DPRINTF(XVID_DEBUG_HEADER, "height %i\n", height);
907                                          DPRINTF(DPRINTF_HEADER, "horiz_mc_ref %i", horiz_mc_ref);                                          DPRINTF(XVID_DEBUG_HEADER, "horiz_mc_ref %i\n", horiz_mc_ref);
908                                          DPRINTF(DPRINTF_HEADER, "vert_mc_ref %i", vert_mc_ref);                                          DPRINTF(XVID_DEBUG_HEADER, "vert_mc_ref %i\n", vert_mc_ref);
909                                  }                                  }
910    
911                                  BitstreamSkip(bs, 1);   // change_conv_ratio_disable                                  BitstreamSkip(bs, 1);   /* change_conv_ratio_disable */
912                                  if (BitstreamGetBit(bs))        // vop_constant_alpha                                  if (BitstreamGetBit(bs))        /* vop_constant_alpha */
913                                  {                                  {
914                                          BitstreamSkip(bs, 8);   // vop_constant_alpha_value                                          BitstreamSkip(bs, 8);   /* vop_constant_alpha_value */
915                                  }                                  }
916                          }                          }
917    
# Line 970  Line 922 
922                                          read_vop_complexity_estimation_header(bs, dec, coding_type);                                          read_vop_complexity_estimation_header(bs, dec, coding_type);
923                                  }                                  }
924    
925                                  // intra_dc_vlc_threshold                                  /* intra_dc_vlc_threshold */
926                                  *intra_dc_threshold =                                  *intra_dc_threshold =
927                                          intra_dc_threshold_table[BitstreamGetBits(bs, 3)];                                          intra_dc_threshold_table[BitstreamGetBits(bs, 3)];
928    
# Line 979  Line 931 
931    
932                                  if (dec->interlacing) {                                  if (dec->interlacing) {
933                                          dec->top_field_first = BitstreamGetBit(bs);                                          dec->top_field_first = BitstreamGetBit(bs);
934                                          DPRINTF(DPRINTF_HEADER, "interlace top_field_first %i", dec->top_field_first);                                          DPRINTF(XVID_DEBUG_HEADER, "interlace top_field_first %i\n", dec->top_field_first);
935                                          dec->alternate_vertical_scan = BitstreamGetBit(bs);                                          dec->alternate_vertical_scan = BitstreamGetBit(bs);
936                                          DPRINTF(DPRINTF_HEADER, "interlace alternate_vertical_scan %i", dec->alternate_vertical_scan);                                          DPRINTF(XVID_DEBUG_HEADER, "interlace alternate_vertical_scan %i\n", dec->alternate_vertical_scan);
937    
938                                  }                                  }
939                          }                          }
# Line 1015  Line 967 
967                                          gmc_warp->duv[i].x = x;                                          gmc_warp->duv[i].x = x;
968                                          gmc_warp->duv[i].y = y;                                          gmc_warp->duv[i].y = y;
969    
970                                          DPRINTF(DPRINTF_HEADER,"sprite_warping_point[%i] xy=(%i,%i)", i, x, y);                                          DPRINTF(XVID_DEBUG_HEADER,"sprite_warping_point[%i] xy=(%i,%i)\n", i, x, y);
971                                  }                                  }
972    
973                                  if (dec->sprite_brightness_change)                                  if (dec->sprite_brightness_change)
974                                  {                                  {
975                                          // XXX: brightness_change_factor()                                          /* XXX: brightness_change_factor() */
976                                  }                                  }
977                                  if (dec->sprite_enable == SPRITE_STATIC)                                  if (dec->sprite_enable == SPRITE_STATIC)
978                                  {                                  {
979                                          // XXX: todo                                          /* XXX: todo */
980                                  }                                  }
981    
982                          }                          }
983    
984                          if ((*quant = BitstreamGetBits(bs, dec->quant_bits)) < 1)       // vop_quant                          if ((*quant = BitstreamGetBits(bs, dec->quant_bits)) < 1)       /* vop_quant */
985                                  *quant = 1;                                  *quant = 1;
986                          DPRINTF(DPRINTF_HEADER, "quant %i", *quant);                          DPRINTF(XVID_DEBUG_HEADER, "quant %i\n", *quant);
987    
988                          if (coding_type != I_VOP) {                          if (coding_type != I_VOP) {
989                                  *fcode_forward = BitstreamGetBits(bs, 3);       // fcode_forward                                  *fcode_forward = BitstreamGetBits(bs, 3);       /* fcode_forward */
990                                  DPRINTF(DPRINTF_HEADER, "fcode_forward %i", *fcode_forward);                                  DPRINTF(XVID_DEBUG_HEADER, "fcode_forward %i\n", *fcode_forward);
991                          }                          }
992    
993                          if (coding_type == B_VOP) {                          if (coding_type == B_VOP) {
994                                  *fcode_backward = BitstreamGetBits(bs, 3);      // fcode_backward                                  *fcode_backward = BitstreamGetBits(bs, 3);      /* fcode_backward */
995                                  DPRINTF(DPRINTF_HEADER, "fcode_backward %i", *fcode_backward);                                  DPRINTF(XVID_DEBUG_HEADER, "fcode_backward %i\n", *fcode_backward);
996                          }                          }
997                          if (!dec->scalability) {                          if (!dec->scalability) {
998                                  if ((dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR) &&                                  if ((dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR) &&
999                                          (coding_type != I_VOP)) {                                          (coding_type != I_VOP)) {
1000                                          BitstreamSkip(bs, 1);   // vop_shape_coding_type                                          BitstreamSkip(bs, 1);   /* vop_shape_coding_type */
1001                                  }                                  }
1002                          }                          }
1003                          return coding_type;                          return coding_type;
# Line 1055  Line 1007 
1007                      int i, version, build;                      int i, version, build;
1008                          char packed;                          char packed;
1009    
1010                          BitstreamSkip(bs, 32);  // user_data_start_code                          BitstreamSkip(bs, 32);  /* user_data_start_code */
1011    
1012                          tmp[0] = BitstreamShowBits(bs, 8);                          tmp[0] = BitstreamShowBits(bs, 8);
1013    
# Line 1068  Line 1020 
1020                                  BitstreamSkip(bs, 8);                                  BitstreamSkip(bs, 8);
1021                          }                          }
1022    
1023                          DPRINTF(DPRINTF_STARTCODE, "<user_data>: %s\n", tmp);                          DPRINTF(XVID_DEBUG_STARTCODE, "<user_data>: %s\n", tmp);
1024    
1025                            /* read xvid bitstream version */
1026                            if(strncmp(tmp, "XviD", 4) == 0) {
1027                                    sscanf(tmp, "XviD%d", &dec->bs_version);
1028                                    DPRINTF(XVID_DEBUG_HEADER, "xvid bitstream version=%i", dec->bs_version);
1029                            }
1030    
1031                      /* divx detection */                      /* divx detection */
1032                          i = sscanf(tmp, "DivX%dBuild%d%c", &version, &build, &packed);                          i = sscanf(tmp, "DivX%dBuild%d%c", &version, &build, &packed);
# Line 1078  Line 1036 
1036                          if (i >= 2)                          if (i >= 2)
1037                          {                          {
1038                                  dec->packed_mode = (i == 3 && packed == 'p');                                  dec->packed_mode = (i == 3 && packed == 'p');
1039                                  DPRINTF(DPRINTF_HEADER, "divx version=%i, build=%i packed=%i",                                  DPRINTF(XVID_DEBUG_HEADER, "divx version=%i, build=%i packed=%i\n",
1040                                                  version, build, dec->packed_mode);                                                  version, build, dec->packed_mode);
1041                          }                          }
1042    
1043                  } else                                  // start_code == ?                  } else                                  /* start_code == ? */
1044                  {                  {
1045                          if (BitstreamShowBits(bs, 24) == 0x000001) {                          if (BitstreamShowBits(bs, 24) == 0x000001) {
1046                                  DPRINTF(DPRINTF_STARTCODE, "<unknown: %x>", BitstreamShowBits(bs, 32));                                  DPRINTF(XVID_DEBUG_STARTCODE, "<unknown: %x>\n", BitstreamShowBits(bs, 32));
1047                          }                          }
1048                          BitstreamSkip(bs, 8);                          BitstreamSkip(bs, 8);
1049                  }                  }
1050          }          }
1051          while ((BitstreamPos(bs) >> 3) < bs->length);          while ((BitstreamPos(bs) >> 3) < bs->length);
1052    
1053          //DPRINTF("*** WARNING: no vop_start_code found");  #if 0
1054            DPRINTF("*** WARNING: no vop_start_code found");
1055    #endif
1056          return -1;                                      /* ignore it */          return -1;                                      /* ignore it */
1057  }  }
1058    
# Line 1123  Line 1083 
1083  */  */
1084  void  void
1085  BitstreamWriteVolHeader(Bitstream * const bs,  BitstreamWriteVolHeader(Bitstream * const bs,
1086                                                  const MBParam * pParam,                                                  const MBParam * pParam)
                                                 const FRAMEINFO * const frame)  
1087  {  {
1088          static const unsigned int vo_id = 0;          static const unsigned int vo_id = 0;
1089          static const unsigned int vol_id = 0;          static const unsigned int vol_id = 0;
1090          int vol_ver_id=1;          int vol_ver_id=1;
1091          int profile = 0x03;     /* simple profile/level 3 */      int vol_type_ind=VIDOBJLAY_TYPE_SIMPLE;
1092    
1093          if ( pParam->m_quarterpel ||  (frame->global_flags & XVID_GMC) ||          if ( (pParam->vol_flags & XVID_VOL_QUARTERPEL) ||
1094                   (pParam->global & XVID_GLOBAL_REDUCED))           (pParam->vol_flags & XVID_VOL_GMC) ||
1095                     (pParam->vol_flags & XVID_VOL_REDUCED_ENABLE))
1096                  vol_ver_id = 2;                  vol_ver_id = 2;
1097    
1098          if ((pParam->global & XVID_GLOBAL_REDUCED))      if ((pParam->vol_flags & XVID_VOL_REDUCED_ENABLE)) {
1099                  profile = 0x93; /* advanced realtime simple profile/level 3 */          vol_type_ind = VIDOBJLAY_TYPE_ART_SIMPLE;
1100        }
1101    
1102          if (pParam->m_quarterpel ||  (frame->global_flags & XVID_GMC))          if ((pParam->vol_flags & XVID_VOL_QUARTERPEL) ||
1103                  profile = 0xf3; /* advanced simple profile/level 2 */          (pParam->vol_flags & XVID_VOL_GMC)) {
1104            vol_type_ind = VIDOBJLAY_TYPE_ASP;
1105        }
1106    
1107          // visual_object_sequence_start_code          /* visual_object_sequence_start_code */
1108  //      BitstreamPad(bs);  #if 0
1109  /* no padding here, anymore. You have to make sure that you are          BitstreamPad(bs);
1110     byte aligned, and that always 1-8 padding bits have been written */  #endif
1111    
1112            /*
1113             * no padding here, anymore. You have to make sure that you are
1114             * byte aligned, and that always 1-8 padding bits have been written
1115             */
1116    
1117        if (pParam->profile) {
1118          BitstreamPutBits(bs, VISOBJSEQ_START_CODE, 32);          BitstreamPutBits(bs, VISOBJSEQ_START_CODE, 32);
1119          BitstreamPutBits(bs, profile, 8);              BitstreamPutBits(bs, pParam->profile, 8);
1120        }
1121    
1122          // visual_object_start_code          /* visual_object_start_code */
1123          BitstreamPad(bs);          BitstreamPad(bs);
1124          BitstreamPutBits(bs, VISOBJ_START_CODE, 32);          BitstreamPutBits(bs, VISOBJ_START_CODE, 32);
1125          BitstreamPutBits(bs, 0, 1);             // is_visual_object_identifier          BitstreamPutBits(bs, 0, 1);             /* is_visual_object_identifier */
1126          BitstreamPutBits(bs, VISOBJ_TYPE_VIDEO, 4);             // visual_object_type          BitstreamPutBits(bs, VISOBJ_TYPE_VIDEO, 4);             /* visual_object_type */
1127    
1128          // video object_start_code & vo_id          /* video object_start_code & vo_id */
1129          BitstreamPad(bs);          BitstreamPad(bs);
1130          BitstreamPutBits(bs, VIDOBJ_START_CODE|(vo_id&0x5), 32);          BitstreamPutBits(bs, VIDOBJ_START_CODE|(vo_id&0x5), 32);
1131    
1132          // video_object_layer_start_code & vol_id          /* video_object_layer_start_code & vol_id */
1133          BitstreamPad(bs);          BitstreamPad(bs);
1134          BitstreamPutBits(bs, VIDOBJLAY_START_CODE|(vol_id&0x4), 32);          BitstreamPutBits(bs, VIDOBJLAY_START_CODE|(vol_id&0x4), 32);
1135    
1136          BitstreamPutBit(bs, 0);         // random_accessible_vol          BitstreamPutBit(bs, 0);         /* random_accessible_vol */
1137          BitstreamPutBits(bs, 0, 8);     // video_object_type_indication          BitstreamPutBits(bs, vol_type_ind, 8);  /* video_object_type_indication */
1138    
1139          if (vol_ver_id == 1)          if (vol_ver_id == 1)
1140          {          {
1141                  BitstreamPutBit(bs, 0);                         // is_object_layer_identified (0=not given)                  BitstreamPutBit(bs, 0);                         /* is_object_layer_identified (0=not given) */
1142          }          }
1143          else          else
1144          {          {
1145                  BitstreamPutBit(bs, 1);         // is_object_layer_identified                  BitstreamPutBit(bs, 1);         /* is_object_layer_identified */
1146                  BitstreamPutBits(bs, vol_ver_id, 4);    // vol_ver_id == 2                  BitstreamPutBits(bs, vol_ver_id, 4);    /* vol_ver_id == 2 */
1147                  BitstreamPutBits(bs, 4, 3); // vol_ver_priority (1==lowest, 7==highest) ??                  BitstreamPutBits(bs, 4, 3); /* vol_ver_priority (1==lowest, 7==highest) ?? */
1148          }          }
1149    
1150          BitstreamPutBits(bs, 1, 4);     // aspect_ratio_info (1=1:1)          BitstreamPutBits(bs, 1, 4);     /* aspect_ratio_info (1=1:1) */
1151    
1152          BitstreamPutBit(bs, 1); // vol_control_parameters          BitstreamPutBit(bs, 1); /* vol_control_parameters */
1153          BitstreamPutBits(bs, 1, 2);     // chroma_format 1="4:2:0"          BitstreamPutBits(bs, 1, 2);     /* chroma_format 1="4:2:0" */
1154    
1155          if (pParam->max_bframes > 0) {          if (pParam->max_bframes > 0) {
1156                  BitstreamPutBit(bs, 0); // low_delay                  BitstreamPutBit(bs, 0); /* low_delay */
1157          } else          } else
1158          {          {
1159                  BitstreamPutBit(bs, 1); // low_delay                  BitstreamPutBit(bs, 1); /* low_delay */
1160          }          }
1161          BitstreamPutBit(bs, 0); // vbv_parameters (0=not given)          BitstreamPutBit(bs, 0); /* vbv_parameters (0=not given) */
1162    
1163          BitstreamPutBits(bs, 0, 2);     // video_object_layer_shape (0=rectangular)          BitstreamPutBits(bs, 0, 2);     /* video_object_layer_shape (0=rectangular) */
1164    
1165          WRITE_MARKER();          WRITE_MARKER();
1166    
1167          /* time_inc_resolution; ignored by current decore versions          /*
1168             eg. 2fps     res=2       inc=1           * time_inc_resolution; ignored by current decore versions
1169             25fps        res=25      inc=1           * eg. 2fps     res=2       inc=1
1170             29.97fps res=30000   inc=1001           *     25fps    res=25      inc=1
1171             *     29.97fps res=30000   inc=1001
1172           */           */
1173          BitstreamPutBits(bs, pParam->fbase, 16);          BitstreamPutBits(bs, pParam->fbase, 16);
1174    
1175          WRITE_MARKER();          WRITE_MARKER();
1176    
1177          BitstreamPutBit(bs, 1);         // fixed_vop_rate = 1      if (pParam->fincr>0) {
1178          BitstreamPutBits(bs, pParam->fincr, log2bin(pParam->fbase));    // fixed_vop_time_increment              BitstreamPutBit(bs, 1);             /* fixed_vop_rate = 1 */
1179                BitstreamPutBits(bs, pParam->fincr, log2bin(pParam->fbase));        /* fixed_vop_time_increment */
1180        }else{
1181            BitstreamPutBit(bs, 0);         /* fixed_vop_rate = 0 */
1182        }
1183    
1184          WRITE_MARKER();          WRITE_MARKER();
1185          BitstreamPutBits(bs, pParam->width, 13);        // width          BitstreamPutBits(bs, pParam->width, 13);        /* width */
1186          WRITE_MARKER();          WRITE_MARKER();
1187          BitstreamPutBits(bs, pParam->height, 13);       // height          BitstreamPutBits(bs, pParam->height, 13);       /* height */
1188          WRITE_MARKER();          WRITE_MARKER();
1189    
1190          BitstreamPutBit(bs, frame->global_flags & XVID_INTERLACING);    // interlace          BitstreamPutBit(bs, pParam->vol_flags & XVID_VOL_INTERLACING);  /* interlace */
1191          BitstreamPutBit(bs, 1);         // obmc_disable (overlapped block motion compensation)          BitstreamPutBit(bs, 1);         /* obmc_disable (overlapped block motion compensation) */
1192    
1193          if (vol_ver_id != 1)          if (vol_ver_id != 1)
1194          {       if (frame->global_flags & XVID_GMC)          {       if ((pParam->vol_flags & XVID_VOL_GMC))
1195                  {       BitstreamPutBits(bs, 2, 2);             // sprite_enable=='GMC'                  {       BitstreamPutBits(bs, 2, 2);             /* sprite_enable=='GMC' */
1196                          BitstreamPutBits(bs, 2, 6);             // no_of_sprite_warping_points                          BitstreamPutBits(bs, 2, 6);             /* no_of_sprite_warping_points */
1197                          BitstreamPutBits(bs, 3, 2);             // sprite_warping_accuracy 0==1/2, 1=1/4, 2=1/8, 3=1/16                          BitstreamPutBits(bs, 3, 2);             /* sprite_warping_accuracy 0==1/2, 1=1/4, 2=1/8, 3=1/16 */
1198                          BitstreamPutBit(bs, 0);                 // sprite_brightness_change (not supported)                          BitstreamPutBit(bs, 0);                 /* sprite_brightness_change (not supported) */
1199    
1200  /* currently we use no_of_sprite_warping_points==2, sprite_warping_accuracy==3                          /*
1201     for DivX5 compatability */                           * currently we use no_of_sprite_warping_points==2, sprite_warping_accuracy==3
1202                             * for DivX5 compatability
1203                             */
1204    
1205                  } else                  } else
1206                          BitstreamPutBits(bs, 0, 2);             // sprite_enable==off                          BitstreamPutBits(bs, 0, 2);             /* sprite_enable==off */
1207          }          }
1208          else          else
1209                  BitstreamPutBit(bs, 0);         // sprite_enable==off                  BitstreamPutBit(bs, 0);         /* sprite_enable==off */
1210    
1211          BitstreamPutBit(bs, 0);         // not_8_bit          BitstreamPutBit(bs, 0);         /* not_8_bit */
1212    
1213          // quant_type   0=h.263  1=mpeg4(quantizer tables)          /* quant_type   0=h.263  1=mpeg4(quantizer tables) */
1214          BitstreamPutBit(bs, pParam->m_quant_type);          BitstreamPutBit(bs, pParam->vol_flags & XVID_VOL_MPEGQUANT);
1215    
1216          if (pParam->m_quant_type) {          if ((pParam->vol_flags & XVID_VOL_MPEGQUANT)) {
1217                  BitstreamPutBit(bs, get_intra_matrix_status()); // load_intra_quant_mat                  BitstreamPutBit(bs, get_intra_matrix_status()); /* load_intra_quant_mat */
1218                  if (get_intra_matrix_status()) {                  if (get_intra_matrix_status()) {
1219                          bs_put_matrix(bs, get_intra_matrix());                          bs_put_matrix(bs, get_intra_matrix());
1220                  }                  }
1221    
1222                  BitstreamPutBit(bs, get_inter_matrix_status()); // load_inter_quant_mat                  BitstreamPutBit(bs, get_inter_matrix_status()); /* load_inter_quant_mat */
1223                  if (get_inter_matrix_status()) {                  if (get_inter_matrix_status()) {
1224                          bs_put_matrix(bs, get_inter_matrix());                          bs_put_matrix(bs, get_inter_matrix());
1225                  }                  }
# Line 1250  Line 1227 
1227          }          }
1228    
1229          if (vol_ver_id != 1) {          if (vol_ver_id != 1) {
1230                  if (pParam->m_quarterpel)                  if ((pParam->vol_flags & XVID_VOL_QUARTERPEL))
1231                          BitstreamPutBit(bs, 1);         //  quarterpel                          BitstreamPutBit(bs, 1);         /* quarterpel  */
1232                  else                  else
1233                          BitstreamPutBit(bs, 0);         // no quarterpel                          BitstreamPutBit(bs, 0);         /* no quarterpel */
1234          }          }
1235    
1236          BitstreamPutBit(bs, 1);         // complexity_estimation_disable          BitstreamPutBit(bs, 1);         /* complexity_estimation_disable */
1237          BitstreamPutBit(bs, 1);         // resync_marker_disable          BitstreamPutBit(bs, 1);         /* resync_marker_disable */
1238          BitstreamPutBit(bs, 0);         // data_partitioned          BitstreamPutBit(bs, 0);         /* data_partitioned */
1239    
1240          if (vol_ver_id != 1)          if (vol_ver_id != 1)
1241          {          {
1242                  BitstreamPutBit(bs, 0);         // newpred_enable                  BitstreamPutBit(bs, 0);         /* newpred_enable */
1243    
1244                  BitstreamPutBit(bs, (pParam->global & XVID_GLOBAL_REDUCED)?1:0);                  BitstreamPutBit(bs, (pParam->vol_flags & XVID_VOL_REDUCED_ENABLE)?1:0);
1245                                                                          /* reduced_resolution_vop_enabled */                                                                          /* reduced_resolution_vop_enabled */
1246          }          }
1247    
1248          BitstreamPutBit(bs, 0);         // scalability          BitstreamPutBit(bs, 0);         /* scalability */
1249    
1250          /* fake divx5 id, to ensure compatibility with divx5 decoder */          /* fake divx5 id, to ensure compatibility with divx5 decoder */
1251  #define DIVX5_ID "DivX501b481p"  #define DIVX5_ID "DivX000b000p"
1252          if (pParam->max_bframes > 0 && (pParam->global & XVID_GLOBAL_PACKED)) {          if (pParam->max_bframes > 0 && (pParam->global_flags & XVID_GLOBAL_PACKED)) {
1253                  BitstreamWriteUserData(bs, DIVX5_ID, strlen(DIVX5_ID));                  BitstreamWriteUserData(bs, DIVX5_ID, strlen(DIVX5_ID));
1254          }          }
1255    
# Line 1294  Line 1271 
1271  {  {
1272          uint32_t i;          uint32_t i;
1273    
1274  //      BitstreamPad(bs);  #if 0
1275  /* no padding here, anymore. You have to make sure that you are          BitstreamPad(bs);
1276     byte aligned, and that always 1-8 padding bits have been written */  #endif
1277    
1278            /*
1279             * no padding here, anymore. You have to make sure that you are
1280             * byte aligned, and that always 1-8 padding bits have been written
1281             */
1282    
1283          BitstreamPutBits(bs, VOP_START_CODE, 32);          BitstreamPutBits(bs, VOP_START_CODE, 32);
1284    
1285          BitstreamPutBits(bs, frame->coding_type, 2);          BitstreamPutBits(bs, frame->coding_type, 2);
1286          DPRINTF(DPRINTF_HEADER, "coding_type = %i", frame->coding_type);  #if 0
1287            DPRINTF(XVID_DEBUG_HEADER, "coding_type = %i\n", frame->coding_type);
1288    #endif
1289    
1290          for (i = 0; i < frame->seconds; i++) {          for (i = 0; i < frame->seconds; i++) {
1291                  BitstreamPutBit(bs, 1);                  BitstreamPutBit(bs, 1);
# Line 1310  Line 1294 
1294    
1295          WRITE_MARKER();          WRITE_MARKER();
1296    
1297          // time_increment: value=nth_of_sec, nbits = log2(resolution)          /* time_increment: value=nth_of_sec, nbits = log2(resolution) */
1298    
1299          BitstreamPutBits(bs, frame->ticks, log2bin(pParam->fbase));          BitstreamPutBits(bs, frame->ticks, log2bin(pParam->fbase));
1300          /*DPRINTF("[%i:%i] %c", frame->seconds, frame->ticks,  #if 0
1301                          frame->coding_type == I_VOP ? 'I' : frame->coding_type ==          DPRINTF("[%i:%i] %c",
1302                          P_VOP ? 'P' : 'B');*/                          frame->seconds, frame->ticks,
1303                            frame->coding_type == I_VOP ? 'I' :
1304                            frame->coding_type == P_VOP ? 'P' :
1305                            frame->coding_type == S_VOP ? 'S' :     'B');
1306    #endif
1307    
1308          WRITE_MARKER();          WRITE_MARKER();
1309    
# Line 1324  Line 1312 
1312                  return;                  return;
1313          }          }
1314    
1315          BitstreamPutBits(bs, 1, 1);     // vop_coded          BitstreamPutBits(bs, 1, 1);     /* vop_coded */
1316    
1317          if ( (frame->coding_type == P_VOP) || (frame->coding_type == S_VOP) )          if ( (frame->coding_type == P_VOP) || (frame->coding_type == S_VOP) )
1318                  BitstreamPutBits(bs, frame->rounding_type, 1);                  BitstreamPutBits(bs, frame->rounding_type, 1);
1319    
1320          if ((pParam->global & XVID_GLOBAL_REDUCED))          if ((frame->vol_flags & XVID_VOL_REDUCED_ENABLE))
1321                  BitstreamPutBit(bs, (frame->global_flags & XVID_REDUCED)?1:0);                  BitstreamPutBit(bs, (frame->vop_flags & XVID_VOP_REDUCED)?1:0);
1322    
1323          BitstreamPutBits(bs, 0, 3);     // intra_dc_vlc_threshold          BitstreamPutBits(bs, 0, 3);     /* intra_dc_vlc_threshold */
1324    
1325          if (frame->global_flags & XVID_INTERLACING) {          if ((frame->vol_flags & XVID_VOL_INTERLACING)) {
1326                  BitstreamPutBit(bs, (frame->global_flags & XVID_TOPFIELDFIRST));                  BitstreamPutBit(bs, (frame->vop_flags & XVID_VOP_TOPFIELDFIRST));
1327                  BitstreamPutBit(bs, (frame->global_flags & XVID_ALTERNATESCAN));                  BitstreamPutBit(bs, (frame->vop_flags & XVID_VOP_ALTERNATESCAN));
1328          }          }
1329    
1330          if (frame->coding_type == S_VOP) {          if (frame->coding_type == S_VOP) {
1331                  if (1)  {               // no_of_sprite_warping_points>=1 (we use 2!)                  if (1)  {               /* no_of_sprite_warping_points>=1 (we use 2!) */
1332                          int k;                          int k;
1333                          for (k=0;k<2;k++)                          for (k=0;k<2;k++)
1334                          {                          {
1335                                  bs_put_spritetrajectory(bs, frame->warp.duv[k].x ); // du[k]                                  bs_put_spritetrajectory(bs, frame->warp.duv[k].x ); /* du[k]  */
1336                                  WRITE_MARKER();                                  WRITE_MARKER();
1337    
1338                                  bs_put_spritetrajectory(bs, frame->warp.duv[k].y ); // dv[k]                                  bs_put_spritetrajectory(bs, frame->warp.duv[k].y ); /* dv[k]  */
1339                                  WRITE_MARKER();                                  WRITE_MARKER();
1340    
1341                          if (pParam->m_quarterpel)                          if ((frame->vol_flags & XVID_VOL_QUARTERPEL))
1342                          {                          {
1343                                  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*\n", k, frame->warp.duv[k].x/2, frame->warp.duv[k].y/2);
1344                          }                          }
1345                          else                          else
1346                          {                          {
1347                                  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)\n", k, frame->warp.duv[k].x, frame->warp.duv[k].y);
1348                          }                          }
1349                          }                          }
1350                  }                  }
1351          }          }
1352    
1353    
1354          DPRINTF(DPRINTF_HEADER, "quant = %i", frame->quant);  #if 0
1355            DPRINTF(XVID_DEBUG_HEADER, "quant = %i\n", frame->quant);
1356    #endif
1357    
1358          BitstreamPutBits(bs, frame->quant, 5);  // quantizer          BitstreamPutBits(bs, frame->quant, 5);  /* quantizer */
1359    
1360          if (frame->coding_type != I_VOP)          if (frame->coding_type != I_VOP)
1361                  BitstreamPutBits(bs, frame->fcode, 3);  // forward_fixed_code                  BitstreamPutBits(bs, frame->fcode, 3);  /* forward_fixed_code */
1362    
1363          if (frame->coding_type == B_VOP)          if (frame->coding_type == B_VOP)
1364                  BitstreamPutBits(bs, frame->bcode, 3);  // backward_fixed_code                  BitstreamPutBits(bs, frame->bcode, 3);  /* backward_fixed_code */
1365    
1366  }  }
1367    

Legend:
Removed from v.1.39  
changed lines
  Added in v.1.39.2.12

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