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

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

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

revision 1098, Mon Jul 28 12:39:32 2003 UTC revision 1627, Mon Aug 1 10:53:46 2005 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: bitstream.c,v 1.53 2005-08-01 10:53:46 Isibaar Exp $
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 75  Line 33 
33  #include "mbcoding.h"  #include "mbcoding.h"
34    
35    
36  static uint32_t __inline  static const uint8_t log2_tab_16[16] =  { 0, 1, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4 };
37  log2bin(uint32_t value)  
38    static uint32_t __inline log2bin(uint32_t value)
39  {  {
 /* Changed by Chenm001 */  
 #if !defined(_MSC_VER)  
40          int n = 0;          int n = 0;
41      if (value & 0xffff0000) {
42          while (value) {      value >>= 16;
43                  value >>= 1;      n += 16;
44                  n++;    }
45          }    if (value & 0xff00) {
46          return n;      value >>= 8;
47  #else      n += 8;
48          __asm {    }
49                  bsr eax, value    if (value & 0xf0) {
50                  inc eax      value >>= 4;
51        n += 4;
52          }          }
53  #endif   return n + log2_tab_16[value];
54  }  }
55    
   
56  static const uint32_t intra_dc_threshold_table[] = {  static const uint32_t intra_dc_threshold_table[] = {
57          32,                                                     /* never use */          32,                                                     /* never use */
58          13,          13,
# Line 121  Line 78 
78                  matrix[scan_tables[0][i++]] = value;                  matrix[scan_tables[0][i++]] = value;
79          }          }
80          while (value != 0 && i < 64);          while (value != 0 && i < 64);
         i--;    // fix little bug at coeff not full  
81    
82            if (value != 0) return;
83    
84            i--;
85          while (i < 64) {          while (i < 64) {
86                  matrix[scan_tables[0][i++]] = last;                  matrix[scan_tables[0][i++]] = last;
87          }          }
# Line 130  Line 89 
89    
90    
91    
92  // for PVOP addbits == fcode - 1  /*
93  // for BVOP addbits == max(fcode,bcode) - 1   * for PVOP addbits == fcode - 1
94  // returns mbpos   * for BVOP addbits == max(fcode,bcode) - 1
95     * returns mbpos
96     */
97  int  int
98  read_video_packet_header(Bitstream *bs,  read_video_packet_header(Bitstream *bs,
99                                                  DECODER * dec,                                                  DECODER * dec,
# Line 150  Line 111 
111          BitstreamSkip(bs, BitstreamNumBitsToByteAlign(bs));          BitstreamSkip(bs, BitstreamNumBitsToByteAlign(bs));
112          BitstreamSkip(bs, startcode_bits);          BitstreamSkip(bs, startcode_bits);
113    
114          DPRINTF(DPRINTF_STARTCODE, "<video_packet_header>");          DPRINTF(XVID_DEBUG_STARTCODE, "<video_packet_header>\n");
115    
116          if (dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR)          if (dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR)
117          {          {
# Line 169  Line 130 
130          }          }
131    
132          mbnum = BitstreamGetBits(bs, mbnum_bits);               /* macroblock_number */          mbnum = BitstreamGetBits(bs, mbnum_bits);               /* macroblock_number */
133          DPRINTF(DPRINTF_HEADER, "mbnum %i", mbnum);          DPRINTF(XVID_DEBUG_HEADER, "mbnum %i\n", mbnum);
134    
135          if (dec->shape != VIDOBJLAY_SHAPE_BINARY_ONLY)          if (dec->shape != VIDOBJLAY_SHAPE_BINARY_ONLY)
136          {          {
137                  *quant = BitstreamGetBits(bs, dec->quant_bits); /* quant_scale */                  *quant = BitstreamGetBits(bs, dec->quant_bits); /* quant_scale */
138                  DPRINTF(DPRINTF_HEADER, "quant %i", *quant);                  DPRINTF(XVID_DEBUG_HEADER, "quant %i\n", *quant);
139          }          }
140    
141          if (dec->shape == VIDOBJLAY_SHAPE_RECTANGULAR)          if (dec->shape == VIDOBJLAY_SHAPE_RECTANGULAR)
142                  hec = BitstreamGetBit(bs);              /* header_extension_code */                  hec = BitstreamGetBit(bs);              /* header_extension_code */
143    
144    
145          DPRINTF(DPRINTF_HEADER, "header_extension_code %i", hec);          DPRINTF(XVID_DEBUG_HEADER, "header_extension_code %i\n", hec);
146          if (hec)          if (hec)
147          {          {
148                  int time_base;                  int time_base;
# Line 193  Line 154 
154                  if (dec->time_inc_bits)                  if (dec->time_inc_bits)
155                          time_increment = (BitstreamGetBits(bs, dec->time_inc_bits));    /* vop_time_increment */                          time_increment = (BitstreamGetBits(bs, dec->time_inc_bits));    /* vop_time_increment */
156                  READ_MARKER();                  READ_MARKER();
157                  DPRINTF(DPRINTF_HEADER,"time %i:%i", time_base, time_increment);                  DPRINTF(XVID_DEBUG_HEADER,"time %i:%i\n", time_base, time_increment);
158    
159                  coding_type = BitstreamGetBits(bs, 2);                  coding_type = BitstreamGetBits(bs, 2);
160                  DPRINTF(DPRINTF_HEADER,"coding_type %i", coding_type);                  DPRINTF(XVID_DEBUG_HEADER,"coding_type %i\n", coding_type);
161    
162                  if (dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR)                  if (dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR)
163                  {                  {
# Line 212  Line 173 
173                          if (dec->sprite_enable == SPRITE_GMC && coding_type == S_VOP &&                          if (dec->sprite_enable == SPRITE_GMC && coding_type == S_VOP &&
174                                  dec->sprite_warping_points > 0)                                  dec->sprite_warping_points > 0)
175                          {                          {
176                                  // TODO: sprite trajectory                                  /* TODO: sprite trajectory */
177                          }                          }
178                          if (dec->reduced_resolution_enable &&                          if (dec->reduced_resolution_enable &&
179                                  dec->shape == VIDOBJLAY_SHAPE_RECTANGULAR &&                                  dec->shape == VIDOBJLAY_SHAPE_RECTANGULAR &&
# Line 224  Line 185 
185                          if (coding_type != I_VOP && fcode_forward)                          if (coding_type != I_VOP && fcode_forward)
186                          {                          {
187                                  *fcode_forward = BitstreamGetBits(bs, 3);                                  *fcode_forward = BitstreamGetBits(bs, 3);
188                                  DPRINTF(DPRINTF_HEADER,"fcode_forward %i", *fcode_forward);                                  DPRINTF(XVID_DEBUG_HEADER,"fcode_forward %i\n", *fcode_forward);
189                          }                          }
190    
191                          if (coding_type == B_VOP && fcode_backward)                          if (coding_type == B_VOP && fcode_backward)
192                          {                          {
193                                  *fcode_backward = BitstreamGetBits(bs, 3);                                  *fcode_backward = BitstreamGetBits(bs, 3);
194                                  DPRINTF(DPRINTF_HEADER,"fcode_backward %i", *fcode_backward);                                  DPRINTF(XVID_DEBUG_HEADER,"fcode_backward %i\n", *fcode_backward);
195                          }                          }
196                  }                  }
   
197          }          }
198    
199          if (dec->newpred_enable)          if (dec->newpred_enable)
# 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 427  Line 387 
387  BitstreamReadHeaders(Bitstream * bs,  BitstreamReadHeaders(Bitstream * bs,
388                                           DECODER * dec,                                           DECODER * dec,
389                                           uint32_t * rounding,                                           uint32_t * rounding,
                                          uint32_t * reduced_resolution,  
390                                           uint32_t * quant,                                           uint32_t * quant,
391                                           uint32_t * fcode_forward,                                           uint32_t * fcode_forward,
392                                           uint32_t * fcode_backward,                                           uint32_t * fcode_backward,
# Line 441  Line 400 
400          int32_t time_increment = 0;          int32_t time_increment = 0;
401          int resize = 0;          int resize = 0;
402    
403          do {          while ((BitstreamPos(bs) >> 3) + 4 <= bs->length) {
404    
405                  BitstreamByteAlign(bs);                  BitstreamByteAlign(bs);
406                  start_code = BitstreamShowBits(bs, 32);                  start_code = BitstreamShowBits(bs, 32);
# Line 450  Line 409 
409    
410                          int profile;                          int profile;
411    
412                          DPRINTF(DPRINTF_STARTCODE, "<visual_object_sequence>");                          DPRINTF(XVID_DEBUG_STARTCODE, "<visual_object_sequence>\n");
413    
414                          BitstreamSkip(bs, 32);  // visual_object_sequence_start_code                          BitstreamSkip(bs, 32);  /* visual_object_sequence_start_code */
415                          profile = BitstreamGetBits(bs, 8);      // profile_and_level_indication                          profile = BitstreamGetBits(bs, 8);      /* profile_and_level_indication */
416    
417                          DPRINTF(DPRINTF_HEADER, "profile_and_level_indication %i", profile);                          DPRINTF(XVID_DEBUG_HEADER, "profile_and_level_indication %i\n", profile);
418    
419                  } else if (start_code == VISOBJSEQ_STOP_CODE) {                  } else if (start_code == VISOBJSEQ_STOP_CODE) {
420    
421                          BitstreamSkip(bs, 32);  // visual_object_sequence_stop_code                          BitstreamSkip(bs, 32);  /* visual_object_sequence_stop_code */
422    
423                          DPRINTF(DPRINTF_STARTCODE, "</visual_object_sequence>");                          DPRINTF(XVID_DEBUG_STARTCODE, "</visual_object_sequence>\n");
424    
425                  } else if (start_code == VISOBJ_START_CODE) {                  } else if (start_code == VISOBJ_START_CODE) {
426                          int visobj_ver_id;                          int visobj_ver_id;
427    
428                          DPRINTF(DPRINTF_STARTCODE, "<visual_object>");                          DPRINTF(XVID_DEBUG_STARTCODE, "<visual_object>\n");
429    
430                          BitstreamSkip(bs, 32);  // visual_object_start_code                          BitstreamSkip(bs, 32);  /* visual_object_start_code */
431                          if (BitstreamGetBit(bs))        // is_visual_object_identified                          if (BitstreamGetBit(bs))        /* is_visual_object_identified */
432                          {                          {
433                                  visobj_ver_id = BitstreamGetBits(bs, 4);        // visual_object_ver_id                                  visobj_ver_id = BitstreamGetBits(bs, 4);        /* visual_object_ver_id */
434                                  DPRINTF(DPRINTF_HEADER,"visobj_ver_id %i", visobj_ver_id);                                  DPRINTF(XVID_DEBUG_HEADER,"visobj_ver_id %i\n", visobj_ver_id);
435                                  BitstreamSkip(bs, 3);   // visual_object_priority                                  BitstreamSkip(bs, 3);   /* visual_object_priority */
436                          } else {                          } else {
437                                  visobj_ver_id = 1;                                  visobj_ver_id = 1;
438                          }                          }
439    
440                          if (BitstreamShowBits(bs, 4) != VISOBJ_TYPE_VIDEO)      // visual_object_type                          if (BitstreamShowBits(bs, 4) != VISOBJ_TYPE_VIDEO)      /* visual_object_type */
441                          {                          {
442                                  DPRINTF(DPRINTF_ERROR, "visual_object_type != video");                                  DPRINTF(XVID_DEBUG_ERROR, "visual_object_type != video\n");
443                                  return -1;                                  return -1;
444                          }                          }
445                          BitstreamSkip(bs, 4);                          BitstreamSkip(bs, 4);
446    
447                          // video_signal_type                          /* video_signal_type */
448    
449                          if (BitstreamGetBit(bs))        // video_signal_type                          if (BitstreamGetBit(bs))        /* video_signal_type */
450                          {                          {
451                                  DPRINTF(DPRINTF_HEADER,"+ video_signal_type");                                  DPRINTF(XVID_DEBUG_HEADER,"+ video_signal_type\n");
452                                  BitstreamSkip(bs, 3);   // video_format                                  BitstreamSkip(bs, 3);   /* video_format */
453                                  BitstreamSkip(bs, 1);   // video_range                                  BitstreamSkip(bs, 1);   /* video_range */
454                                  if (BitstreamGetBit(bs))        // color_description                                  if (BitstreamGetBit(bs))        /* color_description */
455                                  {                                  {
456                                          DPRINTF(DPRINTF_HEADER,"+ color_description");                                          DPRINTF(XVID_DEBUG_HEADER,"+ color_description");
457                                          BitstreamSkip(bs, 8);   // color_primaries                                          BitstreamSkip(bs, 8);   /* color_primaries */
458                                          BitstreamSkip(bs, 8);   // transfer_characteristics                                          BitstreamSkip(bs, 8);   /* transfer_characteristics */
459                                          BitstreamSkip(bs, 8);   // matrix_coefficients                                          BitstreamSkip(bs, 8);   /* matrix_coefficients */
460                                  }                                  }
461                          }                          }
462                  } else if ((start_code & ~VIDOBJ_START_CODE_MASK) == VIDOBJ_START_CODE) {                  } else if ((start_code & ~VIDOBJ_START_CODE_MASK) == VIDOBJ_START_CODE) {
463    
464                          DPRINTF(DPRINTF_STARTCODE, "<video_object>");                          DPRINTF(XVID_DEBUG_STARTCODE, "<video_object>\n");
465                          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);
466    
467                          BitstreamSkip(bs, 32);  // video_object_start_code                          BitstreamSkip(bs, 32);  /* video_object_start_code */
468    
469                  } else if ((start_code & ~VIDOBJLAY_START_CODE_MASK) == VIDOBJLAY_START_CODE) {                  } else if ((start_code & ~VIDOBJLAY_START_CODE_MASK) == VIDOBJLAY_START_CODE) {
470    
471                          DPRINTF(DPRINTF_STARTCODE, "<video_object_layer>");                          DPRINTF(XVID_DEBUG_STARTCODE, "<video_object_layer>\n");
472                          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);
473    
474                          BitstreamSkip(bs, 32);  // video_object_layer_start_code                          BitstreamSkip(bs, 32);  /* video_object_layer_start_code */
475                            BitstreamSkip(bs, 1);   /* random_accessible_vol */
476    
477                          BitstreamSkip(bs, 1);   // random_accessible_vol              BitstreamSkip(bs, 8);   /* video_object_type_indication */
478    
479                          // 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  
480                          {                          {
481                                  DPRINTF(DPRINTF_ERROR,"video_object_type_indication %i not supported ",                                  DPRINTF(XVID_DEBUG_HEADER, "+ is_object_layer_identifier\n");
482                                          BitstreamShowBits(bs, 8));                                  vol_ver_id = BitstreamGetBits(bs, 4);   /* video_object_layer_verid */
483                                  return -1;                                  DPRINTF(XVID_DEBUG_HEADER,"ver_id %i\n", vol_ver_id);
484                          }                                  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  
485                          } else {                          } else {
486                                  vol_ver_id = 1;                                  vol_ver_id = 1;
487                          }                          }
488    
489                          dec->aspect_ratio = BitstreamGetBits(bs, 4);                          dec->aspect_ratio = BitstreamGetBits(bs, 4);
490    
491                          if (dec->aspect_ratio == VIDOBJLAY_AR_EXTPAR)   // aspect_ratio_info                          if (dec->aspect_ratio == VIDOBJLAY_AR_EXTPAR)   /* aspect_ratio_info */
492                          {                          {
493                                  DPRINTF(DPRINTF_HEADER, "+ aspect_ratio_info");                                  DPRINTF(XVID_DEBUG_HEADER, "+ aspect_ratio_info\n");
494                                  dec->par_width = BitstreamGetBits(bs, 8);       // par_width                                  dec->par_width = BitstreamGetBits(bs, 8);       /* par_width */
495                                  dec->par_height = BitstreamGetBits(bs, 8);      // par_height                                  dec->par_height = BitstreamGetBits(bs, 8);      /* par_height */
496                          }                          }
497    
498                          if (BitstreamGetBit(bs))        // vol_control_parameters                          if (BitstreamGetBit(bs))        /* vol_control_parameters */
499                          {                          {
500                                  DPRINTF(DPRINTF_HEADER, "+ vol_control_parameters");                                  DPRINTF(XVID_DEBUG_HEADER, "+ vol_control_parameters\n");
501                                  BitstreamSkip(bs, 2);   // chroma_format                                  BitstreamSkip(bs, 2);   /* chroma_format */
502                                  dec->low_delay = BitstreamGetBit(bs);   // low_delay                                  dec->low_delay = BitstreamGetBit(bs);   /* low_delay */
503                                  DPRINTF(DPRINTF_HEADER, "low_delay %i", dec->low_delay);                                  DPRINTF(XVID_DEBUG_HEADER, "low_delay %i\n", dec->low_delay);
504                                  if (BitstreamGetBit(bs))        // vbv_parameters                                  if (BitstreamGetBit(bs))        /* vbv_parameters */
505                                  {                                  {
506                                          unsigned int bitrate;                                          unsigned int bitrate;
507                                          unsigned int buffer_size;                                          unsigned int buffer_size;
508                                          unsigned int occupancy;                                          unsigned int occupancy;
509    
510                                          DPRINTF(DPRINTF_HEADER,"+ vbv_parameters");                                          DPRINTF(XVID_DEBUG_HEADER,"+ vbv_parameters\n");
511    
512                                          bitrate = BitstreamGetBits(bs,15) << 15;        // first_half_bit_rate                                          bitrate = BitstreamGetBits(bs,15) << 15;        /* first_half_bit_rate */
513                                          READ_MARKER();                                          READ_MARKER();
514                                          bitrate |= BitstreamGetBits(bs,15);             // latter_half_bit_rate                                          bitrate |= BitstreamGetBits(bs,15);             /* latter_half_bit_rate */
515                                          READ_MARKER();                                          READ_MARKER();
516    
517                                          buffer_size = BitstreamGetBits(bs, 15) << 3;    // first_half_vbv_buffer_size                                          buffer_size = BitstreamGetBits(bs, 15) << 3;    /* first_half_vbv_buffer_size */
518                                          READ_MARKER();                                          READ_MARKER();
519                                          buffer_size |= BitstreamGetBits(bs, 3);         // latter_half_vbv_buffer_size                                          buffer_size |= BitstreamGetBits(bs, 3);         /* latter_half_vbv_buffer_size */
520    
521                                          occupancy = BitstreamGetBits(bs, 11) << 15;     // first_half_vbv_occupancy                                          occupancy = BitstreamGetBits(bs, 11) << 15;     /* first_half_vbv_occupancy */
522                                          READ_MARKER();                                          READ_MARKER();
523                                          occupancy |= BitstreamGetBits(bs, 15);  // latter_half_vbv_occupancy                                          occupancy |= BitstreamGetBits(bs, 15);  /* latter_half_vbv_occupancy */
524                                          READ_MARKER();                                          READ_MARKER();
525    
526                                          DPRINTF(DPRINTF_HEADER,"bitrate %d (unit=400 bps)", bitrate);                                          DPRINTF(XVID_DEBUG_HEADER,"bitrate %d (unit=400 bps)\n", bitrate);
527                                          DPRINTF(DPRINTF_HEADER,"buffer_size %d (unit=16384 bits)", buffer_size);                                          DPRINTF(XVID_DEBUG_HEADER,"buffer_size %d (unit=16384 bits)\n", buffer_size);
528                                          DPRINTF(DPRINTF_HEADER,"occupancy %d (unit=64 bits)", occupancy);                                          DPRINTF(XVID_DEBUG_HEADER,"occupancy %d (unit=64 bits)\n", occupancy);
529                                  }                                  }
530                          }else{                          }else{
531                                  dec->low_delay = dec->low_delay_default;                                  dec->low_delay = dec->low_delay_default;
532                          }                          }
533    
534                          dec->shape = BitstreamGetBits(bs, 2);   // video_object_layer_shape                          dec->shape = BitstreamGetBits(bs, 2);   /* video_object_layer_shape */
535    
536                          DPRINTF(DPRINTF_HEADER, "shape %i", dec->shape);                          DPRINTF(XVID_DEBUG_HEADER, "shape %i\n", dec->shape);
537                          if (dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR)                          if (dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR)
538                          {                          {
539                                  DPRINTF(DPRINTF_ERROR,"non-rectangular shapes are not supported");                                  DPRINTF(XVID_DEBUG_ERROR,"non-rectangular shapes are not supported\n");
540                          }                          }
541    
542                          if (dec->shape == VIDOBJLAY_SHAPE_GRAYSCALE && vol_ver_id != 1) {                          if (dec->shape == VIDOBJLAY_SHAPE_GRAYSCALE && vol_ver_id != 1) {
543                                  BitstreamSkip(bs, 4);   // video_object_layer_shape_extension                                  BitstreamSkip(bs, 4);   /* video_object_layer_shape_extension */
544                          }                          }
545    
546                          READ_MARKER();                          READ_MARKER();
547    
548  // *************************** for decode B-frame time ***********************                          /********************** for decode B-frame time ***********************/
549                          dec->time_inc_resolution = BitstreamGetBits(bs, 16);    // vop_time_increment_resolution                          dec->time_inc_resolution = BitstreamGetBits(bs, 16);    /* vop_time_increment_resolution */
550                          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);
   
 //                      dec->time_inc_resolution--;  
551    
552                          if (dec->time_inc_resolution > 0) {                          if (dec->time_inc_resolution > 0) {
553                                  dec->time_inc_bits = log2bin(dec->time_inc_resolution-1);                                  dec->time_inc_bits = MAX(log2bin(dec->time_inc_resolution-1), 1);
554                          } else {                          } else {
555                                  // dec->time_inc_bits = 0;                                  /* for "old" xvid compatibility, set time_inc_bits = 1 */
                                 // for "old" xvid compatibility, set time_inc_bits = 1  
556                                  dec->time_inc_bits = 1;                                  dec->time_inc_bits = 1;
557                          }                          }
558    
559                          READ_MARKER();                          READ_MARKER();
560    
561                          if (BitstreamGetBit(bs))        // fixed_vop_rate                          if (BitstreamGetBit(bs))        /* fixed_vop_rate */
562                          {                          {
563                                  DPRINTF(DPRINTF_HEADER, "+ fixed_vop_rate");                                  DPRINTF(XVID_DEBUG_HEADER, "+ fixed_vop_rate\n");
564                                  BitstreamSkip(bs, dec->time_inc_bits);  // fixed_vop_time_increment                                  BitstreamSkip(bs, dec->time_inc_bits);  /* fixed_vop_time_increment */
565                          }                          }
566    
567                          if (dec->shape != VIDOBJLAY_SHAPE_BINARY_ONLY) {                          if (dec->shape != VIDOBJLAY_SHAPE_BINARY_ONLY) {
# Line 628  Line 570 
570                                          uint32_t width, height;                                          uint32_t width, height;
571    
572                                          READ_MARKER();                                          READ_MARKER();
573                                          width = BitstreamGetBits(bs, 13);       // video_object_layer_width                                          width = BitstreamGetBits(bs, 13);       /* video_object_layer_width */
574                                          READ_MARKER();                                          READ_MARKER();
575                                          height = BitstreamGetBits(bs, 13);      // video_object_layer_height                                          height = BitstreamGetBits(bs, 13);      /* video_object_layer_height */
576                                          READ_MARKER();                                          READ_MARKER();
577    
578                                          DPRINTF(DPRINTF_HEADER, "width %i", width);                                          DPRINTF(XVID_DEBUG_HEADER, "width %i\n", width);
579                                          DPRINTF(DPRINTF_HEADER, "height %i", height);                                          DPRINTF(XVID_DEBUG_HEADER, "height %i\n", height);
580    
581                                          if (dec->width != width || dec->height != height)                                          if (dec->width != width || dec->height != height)
582                                          {                                          {
583                                                  if (dec->fixed_dimensions)                                                  if (dec->fixed_dimensions)
584                                                  {                                                  {
585                                                          DPRINTF(DPRINTF_ERROR, "XVID_DEC_PARAM width/height does not match bitstream");                                                          DPRINTF(XVID_DEBUG_ERROR, "decoder width/height does not match bitstream\n");
586                                                          return -1;                                                          return -1;
587                                                  }                                                  }
588                                                  resize = 1;                                                  resize = 1;
# Line 650  Line 592 
592                                  }                                  }
593    
594                                  dec->interlacing = BitstreamGetBit(bs);                                  dec->interlacing = BitstreamGetBit(bs);
595                                  DPRINTF(DPRINTF_HEADER, "interlacing %i", dec->interlacing);                                  DPRINTF(XVID_DEBUG_HEADER, "interlacing %i\n", dec->interlacing);
596    
597                                  if (!BitstreamGetBit(bs))       // obmc_disable                                  if (!BitstreamGetBit(bs))       /* obmc_disable */
598                                  {                                  {
599                                          DPRINTF(DPRINTF_ERROR, "obmc_disabled==false not supported");                                          DPRINTF(XVID_DEBUG_ERROR, "obmc_disabled==false not supported\n");
600                                          // TODO                                          /* TODO */
601                                          // fucking divx4.02 has this enabled                                          /* fucking divx4.02 has this enabled */
602                                  }                                  }
603    
604                                  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 */
605    
606                                  if (dec->sprite_enable == SPRITE_STATIC || dec->sprite_enable == SPRITE_GMC)                                  if (dec->sprite_enable == SPRITE_STATIC || dec->sprite_enable == SPRITE_GMC)
607                                  {                                  {
# Line 671  Line 613 
613                                                  int sprite_height;                                                  int sprite_height;
614                                                  int sprite_left_coord;                                                  int sprite_left_coord;
615                                                  int sprite_top_coord;                                                  int sprite_top_coord;
616                                                  sprite_width = BitstreamGetBits(bs, 13);                // sprite_width                                                  sprite_width = BitstreamGetBits(bs, 13);                /* sprite_width */
617                                                  READ_MARKER();                                                  READ_MARKER();
618                                                  sprite_height = BitstreamGetBits(bs, 13);       // sprite_height                                                  sprite_height = BitstreamGetBits(bs, 13);       /* sprite_height */
619                                                  READ_MARKER();                                                  READ_MARKER();
620                                                  sprite_left_coord = BitstreamGetBits(bs, 13);   // sprite_left_coordinate                                                  sprite_left_coord = BitstreamGetBits(bs, 13);   /* sprite_left_coordinate */
621                                                  READ_MARKER();                                                  READ_MARKER();
622                                                  sprite_top_coord = BitstreamGetBits(bs, 13);    // sprite_top_coordinate                                                  sprite_top_coord = BitstreamGetBits(bs, 13);    /* sprite_top_coordinate */
623                                                  READ_MARKER();                                                  READ_MARKER();
624                                          }                                          }
625                                          dec->sprite_warping_points = BitstreamGetBits(bs, 6);           // no_of_sprite_warping_points                                          dec->sprite_warping_points = BitstreamGetBits(bs, 6);           /* no_of_sprite_warping_points */
626                                          dec->sprite_warping_accuracy = BitstreamGetBits(bs, 2);         // sprite_warping_accuracy                                          dec->sprite_warping_accuracy = BitstreamGetBits(bs, 2);         /* sprite_warping_accuracy */
627                                          dec->sprite_brightness_change = BitstreamGetBits(bs, 1);                // brightness_change                                          dec->sprite_brightness_change = BitstreamGetBits(bs, 1);                /* brightness_change */
628                                          if (dec->sprite_enable != SPRITE_GMC)                                          if (dec->sprite_enable != SPRITE_GMC)
629                                          {                                          {
630                                                  low_latency_sprite_enable = BitstreamGetBits(bs, 1);            // low_latency_sprite_enable                                                  low_latency_sprite_enable = BitstreamGetBits(bs, 1);            /* low_latency_sprite_enable */
631                                          }                                          }
632                                  }                                  }
633    
634                                  if (vol_ver_id != 1 &&                                  if (vol_ver_id != 1 &&
635                                          dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR) {                                          dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR) {
636                                          BitstreamSkip(bs, 1);   // sadct_disable                                          BitstreamSkip(bs, 1);   /* sadct_disable */
637                                  }                                  }
638    
639                                  if (BitstreamGetBit(bs))        // not_8_bit                                  if (BitstreamGetBit(bs))        /* not_8_bit */
640                                  {                                  {
641                                          DPRINTF(DPRINTF_HEADER, "not_8_bit==true (ignored)");                                          DPRINTF(XVID_DEBUG_HEADER, "not_8_bit==true (ignored)\n");
642                                          dec->quant_bits = BitstreamGetBits(bs, 4);      // quant_precision                                          dec->quant_bits = BitstreamGetBits(bs, 4);      /* quant_precision */
643                                          BitstreamSkip(bs, 4);   // bits_per_pixel                                          BitstreamSkip(bs, 4);   /* bits_per_pixel */
644                                  } else {                                  } else {
645                                          dec->quant_bits = 5;                                          dec->quant_bits = 5;
646                                  }                                  }
647    
648                                  if (dec->shape == VIDOBJLAY_SHAPE_GRAYSCALE) {                                  if (dec->shape == VIDOBJLAY_SHAPE_GRAYSCALE) {
649                                          BitstreamSkip(bs, 1);   // no_gray_quant_update                                          BitstreamSkip(bs, 1);   /* no_gray_quant_update */
650                                          BitstreamSkip(bs, 1);   // composition_method                                          BitstreamSkip(bs, 1);   /* composition_method */
651                                          BitstreamSkip(bs, 1);   // linear_composition                                          BitstreamSkip(bs, 1);   /* linear_composition */
652                                  }                                  }
653    
654                                  dec->quant_type = BitstreamGetBit(bs);  // quant_type                                  dec->quant_type = BitstreamGetBit(bs);  /* quant_type */
655                                  DPRINTF(DPRINTF_HEADER, "quant_type %i", dec->quant_type);                                  DPRINTF(XVID_DEBUG_HEADER, "quant_type %i\n", dec->quant_type);
656    
657                                  if (dec->quant_type) {                                  if (dec->quant_type) {
658                                          if (BitstreamGetBit(bs))        // load_intra_quant_mat                                          if (BitstreamGetBit(bs))        /* load_intra_quant_mat */
659                                          {                                          {
660                                                  uint8_t matrix[64];                                                  uint8_t matrix[64];
661    
662                                                  DPRINTF(DPRINTF_HEADER, "load_intra_quant_mat");                                                  DPRINTF(XVID_DEBUG_HEADER, "load_intra_quant_mat\n");
663    
664                                                  bs_get_matrix(bs, matrix);                                                  bs_get_matrix(bs, matrix);
665                                                  set_intra_matrix(matrix);                                                  set_intra_matrix(dec->mpeg_quant_matrices, matrix);
666                                          } else                                          } else
667                                                  set_intra_matrix(get_default_intra_matrix());                                                  set_intra_matrix(dec->mpeg_quant_matrices, get_default_intra_matrix());
668    
669                                          if (BitstreamGetBit(bs))        // load_inter_quant_mat                                          if (BitstreamGetBit(bs))        /* load_inter_quant_mat */
670                                          {                                          {
671                                                  uint8_t matrix[64];                                                  uint8_t matrix[64];
672    
673                                                  DPRINTF(DPRINTF_HEADER, "load_inter_quant_mat");                                                  DPRINTF(XVID_DEBUG_HEADER, "load_inter_quant_mat\n");
674    
675                                                  bs_get_matrix(bs, matrix);                                                  bs_get_matrix(bs, matrix);
676                                                  set_inter_matrix(matrix);                                                  set_inter_matrix(dec->mpeg_quant_matrices, matrix);
677                                          } else                                          } else
678                                                  set_inter_matrix(get_default_inter_matrix());                                                  set_inter_matrix(dec->mpeg_quant_matrices, get_default_inter_matrix());
679    
680                                          if (dec->shape == VIDOBJLAY_SHAPE_GRAYSCALE) {                                          if (dec->shape == VIDOBJLAY_SHAPE_GRAYSCALE) {
681                                                  DPRINTF(DPRINTF_ERROR, "greyscale matrix not supported");                                                  DPRINTF(XVID_DEBUG_ERROR, "greyscale matrix not supported\n");
682                                                  return -1;                                                  return -1;
683                                          }                                          }
684    
# Line 744  Line 686 
686    
687    
688                                  if (vol_ver_id != 1) {                                  if (vol_ver_id != 1) {
689                                          dec->quarterpel = BitstreamGetBit(bs);  // quarter_sample                                          dec->quarterpel = BitstreamGetBit(bs);  /* quarter_sample */
690                                          DPRINTF(DPRINTF_HEADER,"quarterpel %i", dec->quarterpel);                                          DPRINTF(XVID_DEBUG_HEADER,"quarterpel %i\n", dec->quarterpel);
691                                  }                                  }
692                                  else                                  else
693                                          dec->quarterpel = 0;                                          dec->quarterpel = 0;
# Line 757  Line 699 
699                                          read_vol_complexity_estimation_header(bs, dec);                                          read_vol_complexity_estimation_header(bs, dec);
700                                  }                                  }
701    
702                                  BitstreamSkip(bs, 1);   // resync_marker_disable                                  BitstreamSkip(bs, 1);   /* resync_marker_disable */
703    
704                                  if (BitstreamGetBit(bs))        // data_partitioned                                  if (BitstreamGetBit(bs))        /* data_partitioned */
705                                  {                                  {
706                                          DPRINTF(DPRINTF_ERROR, "data_partitioned not supported");                                          DPRINTF(XVID_DEBUG_ERROR, "data_partitioned not supported\n");
707                                          BitstreamSkip(bs, 1);   // reversible_vlc                                          BitstreamSkip(bs, 1);   /* reversible_vlc */
708                                  }                                  }
709    
710                                  if (vol_ver_id != 1) {                                  if (vol_ver_id != 1) {
711                                          dec->newpred_enable = BitstreamGetBit(bs);                                          dec->newpred_enable = BitstreamGetBit(bs);
712                                          if (dec->newpred_enable)        // newpred_enable                                          if (dec->newpred_enable)        /* newpred_enable */
713                                          {                                          {
714                                                  DPRINTF(DPRINTF_HEADER, "+ newpred_enable");                                                  DPRINTF(XVID_DEBUG_HEADER, "+ newpred_enable\n");
715                                                  BitstreamSkip(bs, 2);   // requested_upstream_message_type                                                  BitstreamSkip(bs, 2);   /* requested_upstream_message_type */
716                                                  BitstreamSkip(bs, 1);   // newpred_segment_type                                                  BitstreamSkip(bs, 1);   /* newpred_segment_type */
717                                          }                                          }
718                                          dec->reduced_resolution_enable = BitstreamGetBit(bs);   /* reduced_resolution_vop_enable */                                          dec->reduced_resolution_enable = BitstreamGetBit(bs);   /* reduced_resolution_vop_enable */
719                                          DPRINTF(DPRINTF_HEADER, "reduced_resolution_enable %i", dec->reduced_resolution_enable);                                          DPRINTF(XVID_DEBUG_HEADER, "reduced_resolution_enable %i\n", dec->reduced_resolution_enable);
720                                  }                                  }
721                                  else                                  else
722                                  {                                  {
# Line 785  Line 727 
727                                  dec->scalability = BitstreamGetBit(bs); /* scalability */                                  dec->scalability = BitstreamGetBit(bs); /* scalability */
728                                  if (dec->scalability)                                  if (dec->scalability)
729                                  {                                  {
730                                          DPRINTF(DPRINTF_ERROR, "scalability not supported");                                          DPRINTF(XVID_DEBUG_ERROR, "scalability not supported\n");
731                                          BitstreamSkip(bs, 1);   /* hierarchy_type */                                          BitstreamSkip(bs, 1);   /* hierarchy_type */
732                                          BitstreamSkip(bs, 4);   /* ref_layer_id */                                          BitstreamSkip(bs, 4);   /* ref_layer_id */
733                                          BitstreamSkip(bs, 1);   /* ref_layer_sampling_direc */                                          BitstreamSkip(bs, 1);   /* ref_layer_sampling_direc */
# Line 804  Line 746 
746                                          }                                          }
747                                          return -1;                                          return -1;
748                                  }                                  }
749                          } else                          // dec->shape == BINARY_ONLY                          } else                          /* dec->shape == BINARY_ONLY */
750                          {                          {
751                                  if (vol_ver_id != 1) {                                  if (vol_ver_id != 1) {
752                                          dec->scalability = BitstreamGetBit(bs); /* scalability */                                          dec->scalability = BitstreamGetBit(bs); /* scalability */
753                                          if (dec->scalability)                                          if (dec->scalability)
754                                          {                                          {
755                                                  DPRINTF(DPRINTF_ERROR, "scalability not supported");                                                  DPRINTF(XVID_DEBUG_ERROR, "scalability not supported\n");
756                                                  BitstreamSkip(bs, 4);   /* ref_layer_id */                                                  BitstreamSkip(bs, 4);   /* ref_layer_id */
757                                                  BitstreamSkip(bs, 5);   /* hor_sampling_factor_n */                                                  BitstreamSkip(bs, 5);   /* hor_sampling_factor_n */
758                                                  BitstreamSkip(bs, 5);   /* hor_sampling_factor_m */                                                  BitstreamSkip(bs, 5);   /* hor_sampling_factor_m */
# Line 819  Line 761 
761                                                  return -1;                                                  return -1;
762                                          }                                          }
763                                  }                                  }
764                                  BitstreamSkip(bs, 1);   // resync_marker_disable                                  BitstreamSkip(bs, 1);   /* resync_marker_disable */
765    
766                          }                          }
767    
# Line 827  Line 769 
769    
770                  } else if (start_code == GRPOFVOP_START_CODE) {                  } else if (start_code == GRPOFVOP_START_CODE) {
771    
772                          DPRINTF(DPRINTF_STARTCODE, "<group_of_vop>");                          DPRINTF(XVID_DEBUG_STARTCODE, "<group_of_vop>\n");
773    
774                          BitstreamSkip(bs, 32);                          BitstreamSkip(bs, 32);
775                          {                          {
# Line 838  Line 780 
780                                  READ_MARKER();                                  READ_MARKER();
781                                  seconds = BitstreamGetBits(bs, 6);                                  seconds = BitstreamGetBits(bs, 6);
782    
783                                  DPRINTF(DPRINTF_HEADER, "time %ih%im%is", hours,minutes,seconds);                                  DPRINTF(XVID_DEBUG_HEADER, "time %ih%im%is\n", hours,minutes,seconds);
784                          }                          }
785                          BitstreamSkip(bs, 1);   // closed_gov                          BitstreamSkip(bs, 1);   /* closed_gov */
786                          BitstreamSkip(bs, 1);   // broken_link                          BitstreamSkip(bs, 1);   /* broken_link */
787    
788                  } else if (start_code == VOP_START_CODE) {                  } else if (start_code == VOP_START_CODE) {
789    
790                          DPRINTF(DPRINTF_STARTCODE, "<vop>");                          DPRINTF(XVID_DEBUG_STARTCODE, "<vop>\n");
791    
792                          BitstreamSkip(bs, 32);  // vop_start_code                          BitstreamSkip(bs, 32);  /* vop_start_code */
793    
794                          coding_type = BitstreamGetBits(bs, 2);  // vop_coding_type                          coding_type = BitstreamGetBits(bs, 2);  /* vop_coding_type */
795                          DPRINTF(DPRINTF_HEADER, "coding_type %i", coding_type);                          DPRINTF(XVID_DEBUG_HEADER, "coding_type %i\n", coding_type);
796    
797  // *************************** for decode B-frame time ***********************                          /*********************** for decode B-frame time ***********************/
798                          while (BitstreamGetBit(bs) != 0)        // time_base                          while (BitstreamGetBit(bs) != 0)        /* time_base */
799                                  time_incr++;                                  time_incr++;
800    
801                          READ_MARKER();                          READ_MARKER();
802    
803                          if (dec->time_inc_bits) {                          if (dec->time_inc_bits) {
804                                  time_increment = (BitstreamGetBits(bs, dec->time_inc_bits));    // vop_time_increment                                  time_increment = (BitstreamGetBits(bs, dec->time_inc_bits));    /* vop_time_increment */
805                          }                          }
806    
807                          DPRINTF(DPRINTF_HEADER, "time_base %i", time_incr);                          DPRINTF(XVID_DEBUG_HEADER, "time_base %i\n", time_incr);
808                          DPRINTF(DPRINTF_HEADER, "time_increment %i", time_increment);                          DPRINTF(XVID_DEBUG_HEADER, "time_increment %i\n", time_increment);
809    
810                          DPRINTF(DPRINTF_TIMECODE, "%c %i:%i",                          DPRINTF(XVID_DEBUG_TIMECODE, "%c %i:%i\n",
811                                  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',
812                                  time_incr, time_increment);                                  time_incr, time_increment);
813    
814                          if (coding_type != B_VOP) {                          if (coding_type != B_VOP) {
815                                  dec->last_time_base = dec->time_base;                                  dec->last_time_base = dec->time_base;
816                                  dec->time_base += time_incr;                                  dec->time_base += time_incr;
817                                  dec->time = time_increment;                                  dec->time = dec->time_base*dec->time_inc_resolution + time_increment;
818                                    dec->time_pp = (int32_t)(dec->time - dec->last_non_b_time);
 /*                                      dec->time_base * dec->time_inc_resolution +  
                                         time_increment;  
 */                              dec->time_pp = (uint32_t)  
                                         (dec->time_inc_resolution + dec->time - dec->last_non_b_time)%dec->time_inc_resolution;  
819                                  dec->last_non_b_time = dec->time;                                  dec->last_non_b_time = dec->time;
820                          } else {                          } else {
821                                  dec->time = time_increment;                                  dec->time = (dec->last_time_base + time_incr)*dec->time_inc_resolution + time_increment;
822  /*                                  dec->time_bp = dec->time_pp - (int32_t)(dec->last_non_b_time - dec->time);
                                         (dec->last_time_base +  
                                          time_incr) * dec->time_inc_resolution + time_increment;  
 */  
                                 dec->time_bp = (uint32_t)  
                                         (dec->time_inc_resolution + dec->last_non_b_time - dec->time)%dec->time_inc_resolution;  
823                          }                          }
824                          DPRINTF(DPRINTF_HEADER,"time_pp=%i", dec->time_pp);                          DPRINTF(XVID_DEBUG_HEADER,"time_pp=%i\n", dec->time_pp);
825                          DPRINTF(DPRINTF_HEADER,"time_bp=%i", dec->time_bp);                          DPRINTF(XVID_DEBUG_HEADER,"time_bp=%i\n", dec->time_bp);
826    
827                          READ_MARKER();                          READ_MARKER();
828    
829                          if (!BitstreamGetBit(bs))       // vop_coded                          if (!BitstreamGetBit(bs))       /* vop_coded */
830                          {                          {
831                                  DPRINTF(DPRINTF_HEADER, "vop_coded==false");                                  DPRINTF(XVID_DEBUG_HEADER, "vop_coded==false\n");
832                                  return N_VOP;                                  return N_VOP;
833                          }                          }
834    
# Line 905  Line 838 
838                                  int vop_id_for_prediction;                                  int vop_id_for_prediction;
839    
840                                  vop_id = BitstreamGetBits(bs, MIN(dec->time_inc_bits + 3, 15));                                  vop_id = BitstreamGetBits(bs, MIN(dec->time_inc_bits + 3, 15));
841                                  DPRINTF(DPRINTF_HEADER, "vop_id %i", vop_id);                                  DPRINTF(XVID_DEBUG_HEADER, "vop_id %i\n", vop_id);
842                                  if (BitstreamGetBit(bs))        /* vop_id_for_prediction_indication */                                  if (BitstreamGetBit(bs))        /* vop_id_for_prediction_indication */
843                                  {                                  {
844                                          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));
845                                          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);
846                                  }                                  }
847                                  READ_MARKER();                                  READ_MARKER();
848                          }                          }
849    
850    
851    
852                          // fix a little bug by MinChen <chenm002@163.com>                          /* fix a little bug by MinChen <chenm002@163.com> */
853                          if ((dec->shape != VIDOBJLAY_SHAPE_BINARY_ONLY) &&                          if ((dec->shape != VIDOBJLAY_SHAPE_BINARY_ONLY) &&
854                                  ( (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) ) ) {
855                                  *rounding = BitstreamGetBit(bs);        // rounding_type                                  *rounding = BitstreamGetBit(bs);        /* rounding_type */
856                                  DPRINTF(DPRINTF_HEADER, "rounding %i", *rounding);                                  DPRINTF(XVID_DEBUG_HEADER, "rounding %i\n", *rounding);
857                          }                          }
858    
859                          if (dec->reduced_resolution_enable &&                          if (dec->reduced_resolution_enable &&
860                                  dec->shape == VIDOBJLAY_SHAPE_RECTANGULAR &&                                  dec->shape == VIDOBJLAY_SHAPE_RECTANGULAR &&
861                                  (coding_type == P_VOP || coding_type == I_VOP)) {                                  (coding_type == P_VOP || coding_type == I_VOP)) {
862    
863                                  *reduced_resolution = BitstreamGetBit(bs);                                  if (BitstreamGetBit(bs));
864                                  DPRINTF(DPRINTF_HEADER, "reduced_resolution %i", *reduced_resolution);                                          DPRINTF(XVID_DEBUG_ERROR, "RRV not supported (anymore)\n");
                         }  
                         else  
                         {  
                                 *reduced_resolution = 0;  
865                          }                          }
866    
867                          if (dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR) {                          if (dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR) {
# Line 950  Line 879 
879                                          vert_mc_ref = BitstreamGetBits(bs, 13);                                          vert_mc_ref = BitstreamGetBits(bs, 13);
880                                          READ_MARKER();                                          READ_MARKER();
881    
882                                          DPRINTF(DPRINTF_HEADER, "width %i", width);                                          DPRINTF(XVID_DEBUG_HEADER, "width %i\n", width);
883                                          DPRINTF(DPRINTF_HEADER, "height %i", height);                                          DPRINTF(XVID_DEBUG_HEADER, "height %i\n", height);
884                                          DPRINTF(DPRINTF_HEADER, "horiz_mc_ref %i", horiz_mc_ref);                                          DPRINTF(XVID_DEBUG_HEADER, "horiz_mc_ref %i\n", horiz_mc_ref);
885                                          DPRINTF(DPRINTF_HEADER, "vert_mc_ref %i", vert_mc_ref);                                          DPRINTF(XVID_DEBUG_HEADER, "vert_mc_ref %i\n", vert_mc_ref);
886                                  }                                  }
887    
888                                  BitstreamSkip(bs, 1);   // change_conv_ratio_disable                                  BitstreamSkip(bs, 1);   /* change_conv_ratio_disable */
889                                  if (BitstreamGetBit(bs))        // vop_constant_alpha                                  if (BitstreamGetBit(bs))        /* vop_constant_alpha */
890                                  {                                  {
891                                          BitstreamSkip(bs, 8);   // vop_constant_alpha_value                                          BitstreamSkip(bs, 8);   /* vop_constant_alpha_value */
892                                  }                                  }
893                          }                          }
894    
# Line 970  Line 899 
899                                          read_vop_complexity_estimation_header(bs, dec, coding_type);                                          read_vop_complexity_estimation_header(bs, dec, coding_type);
900                                  }                                  }
901    
902                                  // intra_dc_vlc_threshold                                  /* intra_dc_vlc_threshold */
903                                  *intra_dc_threshold =                                  *intra_dc_threshold =
904                                          intra_dc_threshold_table[BitstreamGetBits(bs, 3)];                                          intra_dc_threshold_table[BitstreamGetBits(bs, 3)];
905    
# Line 979  Line 908 
908    
909                                  if (dec->interlacing) {                                  if (dec->interlacing) {
910                                          dec->top_field_first = BitstreamGetBit(bs);                                          dec->top_field_first = BitstreamGetBit(bs);
911                                          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);
912                                          dec->alternate_vertical_scan = BitstreamGetBit(bs);                                          dec->alternate_vertical_scan = BitstreamGetBit(bs);
913                                          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);
914    
915                                  }                                  }
916                          }                          }
# Line 1015  Line 944 
944                                          gmc_warp->duv[i].x = x;                                          gmc_warp->duv[i].x = x;
945                                          gmc_warp->duv[i].y = y;                                          gmc_warp->duv[i].y = y;
946    
947                                          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);
948                                  }                                  }
949    
950                                  if (dec->sprite_brightness_change)                                  if (dec->sprite_brightness_change)
951                                  {                                  {
952                                          // XXX: brightness_change_factor()                                          /* XXX: brightness_change_factor() */
953                                  }                                  }
954                                  if (dec->sprite_enable == SPRITE_STATIC)                                  if (dec->sprite_enable == SPRITE_STATIC)
955                                  {                                  {
956                                          // XXX: todo                                          /* XXX: todo */
957                                  }                                  }
958    
959                          }                          }
960    
961                          if ((*quant = BitstreamGetBits(bs, dec->quant_bits)) < 1)       // vop_quant                          if ((*quant = BitstreamGetBits(bs, dec->quant_bits)) < 1)       /* vop_quant */
962                                  *quant = 1;                                  *quant = 1;
963                          DPRINTF(DPRINTF_HEADER, "quant %i", *quant);                          DPRINTF(XVID_DEBUG_HEADER, "quant %i\n", *quant);
964    
965                          if (coding_type != I_VOP) {                          if (coding_type != I_VOP) {
966                                  *fcode_forward = BitstreamGetBits(bs, 3);       // fcode_forward                                  *fcode_forward = BitstreamGetBits(bs, 3);       /* fcode_forward */
967                                  DPRINTF(DPRINTF_HEADER, "fcode_forward %i", *fcode_forward);                                  DPRINTF(XVID_DEBUG_HEADER, "fcode_forward %i\n", *fcode_forward);
968                          }                          }
969    
970                          if (coding_type == B_VOP) {                          if (coding_type == B_VOP) {
971                                  *fcode_backward = BitstreamGetBits(bs, 3);      // fcode_backward                                  *fcode_backward = BitstreamGetBits(bs, 3);      /* fcode_backward */
972                                  DPRINTF(DPRINTF_HEADER, "fcode_backward %i", *fcode_backward);                                  DPRINTF(XVID_DEBUG_HEADER, "fcode_backward %i\n", *fcode_backward);
973                          }                          }
974                          if (!dec->scalability) {                          if (!dec->scalability) {
975                                  if ((dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR) &&                                  if ((dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR) &&
976                                          (coding_type != I_VOP)) {                                          (coding_type != I_VOP)) {
977                                          BitstreamSkip(bs, 1);   // vop_shape_coding_type                                          BitstreamSkip(bs, 1);   /* vop_shape_coding_type */
978                                  }                                  }
979                          }                          }
980                          return coding_type;                          return coding_type;
# Line 1055  Line 984 
984                      int i, version, build;                      int i, version, build;
985                          char packed;                          char packed;
986    
987                          BitstreamSkip(bs, 32);  // user_data_start_code                          BitstreamSkip(bs, 32);  /* user_data_start_code */
988    
989                            memset(tmp, 0, 256);
990                          tmp[0] = BitstreamShowBits(bs, 8);                          tmp[0] = BitstreamShowBits(bs, 8);
991    
992                          for(i = 1; i < 256; i++){                          for(i = 1; i < 256; i++){
# Line 1068  Line 998 
998                                  BitstreamSkip(bs, 8);                                  BitstreamSkip(bs, 8);
999                          }                          }
1000    
1001                          DPRINTF(DPRINTF_STARTCODE, "<user_data>: %s\n", tmp);                          DPRINTF(XVID_DEBUG_STARTCODE, "<user_data>: %s\n", tmp);
1002    
1003                          /* read xvid bitstream version */                          /* read xvid bitstream version */
1004                          if(strncmp(tmp, "XviD", 4) == 0) {                          if(strncmp(tmp, "XviD", 4) == 0) {
1005                                    if (tmp[strlen(tmp)-1] == 'C') {
1006                                            sscanf(tmp, "XviD%dC", &dec->bs_version);
1007                                            dec->cartoon_mode = 1;
1008                                    }
1009                                    else
1010                                  sscanf(tmp, "XviD%d", &dec->bs_version);                                  sscanf(tmp, "XviD%d", &dec->bs_version);
1011                                  DPRINTF(DPRINTF_HEADER, "xvid bitstream version=%i", dec->bs_version);  
1012                                    DPRINTF(XVID_DEBUG_HEADER, "xvid bitstream version=%i\n", dec->bs_version);
1013                          }                          }
1014    
1015                      /* divx detection */                      /* divx detection */
# Line 1084  Line 1020 
1020                          if (i >= 2)                          if (i >= 2)
1021                          {                          {
1022                                  dec->packed_mode = (i == 3 && packed == 'p');                                  dec->packed_mode = (i == 3 && packed == 'p');
1023                                  DPRINTF(DPRINTF_HEADER, "divx version=%i, build=%i packed=%i",                                  DPRINTF(XVID_DEBUG_HEADER, "divx version=%i, build=%i packed=%i\n",
1024                                                  version, build, dec->packed_mode);                                                  version, build, dec->packed_mode);
1025                          }                          }
1026    
1027                  } else                                  // start_code == ?                  } else                                  /* start_code == ? */
1028                  {                  {
1029                          if (BitstreamShowBits(bs, 24) == 0x000001) {                          if (BitstreamShowBits(bs, 24) == 0x000001) {
1030                                  DPRINTF(DPRINTF_STARTCODE, "<unknown: %x>", BitstreamShowBits(bs, 32));                                  DPRINTF(XVID_DEBUG_STARTCODE, "<unknown: %x>\n", BitstreamShowBits(bs, 32));
1031                          }                          }
1032                          BitstreamSkip(bs, 8);                          BitstreamSkip(bs, 8);
1033                  }                  }
1034          }          }
         while ((BitstreamPos(bs) >> 3) < bs->length);  
1035    
1036          //DPRINTF("*** WARNING: no vop_start_code found");  #if 0
1037            DPRINTF("*** WARNING: no vop_start_code found");
1038    #endif
1039          return -1;                                      /* ignore it */          return -1;                                      /* ignore it */
1040  }  }
1041    
# Line 1107  Line 1044 
1044    
1045  static void  static void
1046  bs_put_matrix(Bitstream * bs,  bs_put_matrix(Bitstream * bs,
1047                            const int16_t * matrix)                            const uint16_t * matrix)
1048  {  {
1049          int i, j;          int i, j;
1050          const int last = matrix[scan_tables[0][63]];          const int last = matrix[scan_tables[0][63]];
# Line 1135  Line 1072 
1072          static const unsigned int vo_id = 0;          static const unsigned int vo_id = 0;
1073          static const unsigned int vol_id = 0;          static const unsigned int vol_id = 0;
1074          int vol_ver_id=1;          int vol_ver_id=1;
1075          int profile = 0x03;     /* simple profile/level 3 */          int vol_type_ind = VIDOBJLAY_TYPE_SIMPLE;
1076            int vol_profile = pParam->profile;
1077    
1078          if ( pParam->m_quarterpel ||  (frame->global_flags & XVID_GMC) ||          if ( (pParam->vol_flags & XVID_VOL_QUARTERPEL) ||
1079                   (pParam->global & XVID_GLOBAL_REDUCED))           (pParam->vol_flags & XVID_VOL_GMC) ||
1080                     (pParam->vol_flags & XVID_VOL_REDUCED_ENABLE))
1081                  vol_ver_id = 2;                  vol_ver_id = 2;
1082    
1083          if ((pParam->global & XVID_GLOBAL_REDUCED))      if ((pParam->vol_flags & XVID_VOL_REDUCED_ENABLE)) {
1084                  profile = 0x93; /* advanced realtime simple profile/level 3 */          vol_type_ind = VIDOBJLAY_TYPE_ART_SIMPLE;
1085        }
1086    
1087        if ((pParam->vol_flags & (XVID_VOL_MPEGQUANT|XVID_VOL_QUARTERPEL|XVID_VOL_GMC|XVID_VOL_INTERLACING)) ||
1088             pParam->max_bframes>0) {
1089            vol_type_ind = VIDOBJLAY_TYPE_ASP;
1090        }
1091    
1092          if (pParam->m_quarterpel ||  (frame->global_flags & XVID_GMC))          /* visual_object_sequence_start_code */
1093                  profile = 0xf3; /* advanced simple profile/level 2 */  #if 0
1094            BitstreamPad(bs);
1095    #endif
1096    
1097            /*
1098             * no padding here, anymore. You have to make sure that you are
1099             * byte aligned, and that always 1-8 padding bits have been written
1100             */
1101    
1102          // visual_object_sequence_start_code      if (!vol_profile) {
1103  //      BitstreamPad(bs);                  /* Profile was not set by client app, use the more permissive profile
1104  /* no padding here, anymore. You have to make sure that you are                   * compatible with the vol_type_id */
1105     byte aligned, and that always 1-8 padding bits have been written */                  switch(vol_type_ind) {
1106                    case VIDOBJLAY_TYPE_ASP:
1107                            vol_profile = 0xf5; /* ASP level 5 */
1108                            break;
1109                    case VIDOBJLAY_TYPE_ART_SIMPLE:
1110                            vol_profile = 0x94; /* ARTS level 4 */
1111                            break;
1112                    default:
1113                            vol_profile = 0x03; /* Simple level 3 */
1114                            break;
1115                    }
1116            }
1117    
1118            /* Write the VOS header */
1119          BitstreamPutBits(bs, VISOBJSEQ_START_CODE, 32);          BitstreamPutBits(bs, VISOBJSEQ_START_CODE, 32);
1120          BitstreamPutBits(bs, profile, 8);          BitstreamPutBits(bs, vol_profile, 8);   /* profile_and_level_indication */
1121    
1122    
1123          // visual_object_start_code          /* visual_object_start_code */
1124          BitstreamPad(bs);          BitstreamPad(bs);
1125          BitstreamPutBits(bs, VISOBJ_START_CODE, 32);          BitstreamPutBits(bs, VISOBJ_START_CODE, 32);
1126          BitstreamPutBits(bs, 0, 1);             // is_visual_object_identifier          BitstreamPutBits(bs, 0, 1);             /* is_visual_object_identifier */
1127    
1128          /* Video type */          /* Video type */
1129          BitstreamPutBits(bs, VISOBJ_TYPE_VIDEO, 4);             // visual_object_type          BitstreamPutBits(bs, VISOBJ_TYPE_VIDEO, 4);             /* visual_object_type */
1130          BitstreamPutBit(bs, 0); /* video_signal_type */          BitstreamPutBit(bs, 0); /* video_signal_type */
1131    
1132          // video object_start_code & vo_id          /* video object_start_code & vo_id */
1133          BitstreamPadAlways(bs); // next_start_code()          BitstreamPadAlways(bs); /* next_start_code() */
1134          BitstreamPutBits(bs, VIDOBJ_START_CODE|(vo_id&0x5), 32);          BitstreamPutBits(bs, VIDOBJ_START_CODE|(vo_id&0x5), 32);
1135    
1136          // video_object_layer_start_code & vol_id          /* video_object_layer_start_code & vol_id */
1137          BitstreamPad(bs);          BitstreamPad(bs);
1138          BitstreamPutBits(bs, VIDOBJLAY_START_CODE|(vol_id&0x4), 32);          BitstreamPutBits(bs, VIDOBJLAY_START_CODE|(vol_id&0x4), 32);
1139    
1140          BitstreamPutBit(bs, 0);         // random_accessible_vol          BitstreamPutBit(bs, 0);         /* random_accessible_vol */
1141          BitstreamPutBits(bs, 0, 8);     // video_object_type_indication          BitstreamPutBits(bs, vol_type_ind, 8);  /* video_object_type_indication */
1142    
1143          if (vol_ver_id == 1)          if (vol_ver_id == 1) {
1144          {                  BitstreamPutBit(bs, 0);                         /* is_object_layer_identified (0=not given) */
1145                  BitstreamPutBit(bs, 0);                         // is_object_layer_identified (0=not given)          } else {
1146          }                  BitstreamPutBit(bs, 1);         /* is_object_layer_identified */
1147          else                  BitstreamPutBits(bs, vol_ver_id, 4);    /* vol_ver_id == 2 */
1148          {                  BitstreamPutBits(bs, 4, 3); /* vol_ver_priority (1==highest, 7==lowest) */
                 BitstreamPutBit(bs, 1);         // is_object_layer_identified  
                 BitstreamPutBits(bs, vol_ver_id, 4);    // vol_ver_id == 2  
                 BitstreamPutBits(bs, 4, 3); // vol_ver_priority (1==highest, 7==lowest)  
1149          }          }
1150    
1151          BitstreamPutBits(bs, 1, 4);     // aspect_ratio_info (1=1:1)          /* Aspect ratio */
1152            BitstreamPutBits(bs, pParam->par, 4); /* aspect_ratio_info (1=1:1) */
1153            if(pParam->par == XVID_PAR_EXT) {
1154                    BitstreamPutBits(bs, pParam->par_width, 8);
1155                    BitstreamPutBits(bs, pParam->par_height, 8);
1156            }
1157    
1158          BitstreamPutBit(bs, 1); // vol_control_parameters          BitstreamPutBit(bs, 1); /* vol_control_parameters */
1159          BitstreamPutBits(bs, 1, 2);     // chroma_format 1="4:2:0"          BitstreamPutBits(bs, 1, 2);     /* chroma_format 1="4:2:0" */
1160    
1161          if (pParam->max_bframes > 0) {          if (pParam->max_bframes > 0) {
1162                  BitstreamPutBit(bs, 0); // low_delay                  BitstreamPutBit(bs, 0); /* low_delay */
1163          } else          } else
1164          {          {
1165                  BitstreamPutBit(bs, 1); // low_delay                  BitstreamPutBit(bs, 1); /* low_delay */
1166          }          }
1167          BitstreamPutBit(bs, 0); // vbv_parameters (0=not given)          BitstreamPutBit(bs, 0); /* vbv_parameters (0=not given) */
1168    
1169          BitstreamPutBits(bs, 0, 2);     // video_object_layer_shape (0=rectangular)          BitstreamPutBits(bs, 0, 2);     /* video_object_layer_shape (0=rectangular) */
1170    
1171          WRITE_MARKER();          WRITE_MARKER();
1172    
1173          /* time_inc_resolution; ignored by current decore versions          /*
1174             eg. 2fps     res=2       inc=1           * time_inc_resolution; ignored by current decore versions
1175             25fps        res=25      inc=1           * eg. 2fps     res=2       inc=1
1176             29.97fps res=30000   inc=1001           *     25fps    res=25      inc=1
1177             *     29.97fps res=30000   inc=1001
1178           */           */
1179          BitstreamPutBits(bs, pParam->fbase, 16);          BitstreamPutBits(bs, pParam->fbase, 16);
1180    
1181          WRITE_MARKER();          WRITE_MARKER();
1182    
1183          BitstreamPutBit(bs, 1);         // fixed_vop_rate = 1      if (pParam->fincr>0) {
1184          BitstreamPutBits(bs, pParam->fincr, log2bin(pParam->fbase));    // fixed_vop_time_increment                  BitstreamPutBit(bs, 1);         /* fixed_vop_rate = 1 */
1185                    BitstreamPutBits(bs, pParam->fincr, MAX(log2bin(pParam->fbase-1),1));   /* fixed_vop_time_increment */
1186        }else{
1187            BitstreamPutBit(bs, 0);         /* fixed_vop_rate = 0 */
1188        }
1189    
1190          WRITE_MARKER();          WRITE_MARKER();
1191          BitstreamPutBits(bs, pParam->width, 13);        // width          BitstreamPutBits(bs, pParam->width, 13);        /* width */
1192          WRITE_MARKER();          WRITE_MARKER();
1193          BitstreamPutBits(bs, pParam->height, 13);       // height          BitstreamPutBits(bs, pParam->height, 13);       /* height */
1194          WRITE_MARKER();          WRITE_MARKER();
1195    
1196          BitstreamPutBit(bs, frame->global_flags & XVID_INTERLACING);    // interlace          BitstreamPutBit(bs, pParam->vol_flags & XVID_VOL_INTERLACING);  /* interlace */
1197          BitstreamPutBit(bs, 1);         // obmc_disable (overlapped block motion compensation)          BitstreamPutBit(bs, 1);         /* obmc_disable (overlapped block motion compensation) */
1198    
1199          if (vol_ver_id != 1)          if (vol_ver_id != 1)
1200          {       if (frame->global_flags & XVID_GMC)          {       if ((pParam->vol_flags & XVID_VOL_GMC))
1201                  {       BitstreamPutBits(bs, 2, 2);             // sprite_enable=='GMC'                  {       BitstreamPutBits(bs, 2, 2);             /* sprite_enable=='GMC' */
1202                          BitstreamPutBits(bs, 2, 6);             // no_of_sprite_warping_points                          BitstreamPutBits(bs, 3, 6);             /* no_of_sprite_warping_points */
1203                          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 */
1204                          BitstreamPutBit(bs, 0);                 // sprite_brightness_change (not supported)                          BitstreamPutBit(bs, 0);                 /* sprite_brightness_change (not supported) */
1205    
1206  /* currently we use no_of_sprite_warping_points==2, sprite_warping_accuracy==3                          /*
1207     for DivX5 compatability */                           * currently we use no_of_sprite_warping_points==2, sprite_warping_accuracy==3
1208                             * for DivX5 compatability
1209                             */
1210    
1211                  } else                  } else
1212                          BitstreamPutBits(bs, 0, 2);             // sprite_enable==off                          BitstreamPutBits(bs, 0, 2);             /* sprite_enable==off */
1213          }          }
1214          else          else
1215                  BitstreamPutBit(bs, 0);         // sprite_enable==off                  BitstreamPutBit(bs, 0);         /* sprite_enable==off */
   
         BitstreamPutBit(bs, 0);         // not_8_bit  
1216    
1217          // quant_type   0=h.263  1=mpeg4(quantizer tables)          BitstreamPutBit(bs, 0);         /* not_8_bit */
         BitstreamPutBit(bs, pParam->m_quant_type);  
1218    
1219          if (pParam->m_quant_type) {          /* quant_type   0=h.263  1=mpeg4(quantizer tables) */
1220                  BitstreamPutBit(bs, get_intra_matrix_status()); // load_intra_quant_mat          BitstreamPutBit(bs, pParam->vol_flags & XVID_VOL_MPEGQUANT);
                 if (get_intra_matrix_status()) {  
                         bs_put_matrix(bs, get_intra_matrix());  
                 }  
1221    
1222                  BitstreamPutBit(bs, get_inter_matrix_status()); // load_inter_quant_mat          if ((pParam->vol_flags & XVID_VOL_MPEGQUANT)) {
1223                  if (get_inter_matrix_status()) {                  BitstreamPutBit(bs, is_custom_intra_matrix(pParam->mpeg_quant_matrices));       /* load_intra_quant_mat */
1224                          bs_put_matrix(bs, get_inter_matrix());                  if(is_custom_intra_matrix(pParam->mpeg_quant_matrices))
1225                  }                          bs_put_matrix(bs, get_intra_matrix(pParam->mpeg_quant_matrices));
1226    
1227                    BitstreamPutBit(bs, is_custom_inter_matrix(pParam->mpeg_quant_matrices));       /* load_inter_quant_mat */
1228                    if(is_custom_inter_matrix(pParam->mpeg_quant_matrices))
1229                            bs_put_matrix(bs, get_inter_matrix(pParam->mpeg_quant_matrices));
1230          }          }
1231    
1232          if (vol_ver_id != 1) {          if (vol_ver_id != 1) {
1233                  if (pParam->m_quarterpel)                  if ((pParam->vol_flags & XVID_VOL_QUARTERPEL))
1234                          BitstreamPutBit(bs, 1);         //  quarterpel                          BitstreamPutBit(bs, 1);         /* quarterpel  */
1235                  else                  else
1236                          BitstreamPutBit(bs, 0);         // no quarterpel                          BitstreamPutBit(bs, 0);         /* no quarterpel */
1237          }          }
1238    
1239          BitstreamPutBit(bs, 1);         // complexity_estimation_disable          BitstreamPutBit(bs, 1);         /* complexity_estimation_disable */
1240          BitstreamPutBit(bs, 1);         // resync_marker_disable          BitstreamPutBit(bs, 1);         /* resync_marker_disable */
1241          BitstreamPutBit(bs, 0);         // data_partitioned          BitstreamPutBit(bs, 0);         /* data_partitioned */
   
         if (vol_ver_id != 1)  
         {  
                 BitstreamPutBit(bs, 0);         // newpred_enable  
1242    
1243                  BitstreamPutBit(bs, (pParam->global & XVID_GLOBAL_REDUCED)?1:0);          if (vol_ver_id != 1) {
1244                    BitstreamPutBit(bs, 0);         /* newpred_enable */
1245                    BitstreamPutBit(bs, (pParam->vol_flags & XVID_VOL_REDUCED_ENABLE)?1:0);
1246                                                                          /* reduced_resolution_vop_enabled */                                                                          /* reduced_resolution_vop_enabled */
1247          }          }
1248    
1249          BitstreamPutBit(bs, 0);         // scalability          BitstreamPutBit(bs, 0);         /* scalability */
1250    
1251          BitstreamPadAlways(bs); // next_start_code()          BitstreamPadAlways(bs); /* next_start_code(); */
1252    
1253          /* fake divx5 id, to ensure compatibility with divx5 decoder */          /* divx5 userdata string */
1254  #define DIVX5_ID "DivX501b481p"  #define DIVX5_ID ((char *)"DivX503b1393")
1255          if (pParam->max_bframes > 0 && (pParam->global & XVID_GLOBAL_PACKED)) {    if ((pParam->global_flags & XVID_GLOBAL_DIVX5_USERDATA)) {
1256                  BitstreamWriteUserData(bs, DIVX5_ID, strlen(DIVX5_ID));                  BitstreamWriteUserData(bs, DIVX5_ID, strlen(DIVX5_ID));
1257            if (pParam->max_bframes > 0 && (pParam->global_flags & XVID_GLOBAL_PACKED))
1258          BitstreamPutBits(bs, 'p', 8);
1259          }          }
1260    
1261          /* xvid id */          /* xvid id */
1262  #define XVID_ID "XviD" XVID_BS_VERSION          {
1263          BitstreamWriteUserData(bs, XVID_ID, strlen(XVID_ID));                  const char xvid_user_format[] = "XviD%04d%c";
1264                    char xvid_user_data[100];
1265                    sprintf(xvid_user_data,
1266                                    xvid_user_format,
1267                                    XVID_BS_VERSION,
1268                                    (frame->vop_flags & XVID_VOP_CARTOON)?'C':'\0');
1269                    BitstreamWriteUserData(bs, xvid_user_data, strlen(xvid_user_data));
1270            }
1271  }  }
1272    
1273    
# Line 1301  Line 1279 
1279                                                  Bitstream * const bs,                                                  Bitstream * const bs,
1280                                                  const MBParam * pParam,                                                  const MBParam * pParam,
1281                                                  const FRAMEINFO * const frame,                                                  const FRAMEINFO * const frame,
1282                                                  int vop_coded)                                                  int vop_coded,
1283                                                    unsigned int quant)
1284  {  {
1285          uint32_t i;          uint32_t i;
1286    
1287  //      BitstreamPad(bs);  #if 0
1288  /* no padding here, anymore. You have to make sure that you are          BitstreamPad(bs);
1289     byte aligned, and that always 1-8 padding bits have been written */  #endif
1290    
1291            /*
1292             * no padding here, anymore. You have to make sure that you are
1293             * byte aligned, and that always 1-8 padding bits have been written
1294             */
1295    
1296          BitstreamPutBits(bs, VOP_START_CODE, 32);          BitstreamPutBits(bs, VOP_START_CODE, 32);
1297    
1298          BitstreamPutBits(bs, frame->coding_type, 2);          BitstreamPutBits(bs, frame->coding_type, 2);
1299          DPRINTF(DPRINTF_HEADER, "coding_type = %i", frame->coding_type);  #if 0
1300            DPRINTF(XVID_DEBUG_HEADER, "coding_type = %i\n", frame->coding_type);
1301    #endif
1302    
1303          for (i = 0; i < frame->seconds; i++) {          for (i = 0; i < frame->seconds; i++) {
1304                  BitstreamPutBit(bs, 1);                  BitstreamPutBit(bs, 1);
# Line 1321  Line 1307 
1307    
1308          WRITE_MARKER();          WRITE_MARKER();
1309    
1310          // time_increment: value=nth_of_sec, nbits = log2(resolution)          /* time_increment: value=nth_of_sec, nbits = log2(resolution) */
1311            BitstreamPutBits(bs, frame->ticks, MAX(log2bin(pParam->fbase-1), 1));
1312          BitstreamPutBits(bs, frame->ticks, log2bin(pParam->fbase));  #if 0
1313          /*DPRINTF("[%i:%i] %c", frame->seconds, frame->ticks,          DPRINTF("[%i:%i] %c",
1314                          frame->coding_type == I_VOP ? 'I' : frame->coding_type ==                          frame->seconds, frame->ticks,
1315                          P_VOP ? 'P' : 'B');*/                          frame->coding_type == I_VOP ? 'I' :
1316                            frame->coding_type == P_VOP ? 'P' :
1317                            frame->coding_type == S_VOP ? 'S' :     'B');
1318    #endif
1319    
1320          WRITE_MARKER();          WRITE_MARKER();
1321    
# Line 1343  Line 1332 
1332                  return;                  return;
1333          }          }
1334    
1335          BitstreamPutBits(bs, 1, 1);     // vop_coded          BitstreamPutBits(bs, 1, 1);     /* vop_coded */
1336    
1337          if ( (frame->coding_type == P_VOP) || (frame->coding_type == S_VOP) )          if ( (frame->coding_type == P_VOP) || (frame->coding_type == S_VOP) )
1338                  BitstreamPutBits(bs, frame->rounding_type, 1);                  BitstreamPutBits(bs, frame->rounding_type, 1);
1339    
1340          if ((pParam->global & XVID_GLOBAL_REDUCED))          if ((frame->vol_flags & XVID_VOL_REDUCED_ENABLE))
1341                  BitstreamPutBit(bs, (frame->global_flags & XVID_REDUCED)?1:0);                  BitstreamPutBit(bs, 0);
1342    
1343          BitstreamPutBits(bs, 0, 3);     // intra_dc_vlc_threshold          BitstreamPutBits(bs, 0, 3);     /* intra_dc_vlc_threshold */
1344    
1345          if (frame->global_flags & XVID_INTERLACING) {          if ((frame->vol_flags & XVID_VOL_INTERLACING)) {
1346                  BitstreamPutBit(bs, (frame->global_flags & XVID_TOPFIELDFIRST));                  BitstreamPutBit(bs, (frame->vop_flags & XVID_VOP_TOPFIELDFIRST));
1347                  BitstreamPutBit(bs, (frame->global_flags & XVID_ALTERNATESCAN));                  BitstreamPutBit(bs, (frame->vop_flags & XVID_VOP_ALTERNATESCAN));
1348          }          }
1349    
1350          if (frame->coding_type == S_VOP) {          if (frame->coding_type == S_VOP) {
1351                  if (1)  {               // no_of_sprite_warping_points>=1 (we use 2!)                  if (1)  {               /* no_of_sprite_warping_points>=1 (we use 2!) */
1352                          int k;                          int k;
1353                          for (k=0;k<2;k++)                          for (k=0;k<3;k++)
1354                          {                          {
1355                                  bs_put_spritetrajectory(bs, frame->warp.duv[k].x ); // du[k]                                  bs_put_spritetrajectory(bs, frame->warp.duv[k].x ); /* du[k]  */
1356                                  WRITE_MARKER();                                  WRITE_MARKER();
1357    
1358                                  bs_put_spritetrajectory(bs, frame->warp.duv[k].y ); // dv[k]                                  bs_put_spritetrajectory(bs, frame->warp.duv[k].y ); /* dv[k]  */
1359                                  WRITE_MARKER();                                  WRITE_MARKER();
1360    
1361                          if (pParam->m_quarterpel)                          if ((frame->vol_flags & XVID_VOL_QUARTERPEL))
1362                          {                          {
1363                                  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);
1364                          }                          }
1365                          else                          else
1366                          {                          {
1367                                  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);
1368                          }                          }
1369                          }                          }
1370                  }                  }
1371          }          }
1372    
1373    
1374          DPRINTF(DPRINTF_HEADER, "quant = %i", frame->quant);  #if 0
1375            DPRINTF(XVID_DEBUG_HEADER, "quant = %i\n", quant);
1376    #endif
1377    
1378          BitstreamPutBits(bs, frame->quant, 5);  // quantizer          BitstreamPutBits(bs, quant, 5); /* quantizer */
1379    
1380          if (frame->coding_type != I_VOP)          if (frame->coding_type != I_VOP)
1381                  BitstreamPutBits(bs, frame->fcode, 3);  // forward_fixed_code                  BitstreamPutBits(bs, frame->fcode, 3);  /* forward_fixed_code */
1382    
1383          if (frame->coding_type == B_VOP)          if (frame->coding_type == B_VOP)
1384                  BitstreamPutBits(bs, frame->bcode, 3);  // backward_fixed_code                  BitstreamPutBits(bs, frame->bcode, 3);  /* backward_fixed_code */
1385    
1386  }  }
1387    
1388  void  void
1389  BitstreamWriteUserData(Bitstream * const bs,  BitstreamWriteUserData(Bitstream * const bs,
1390                                                  uint8_t * data,                                                  const char *data,
1391                                                  const int length)                                                  const unsigned int length)
1392  {  {
1393          int i;          int i;
1394    
# Line 1409  Line 1400 
1400          }          }
1401    
1402  }  }
1403    
1404    /*
1405     * Group of VOP
1406     */
1407    void
1408    BitstreamWriteGroupOfVopHeader(Bitstream * const bs,
1409                                   const MBParam * pParam,
1410                                   uint32_t is_closed_gov)
1411    {
1412      int64_t time = (pParam->m_stamp + (pParam->fbase/2)) / pParam->fbase;
1413      int hours, minutes, seconds;
1414    
1415      /* compute time_code */
1416      seconds = time % 60; time /= 60;
1417      minutes = time % 60; time /= 60;
1418      hours = time % 24; /* don't overflow */
1419    
1420      BitstreamPutBits(bs, GRPOFVOP_START_CODE, 32);
1421      BitstreamPutBits(bs, hours, 5);
1422      BitstreamPutBits(bs, minutes, 6);
1423      BitstreamPutBit(bs, 1);
1424      BitstreamPutBits(bs, seconds, 6);
1425      BitstreamPutBits(bs, is_closed_gov, 1);
1426      BitstreamPutBits(bs, 0, 1); /* broken_link */
1427    }
1428    
1429    /*
1430     * End of Sequence
1431     */
1432    void
1433    BitstreamWriteEndOfSequence(Bitstream * const bs)
1434    {
1435        BitstreamPadAlways(bs);
1436        BitstreamPutBits(bs, VISOBJSEQ_STOP_CODE, 32);
1437    }
1438    
1439    /*
1440     * Video Packet (resync marker)
1441     */
1442    
1443    void write_video_packet_header(Bitstream * const bs,
1444                                   const MBParam * pParam,
1445                                   const FRAMEINFO * const frame,
1446                                   int mbnum)
1447    {
1448        const int mbnum_bits = log2bin(pParam->mb_width *  pParam->mb_height - 1);
1449        uint32_t nbitsresyncmarker;
1450    
1451        if (frame->coding_type == I_VOP)
1452          nbitsresyncmarker = NUMBITS_VP_RESYNC_MARKER;  /* 16 zeros followed by a 1. */
1453        else if (frame->coding_type == P_VOP)
1454          nbitsresyncmarker = NUMBITS_VP_RESYNC_MARKER-1 + frame->fcode;
1455        else /* B_VOP */
1456          nbitsresyncmarker = MAX(NUMBITS_VP_RESYNC_MARKER, NUMBITS_VP_RESYNC_MARKER-1 + MAX(frame->fcode, frame->bcode));
1457    
1458        BitstreamPadAlways(bs);
1459        BitstreamPutBits(bs, RESYNC_MARKER, nbitsresyncmarker);
1460        BitstreamPutBits(bs, mbnum, mbnum_bits);
1461        BitstreamPutBits(bs, frame->quant, 5);
1462        BitstreamPutBit(bs, 0); /* hec */
1463    }

Legend:
Removed from v.1098  
changed lines
  Added in v.1627

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