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

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

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

revision 1.39.2.17, Wed Sep 10 19:28:40 2003 UTC revision 1.40, Mon Jun 9 17:07:57 2003 UTC
# Line 1  Line 1 
1  /*****************************************************************************   /******************************************************************************
2   *    *                                                                            *
3   *  XVID MPEG-4 VIDEO CODEC    *  This file is part of XviD, a free MPEG-4 video encoder/decoder            *
4   *  - Bitstream reader/writer -    *                                                                            *
5   *    *  XviD is an implementation of a part of one or more MPEG-4 Video tools     *
6   *  Copyright (C) 2001-2003 Peter Ross <pross@xvid.org>    *  as specified in ISO/IEC 14496-2 standard.  Those intending to use this    *
7   *                     2003 Cristoph Lampert <gruel@web.de>    *  software module in hardware or software products are advised that its     *
8   *    *  use may infringe existing patents or copyrights, and any such use         *
9   *  This program is free software ; you can redistribute it and/or modify    *  would be at such party's own risk.  The original developer of this        *
10   *  it under the terms of the GNU General Public License as published by    *  software module and his/her company, and subsequent editors and their     *
11   *  the Free Software Foundation ; either version 2 of the License, or    *  companies, will have no liability for use of this software or             *
12   *  (at your option) any later version.    *  modifications or derivatives thereof.                                     *
13   *    *                                                                            *
14   *  This program is distributed in the hope that it will be useful,    *  XviD is free software; you can redistribute it and/or modify it           *
15   *  but WITHOUT ANY WARRANTY ; without even the implied warranty of    *  under the terms of the GNU General Public License as published by         *
16   *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the    *  the Free Software Foundation; either version 2 of the License, or         *
17   *  GNU General Public License for more details.    *  (at your option) any later version.                                       *
18   *    *                                                                            *
19   *  You should have received a copy of the GNU General Public License    *  XviD is distributed in the hope that it will be useful, but               *
20   *  along with this program ; if not, write to the Free Software    *  WITHOUT ANY WARRANTY; without even the implied warranty of                *
21   *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA    *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the             *
22   *    *  GNU General Public License for more details.                              *
23   * $Id$    *                                                                            *
24   *    *  You should have received a copy of the GNU General Public License         *
25   ****************************************************************************/    *  along with this program; if not, write to the Free Software               *
26      *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA  *
27      *                                                                            *
28      ******************************************************************************/
29    
30     /******************************************************************************
31      *                                                                            *
32      *  bitstream.c                                                               *
33      *                                                                            *
34      *  Copyright (C) 2001 - Peter Ross <pross@cs.rmit.edu.au>                    *
35      *                                                                            *
36      *  For more information visit the XviD homepage: http://www.xvid.org         *
37      *                                                                            *
38      ******************************************************************************/
39    
40     /******************************************************************************
41      *                                                                            *
42      *  Revision history:                                                         *
43      *                                                                            *
44      *  05.01.2003 GMC support - gruel                                            *
45      *  04.10.2002 qpel support - Isibaar                                         *
46      *  11.07.2002 add VOP width & height return to dec when dec->width           *
47      *             or dec->height is 0  (for use in examples/ex1.c)               *
48      *             MinChen <chenm001@163.com>                                     *
49      *  22.05.2002 bs_put_matrix fix                                              *
50      *  20.05.2002 added BitstreamWriteUserData                                   *
51      *  19.06.2002 Fix a little bug in use custom quant matrix                    *
52      *             MinChen <chenm001@163.com>                                     *
53      *  08.05.2002 add low_delay support for B_VOP decode                         *
54      *             MinChen <chenm001@163.com>                                     *
55      *  06.05.2002 low_delay                                                      *
56      *  06.05.2002 fixed fincr/fbase error                                        *
57      *  01.05.2002 added BVOP support to BitstreamWriteVopHeader                  *
58      *  15.04.2002 rewrite log2bin use asm386  By MinChen <chenm001@163.com>      *
59      *  26.03.2002 interlacing support                                            *
60      *  03.03.2002 qmatrix writing                                                *
61      *  03.03.2002 merged BITREADER and BITWRITER                                 *
62      *  30.02.2002 intra_dc_threshold support                                     *
63      *  04.12.2001 support for additional headers                                 *
64      *  16.12.2001 inital version                                                 *
65      *                                                                                                                                                        *
66      ******************************************************************************/
67    
68    
69  #include <string.h>  #include <string.h>
70  #include <stdio.h>  #include <stdio.h>
# Line 36  Line 78 
78  static uint32_t __inline  static uint32_t __inline
79  log2bin(uint32_t value)  log2bin(uint32_t value)
80  {  {
81    /* Changed by Chenm001 */
82    #if !defined(_MSC_VER)
83          int n = 0;          int n = 0;
84    
85          while (value) {          while (value) {
# Line 43  Line 87 
87                  n++;                  n++;
88          }          }
89          return n;          return n;
90    #else
91            __asm {
92                    bsr eax, value
93                    inc eax
94            }
95    #endif
96  }  }
97    
98    
# Line 71  Line 121 
121                  matrix[scan_tables[0][i++]] = value;                  matrix[scan_tables[0][i++]] = value;
122          }          }
123          while (value != 0 && i < 64);          while (value != 0 && i < 64);
124          i--;    /* fix little bug at coeff not full */          i--;    // fix little bug at coeff not full
125    
126          while (i < 64) {          while (i < 64) {
127                  matrix[scan_tables[0][i++]] = last;                  matrix[scan_tables[0][i++]] = last;
# Line 80  Line 130 
130    
131    
132    
133  /*  // for PVOP addbits == fcode - 1
134   * for PVOP addbits == fcode - 1  // for BVOP addbits == max(fcode,bcode) - 1
135   * for BVOP addbits == max(fcode,bcode) - 1  // returns mbpos
  * returns mbpos  
  */  
136  int  int
137  read_video_packet_header(Bitstream *bs,  read_video_packet_header(Bitstream *bs,
138                                                  DECODER * dec,                                                  DECODER * dec,
# Line 102  Line 150 
150          BitstreamSkip(bs, BitstreamNumBitsToByteAlign(bs));          BitstreamSkip(bs, BitstreamNumBitsToByteAlign(bs));
151          BitstreamSkip(bs, startcode_bits);          BitstreamSkip(bs, startcode_bits);
152    
153          DPRINTF(XVID_DEBUG_STARTCODE, "<video_packet_header>\n");          DPRINTF(DPRINTF_STARTCODE, "<video_packet_header>");
154    
155          if (dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR)          if (dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR)
156          {          {
# Line 121  Line 169 
169          }          }
170    
171          mbnum = BitstreamGetBits(bs, mbnum_bits);               /* macroblock_number */          mbnum = BitstreamGetBits(bs, mbnum_bits);               /* macroblock_number */
172          DPRINTF(XVID_DEBUG_HEADER, "mbnum %i\n", mbnum);          DPRINTF(DPRINTF_HEADER, "mbnum %i", mbnum);
173    
174          if (dec->shape != VIDOBJLAY_SHAPE_BINARY_ONLY)          if (dec->shape != VIDOBJLAY_SHAPE_BINARY_ONLY)
175          {          {
176                  *quant = BitstreamGetBits(bs, dec->quant_bits); /* quant_scale */                  *quant = BitstreamGetBits(bs, dec->quant_bits); /* quant_scale */
177                  DPRINTF(XVID_DEBUG_HEADER, "quant %i\n", *quant);                  DPRINTF(DPRINTF_HEADER, "quant %i", *quant);
178          }          }
179    
180          if (dec->shape == VIDOBJLAY_SHAPE_RECTANGULAR)          if (dec->shape == VIDOBJLAY_SHAPE_RECTANGULAR)
181                  hec = BitstreamGetBit(bs);              /* header_extension_code */                  hec = BitstreamGetBit(bs);              /* header_extension_code */
182    
183    
184          DPRINTF(XVID_DEBUG_HEADER, "header_extension_code %i\n", hec);          DPRINTF(DPRINTF_HEADER, "header_extension_code %i", hec);
185          if (hec)          if (hec)
186          {          {
187                  int time_base;                  int time_base;
# Line 145  Line 193 
193                  if (dec->time_inc_bits)                  if (dec->time_inc_bits)
194                          time_increment = (BitstreamGetBits(bs, dec->time_inc_bits));    /* vop_time_increment */                          time_increment = (BitstreamGetBits(bs, dec->time_inc_bits));    /* vop_time_increment */
195                  READ_MARKER();                  READ_MARKER();
196                  DPRINTF(XVID_DEBUG_HEADER,"time %i:%i\n", time_base, time_increment);                  DPRINTF(DPRINTF_HEADER,"time %i:%i", time_base, time_increment);
197    
198                  coding_type = BitstreamGetBits(bs, 2);                  coding_type = BitstreamGetBits(bs, 2);
199                  DPRINTF(XVID_DEBUG_HEADER,"coding_type %i\n", coding_type);                  DPRINTF(DPRINTF_HEADER,"coding_type %i", coding_type);
200    
201                  if (dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR)                  if (dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR)
202                  {                  {
# Line 164  Line 212 
212                          if (dec->sprite_enable == SPRITE_GMC && coding_type == S_VOP &&                          if (dec->sprite_enable == SPRITE_GMC && coding_type == S_VOP &&
213                                  dec->sprite_warping_points > 0)                                  dec->sprite_warping_points > 0)
214                          {                          {
215                                  /* TODO: sprite trajectory */                                  // TODO: sprite trajectory
216                          }                          }
217                          if (dec->reduced_resolution_enable &&                          if (dec->reduced_resolution_enable &&
218                                  dec->shape == VIDOBJLAY_SHAPE_RECTANGULAR &&                                  dec->shape == VIDOBJLAY_SHAPE_RECTANGULAR &&
# Line 176  Line 224 
224                          if (coding_type != I_VOP && fcode_forward)                          if (coding_type != I_VOP && fcode_forward)
225                          {                          {
226                                  *fcode_forward = BitstreamGetBits(bs, 3);                                  *fcode_forward = BitstreamGetBits(bs, 3);
227                                  DPRINTF(XVID_DEBUG_HEADER,"fcode_forward %i\n", *fcode_forward);                                  DPRINTF(DPRINTF_HEADER,"fcode_forward %i", *fcode_forward);
228                          }                          }
229    
230                          if (coding_type == B_VOP && fcode_backward)                          if (coding_type == B_VOP && fcode_backward)
231                          {                          {
232                                  *fcode_backward = BitstreamGetBits(bs, 3);                                  *fcode_backward = BitstreamGetBits(bs, 3);
233                                  DPRINTF(XVID_DEBUG_HEADER,"fcode_backward %i\n", *fcode_backward);                                  DPRINTF(DPRINTF_HEADER,"fcode_backward %i", *fcode_backward);
234                          }                          }
235                  }                  }
236    
# Line 194  Line 242 
242                  int vop_id_for_prediction;                  int vop_id_for_prediction;
243    
244                  vop_id = BitstreamGetBits(bs, MIN(dec->time_inc_bits + 3, 15));                  vop_id = BitstreamGetBits(bs, MIN(dec->time_inc_bits + 3, 15));
245                  DPRINTF(XVID_DEBUG_HEADER, "vop_id %i\n", vop_id);                  DPRINTF(DPRINTF_HEADER, "vop_id %i", vop_id);
246                  if (BitstreamGetBit(bs))        /* vop_id_for_prediction_indication */                  if (BitstreamGetBit(bs))        /* vop_id_for_prediction_indication */
247                  {                  {
248                          vop_id_for_prediction = BitstreamGetBits(bs, MIN(dec->time_inc_bits + 3, 15));                          vop_id_for_prediction = BitstreamGetBits(bs, MIN(dec->time_inc_bits + 3, 15));
249                          DPRINTF(XVID_DEBUG_HEADER, "vop_id_for_prediction %i\n", vop_id_for_prediction);                          DPRINTF(DPRINTF_HEADER, "vop_id_for_prediction %i", vop_id_for_prediction);
250                  }                  }
251                  READ_MARKER();                  READ_MARKER();
252          }          }
# Line 216  Line 264 
264          ESTIMATION * e = &dec->estimation;          ESTIMATION * e = &dec->estimation;
265    
266          e->method = BitstreamGetBits(bs, 2);    /* estimation_method */          e->method = BitstreamGetBits(bs, 2);    /* estimation_method */
267          DPRINTF(XVID_DEBUG_HEADER,"+ complexity_estimation_header; method=%i\n", e->method);          DPRINTF(DPRINTF_HEADER,"+ complexity_estimation_header; method=%i", e->method);
268    
269          if (e->method == 0 || e->method == 1)          if (e->method == 0 || e->method == 1)
270          {          {
# Line 402  Line 450 
450    
451                          int profile;                          int profile;
452    
453                          DPRINTF(XVID_DEBUG_STARTCODE, "<visual_object_sequence>\n");                          DPRINTF(DPRINTF_STARTCODE, "<visual_object_sequence>");
454    
455                          BitstreamSkip(bs, 32);  /* visual_object_sequence_start_code */                          BitstreamSkip(bs, 32);  // visual_object_sequence_start_code
456                          profile = BitstreamGetBits(bs, 8);      /* profile_and_level_indication */                          profile = BitstreamGetBits(bs, 8);      // profile_and_level_indication
457    
458                          DPRINTF(XVID_DEBUG_HEADER, "profile_and_level_indication %i\n", profile);                          DPRINTF(DPRINTF_HEADER, "profile_and_level_indication %i", profile);
459    
460                  } else if (start_code == VISOBJSEQ_STOP_CODE) {                  } else if (start_code == VISOBJSEQ_STOP_CODE) {
461    
462                          BitstreamSkip(bs, 32);  /* visual_object_sequence_stop_code */                          BitstreamSkip(bs, 32);  // visual_object_sequence_stop_code
463    
464                          DPRINTF(XVID_DEBUG_STARTCODE, "</visual_object_sequence>\n");                          DPRINTF(DPRINTF_STARTCODE, "</visual_object_sequence>");
465    
466                  } else if (start_code == VISOBJ_START_CODE) {                  } else if (start_code == VISOBJ_START_CODE) {
467                          int visobj_ver_id;                          int visobj_ver_id;
468    
469                          DPRINTF(XVID_DEBUG_STARTCODE, "<visual_object>\n");                          DPRINTF(DPRINTF_STARTCODE, "<visual_object>");
470    
471                          BitstreamSkip(bs, 32);  /* visual_object_start_code */                          BitstreamSkip(bs, 32);  // visual_object_start_code
472                          if (BitstreamGetBit(bs))        /* is_visual_object_identified */                          if (BitstreamGetBit(bs))        // is_visual_object_identified
473                          {                          {
474                                  visobj_ver_id = BitstreamGetBits(bs, 4);        /* visual_object_ver_id */                                  visobj_ver_id = BitstreamGetBits(bs, 4);        // visual_object_ver_id
475                                  DPRINTF(XVID_DEBUG_HEADER,"visobj_ver_id %i\n", visobj_ver_id);                                  DPRINTF(DPRINTF_HEADER,"visobj_ver_id %i", visobj_ver_id);
476                                  BitstreamSkip(bs, 3);   /* visual_object_priority */                                  BitstreamSkip(bs, 3);   // visual_object_priority
477                          } else {                          } else {
478                                  visobj_ver_id = 1;                                  visobj_ver_id = 1;
479                          }                          }
480    
481                          if (BitstreamShowBits(bs, 4) != VISOBJ_TYPE_VIDEO)      /* visual_object_type */                          if (BitstreamShowBits(bs, 4) != VISOBJ_TYPE_VIDEO)      // visual_object_type
482                          {                          {
483                                  DPRINTF(XVID_DEBUG_ERROR, "visual_object_type != video\n");                                  DPRINTF(DPRINTF_ERROR, "visual_object_type != video");
484                                  return -1;                                  return -1;
485                          }                          }
486                          BitstreamSkip(bs, 4);                          BitstreamSkip(bs, 4);
487    
488                          /* video_signal_type */                          // video_signal_type
489    
490                          if (BitstreamGetBit(bs))        /* video_signal_type */                          if (BitstreamGetBit(bs))        // video_signal_type
491                          {                          {
492                                  DPRINTF(XVID_DEBUG_HEADER,"+ video_signal_type\n");                                  DPRINTF(DPRINTF_HEADER,"+ video_signal_type");
493                                  BitstreamSkip(bs, 3);   /* video_format */                                  BitstreamSkip(bs, 3);   // video_format
494                                  BitstreamSkip(bs, 1);   /* video_range */                                  BitstreamSkip(bs, 1);   // video_range
495                                  if (BitstreamGetBit(bs))        /* color_description */                                  if (BitstreamGetBit(bs))        // color_description
496                                  {                                  {
497                                          DPRINTF(XVID_DEBUG_HEADER,"+ color_description");                                          DPRINTF(DPRINTF_HEADER,"+ color_description");
498                                          BitstreamSkip(bs, 8);   /* color_primaries */                                          BitstreamSkip(bs, 8);   // color_primaries
499                                          BitstreamSkip(bs, 8);   /* transfer_characteristics */                                          BitstreamSkip(bs, 8);   // transfer_characteristics
500                                          BitstreamSkip(bs, 8);   /* matrix_coefficients */                                          BitstreamSkip(bs, 8);   // matrix_coefficients
501                                  }                                  }
502                          }                          }
503                  } else if ((start_code & ~VIDOBJ_START_CODE_MASK) == VIDOBJ_START_CODE) {                  } else if ((start_code & ~VIDOBJ_START_CODE_MASK) == VIDOBJ_START_CODE) {
504    
505                          DPRINTF(XVID_DEBUG_STARTCODE, "<video_object>\n");                          DPRINTF(DPRINTF_STARTCODE, "<video_object>");
506                          DPRINTF(XVID_DEBUG_HEADER, "vo id %i\n", start_code & VIDOBJ_START_CODE_MASK);                          DPRINTF(DPRINTF_HEADER, "vo id %i", start_code & VIDOBJ_START_CODE_MASK);
507    
508                          BitstreamSkip(bs, 32);  /* video_object_start_code */                          BitstreamSkip(bs, 32);  // video_object_start_code
509    
510                  } else if ((start_code & ~VIDOBJLAY_START_CODE_MASK) == VIDOBJLAY_START_CODE) {                  } else if ((start_code & ~VIDOBJLAY_START_CODE_MASK) == VIDOBJLAY_START_CODE) {
511    
512                          DPRINTF(XVID_DEBUG_STARTCODE, "<video_object_layer>\n");                          DPRINTF(DPRINTF_STARTCODE, "<video_object_layer>");
513                          DPRINTF(XVID_DEBUG_HEADER, "vol id %i\n", start_code & VIDOBJLAY_START_CODE_MASK);                          DPRINTF(DPRINTF_HEADER, "vol id %i", start_code & VIDOBJLAY_START_CODE_MASK);
514    
515                          BitstreamSkip(bs, 32);  /* video_object_layer_start_code */                          BitstreamSkip(bs, 32);  // video_object_layer_start_code
                         BitstreamSkip(bs, 1);   /* random_accessible_vol */  
516    
517              BitstreamSkip(bs, 8);   /* video_object_type_indication */                          BitstreamSkip(bs, 1);   // random_accessible_vol
518    
519                          if (BitstreamGetBit(bs))        /* is_object_layer_identifier */                          // video_object_type_indication
520                            if (BitstreamShowBits(bs, 8) != VIDOBJLAY_TYPE_SIMPLE &&
521                                    BitstreamShowBits(bs, 8) != VIDOBJLAY_TYPE_CORE &&
522                                    BitstreamShowBits(bs, 8) != VIDOBJLAY_TYPE_MAIN &&
523                                    BitstreamShowBits(bs, 8) != VIDOBJLAY_TYPE_ACE &&
524                                    BitstreamShowBits(bs, 8) != VIDOBJLAY_TYPE_ART_SIMPLE &&
525                                    BitstreamShowBits(bs, 8) != 0)  // BUGGY DIVX
526                          {                          {
527                                  DPRINTF(XVID_DEBUG_HEADER, "+ is_object_layer_identifier\n");                                  DPRINTF(DPRINTF_ERROR,"video_object_type_indication %i not supported ",
528                                  vol_ver_id = BitstreamGetBits(bs, 4);   /* video_object_layer_verid */                                          BitstreamShowBits(bs, 8));
529                                  DPRINTF(XVID_DEBUG_HEADER,"ver_id %i\n", vol_ver_id);                                  return -1;
530                                  BitstreamSkip(bs, 3);   /* video_object_layer_priority */                          }
531                            BitstreamSkip(bs, 8);
532    
533    
534                            if (BitstreamGetBit(bs))        // is_object_layer_identifier
535                            {
536                                    DPRINTF(DPRINTF_HEADER, "+ is_object_layer_identifier");
537                                    vol_ver_id = BitstreamGetBits(bs, 4);   // video_object_layer_verid
538                                    DPRINTF(DPRINTF_HEADER,"ver_id %i", vol_ver_id);
539                                    BitstreamSkip(bs, 3);   // video_object_layer_priority
540                          } else {                          } else {
541                                  vol_ver_id = 1;                                  vol_ver_id = 1;
542                          }                          }
543    
544                          dec->aspect_ratio = BitstreamGetBits(bs, 4);                          dec->aspect_ratio = BitstreamGetBits(bs, 4);
545    
546                          if (dec->aspect_ratio == VIDOBJLAY_AR_EXTPAR)   /* aspect_ratio_info */                          if (dec->aspect_ratio == VIDOBJLAY_AR_EXTPAR)   // aspect_ratio_info
547                          {                          {
548                                  DPRINTF(XVID_DEBUG_HEADER, "+ aspect_ratio_info\n");                                  DPRINTF(DPRINTF_HEADER, "+ aspect_ratio_info");
549                                  dec->par_width = BitstreamGetBits(bs, 8);       /* par_width */                                  dec->par_width = BitstreamGetBits(bs, 8);       // par_width
550                                  dec->par_height = BitstreamGetBits(bs, 8);      /* par_height */                                  dec->par_height = BitstreamGetBits(bs, 8);      // par_height
551                          }                          }
552    
553                          if (BitstreamGetBit(bs))        /* vol_control_parameters */                          if (BitstreamGetBit(bs))        // vol_control_parameters
554                          {                          {
555                                  DPRINTF(XVID_DEBUG_HEADER, "+ vol_control_parameters\n");                                  DPRINTF(DPRINTF_HEADER, "+ vol_control_parameters");
556                                  BitstreamSkip(bs, 2);   /* chroma_format */                                  BitstreamSkip(bs, 2);   // chroma_format
557                                  dec->low_delay = BitstreamGetBit(bs);   /* low_delay */                                  dec->low_delay = BitstreamGetBit(bs);   // low_delay
558                                  DPRINTF(XVID_DEBUG_HEADER, "low_delay %i\n", dec->low_delay);                                  DPRINTF(DPRINTF_HEADER, "low_delay %i", dec->low_delay);
559                                  if (BitstreamGetBit(bs))        /* vbv_parameters */                                  if (BitstreamGetBit(bs))        // vbv_parameters
560                                  {                                  {
561                                          unsigned int bitrate;                                          unsigned int bitrate;
562                                          unsigned int buffer_size;                                          unsigned int buffer_size;
563                                          unsigned int occupancy;                                          unsigned int occupancy;
564    
565                                          DPRINTF(XVID_DEBUG_HEADER,"+ vbv_parameters\n");                                          DPRINTF(DPRINTF_HEADER,"+ vbv_parameters");
566    
567                                          bitrate = BitstreamGetBits(bs,15) << 15;        /* first_half_bit_rate */                                          bitrate = BitstreamGetBits(bs,15) << 15;        // first_half_bit_rate
568                                          READ_MARKER();                                          READ_MARKER();
569                                          bitrate |= BitstreamGetBits(bs,15);             /* latter_half_bit_rate */                                          bitrate |= BitstreamGetBits(bs,15);             // latter_half_bit_rate
570                                          READ_MARKER();                                          READ_MARKER();
571    
572                                          buffer_size = BitstreamGetBits(bs, 15) << 3;    /* first_half_vbv_buffer_size */                                          buffer_size = BitstreamGetBits(bs, 15) << 3;    // first_half_vbv_buffer_size
573                                          READ_MARKER();                                          READ_MARKER();
574                                          buffer_size |= BitstreamGetBits(bs, 3);         /* latter_half_vbv_buffer_size */                                          buffer_size |= BitstreamGetBits(bs, 3);         // latter_half_vbv_buffer_size
575    
576                                          occupancy = BitstreamGetBits(bs, 11) << 15;     /* first_half_vbv_occupancy */                                          occupancy = BitstreamGetBits(bs, 11) << 15;     // first_half_vbv_occupancy
577                                          READ_MARKER();                                          READ_MARKER();
578                                          occupancy |= BitstreamGetBits(bs, 15);  /* latter_half_vbv_occupancy */                                          occupancy |= BitstreamGetBits(bs, 15);  // latter_half_vbv_occupancy
579                                          READ_MARKER();                                          READ_MARKER();
580    
581                                          DPRINTF(XVID_DEBUG_HEADER,"bitrate %d (unit=400 bps)\n", bitrate);                                          DPRINTF(DPRINTF_HEADER,"bitrate %d (unit=400 bps)", bitrate);
582                                          DPRINTF(XVID_DEBUG_HEADER,"buffer_size %d (unit=16384 bits)\n", buffer_size);                                          DPRINTF(DPRINTF_HEADER,"buffer_size %d (unit=16384 bits)", buffer_size);
583                                          DPRINTF(XVID_DEBUG_HEADER,"occupancy %d (unit=64 bits)\n", occupancy);                                          DPRINTF(DPRINTF_HEADER,"occupancy %d (unit=64 bits)", occupancy);
584                                  }                                  }
585                          }else{                          }else{
586                                  dec->low_delay = dec->low_delay_default;                                  dec->low_delay = dec->low_delay_default;
587                          }                          }
588    
589                          dec->shape = BitstreamGetBits(bs, 2);   /* video_object_layer_shape */                          dec->shape = BitstreamGetBits(bs, 2);   // video_object_layer_shape
590    
591                          DPRINTF(XVID_DEBUG_HEADER, "shape %i\n", dec->shape);                          DPRINTF(DPRINTF_HEADER, "shape %i", dec->shape);
592                          if (dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR)                          if (dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR)
593                          {                          {
594                                  DPRINTF(XVID_DEBUG_ERROR,"non-rectangular shapes are not supported\n");                                  DPRINTF(DPRINTF_ERROR,"non-rectangular shapes are not supported");
595                          }                          }
596    
597                          if (dec->shape == VIDOBJLAY_SHAPE_GRAYSCALE && vol_ver_id != 1) {                          if (dec->shape == VIDOBJLAY_SHAPE_GRAYSCALE && vol_ver_id != 1) {
598                                  BitstreamSkip(bs, 4);   /* video_object_layer_shape_extension */                                  BitstreamSkip(bs, 4);   // video_object_layer_shape_extension
599                          }                          }
600    
601                          READ_MARKER();                          READ_MARKER();
602    
603                          /********************** for decode B-frame time ***********************/  // *************************** for decode B-frame time ***********************
604                          dec->time_inc_resolution = BitstreamGetBits(bs, 16);    /* vop_time_increment_resolution */                          dec->time_inc_resolution = BitstreamGetBits(bs, 16);    // vop_time_increment_resolution
605                          DPRINTF(XVID_DEBUG_HEADER,"vop_time_increment_resolution %i\n", dec->time_inc_resolution);                          DPRINTF(DPRINTF_HEADER,"vop_time_increment_resolution %i", dec->time_inc_resolution);
606    
607  #if 0  //                      dec->time_inc_resolution--;
                         dec->time_inc_resolution--;  
 #endif  
608    
609                          if (dec->time_inc_resolution > 0) {                          if (dec->time_inc_resolution > 0) {
610                                  dec->time_inc_bits = log2bin(dec->time_inc_resolution-1);                                  dec->time_inc_bits = log2bin(dec->time_inc_resolution-1);
611                          } else {                          } else {
612  #if 0                                  // dec->time_inc_bits = 0;
613                                  dec->time_inc_bits = 0;                                  // for "old" xvid compatibility, set time_inc_bits = 1
 #endif  
                                 /* for "old" xvid compatibility, set time_inc_bits = 1 */  
614                                  dec->time_inc_bits = 1;                                  dec->time_inc_bits = 1;
615                          }                          }
616    
617                          READ_MARKER();                          READ_MARKER();
618    
619                          if (BitstreamGetBit(bs))        /* fixed_vop_rate */                          if (BitstreamGetBit(bs))        // fixed_vop_rate
620                          {                          {
621                                  DPRINTF(XVID_DEBUG_HEADER, "+ fixed_vop_rate\n");                                  DPRINTF(DPRINTF_HEADER, "+ fixed_vop_rate");
622                                  BitstreamSkip(bs, dec->time_inc_bits);  /* fixed_vop_time_increment */                                  BitstreamSkip(bs, dec->time_inc_bits);  // fixed_vop_time_increment
623                          }                          }
624    
625                          if (dec->shape != VIDOBJLAY_SHAPE_BINARY_ONLY) {                          if (dec->shape != VIDOBJLAY_SHAPE_BINARY_ONLY) {
# Line 570  Line 628 
628                                          uint32_t width, height;                                          uint32_t width, height;
629    
630                                          READ_MARKER();                                          READ_MARKER();
631                                          width = BitstreamGetBits(bs, 13);       /* video_object_layer_width */                                          width = BitstreamGetBits(bs, 13);       // video_object_layer_width
632                                          READ_MARKER();                                          READ_MARKER();
633                                          height = BitstreamGetBits(bs, 13);      /* video_object_layer_height */                                          height = BitstreamGetBits(bs, 13);      // video_object_layer_height
634                                          READ_MARKER();                                          READ_MARKER();
635    
636                                          DPRINTF(XVID_DEBUG_HEADER, "width %i\n", width);                                          DPRINTF(DPRINTF_HEADER, "width %i", width);
637                                          DPRINTF(XVID_DEBUG_HEADER, "height %i\n", height);                                          DPRINTF(DPRINTF_HEADER, "height %i", height);
638    
639                                          if (dec->width != width || dec->height != height)                                          if (dec->width != width || dec->height != height)
640                                          {                                          {
641                                                  if (dec->fixed_dimensions)                                                  if (dec->fixed_dimensions)
642                                                  {                                                  {
643                                                          DPRINTF(XVID_DEBUG_ERROR, "decoder width/height does not match bitstream\n");                                                          DPRINTF(DPRINTF_ERROR, "XVID_DEC_PARAM width/height does not match bitstream");
644                                                          return -1;                                                          return -1;
645                                                  }                                                  }
646                                                  resize = 1;                                                  resize = 1;
# Line 592  Line 650 
650                                  }                                  }
651    
652                                  dec->interlacing = BitstreamGetBit(bs);                                  dec->interlacing = BitstreamGetBit(bs);
653                                  DPRINTF(XVID_DEBUG_HEADER, "interlacing %i\n", dec->interlacing);                                  DPRINTF(DPRINTF_HEADER, "interlacing %i", dec->interlacing);
654    
655                                  if (!BitstreamGetBit(bs))       /* obmc_disable */                                  if (!BitstreamGetBit(bs))       // obmc_disable
656                                  {                                  {
657                                          DPRINTF(XVID_DEBUG_ERROR, "obmc_disabled==false not supported\n");                                          DPRINTF(DPRINTF_ERROR, "obmc_disabled==false not supported");
658                                          /* TODO */                                          // TODO
659                                          /* fucking divx4.02 has this enabled */                                          // fucking divx4.02 has this enabled
660                                  }                                  }
661    
662                                  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
663    
664                                  if (dec->sprite_enable == SPRITE_STATIC || dec->sprite_enable == SPRITE_GMC)                                  if (dec->sprite_enable == SPRITE_STATIC || dec->sprite_enable == SPRITE_GMC)
665                                  {                                  {
# Line 613  Line 671 
671                                                  int sprite_height;                                                  int sprite_height;
672                                                  int sprite_left_coord;                                                  int sprite_left_coord;
673                                                  int sprite_top_coord;                                                  int sprite_top_coord;
674                                                  sprite_width = BitstreamGetBits(bs, 13);                /* sprite_width */                                                  sprite_width = BitstreamGetBits(bs, 13);                // sprite_width
675                                                  READ_MARKER();                                                  READ_MARKER();
676                                                  sprite_height = BitstreamGetBits(bs, 13);       /* sprite_height */                                                  sprite_height = BitstreamGetBits(bs, 13);       // sprite_height
677                                                  READ_MARKER();                                                  READ_MARKER();
678                                                  sprite_left_coord = BitstreamGetBits(bs, 13);   /* sprite_left_coordinate */                                                  sprite_left_coord = BitstreamGetBits(bs, 13);   // sprite_left_coordinate
679                                                  READ_MARKER();                                                  READ_MARKER();
680                                                  sprite_top_coord = BitstreamGetBits(bs, 13);    /* sprite_top_coordinate */                                                  sprite_top_coord = BitstreamGetBits(bs, 13);    // sprite_top_coordinate
681                                                  READ_MARKER();                                                  READ_MARKER();
682                                          }                                          }
683                                          dec->sprite_warping_points = BitstreamGetBits(bs, 6);           /* no_of_sprite_warping_points */                                          dec->sprite_warping_points = BitstreamGetBits(bs, 6);           // no_of_sprite_warping_points
684                                          dec->sprite_warping_accuracy = BitstreamGetBits(bs, 2);         /* sprite_warping_accuracy */                                          dec->sprite_warping_accuracy = BitstreamGetBits(bs, 2);         // sprite_warping_accuracy
685                                          dec->sprite_brightness_change = BitstreamGetBits(bs, 1);                /* brightness_change */                                          dec->sprite_brightness_change = BitstreamGetBits(bs, 1);                // brightness_change
686                                          if (dec->sprite_enable != SPRITE_GMC)                                          if (dec->sprite_enable != SPRITE_GMC)
687                                          {                                          {
688                                                  low_latency_sprite_enable = BitstreamGetBits(bs, 1);            /* low_latency_sprite_enable */                                                  low_latency_sprite_enable = BitstreamGetBits(bs, 1);            // low_latency_sprite_enable
689                                          }                                          }
690                                  }                                  }
691    
692                                  if (vol_ver_id != 1 &&                                  if (vol_ver_id != 1 &&
693                                          dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR) {                                          dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR) {
694                                          BitstreamSkip(bs, 1);   /* sadct_disable */                                          BitstreamSkip(bs, 1);   // sadct_disable
695                                  }                                  }
696    
697                                  if (BitstreamGetBit(bs))        /* not_8_bit */                                  if (BitstreamGetBit(bs))        // not_8_bit
698                                  {                                  {
699                                          DPRINTF(XVID_DEBUG_HEADER, "not_8_bit==true (ignored)\n");                                          DPRINTF(DPRINTF_HEADER, "not_8_bit==true (ignored)");
700                                          dec->quant_bits = BitstreamGetBits(bs, 4);      /* quant_precision */                                          dec->quant_bits = BitstreamGetBits(bs, 4);      // quant_precision
701                                          BitstreamSkip(bs, 4);   /* bits_per_pixel */                                          BitstreamSkip(bs, 4);   // bits_per_pixel
702                                  } else {                                  } else {
703                                          dec->quant_bits = 5;                                          dec->quant_bits = 5;
704                                  }                                  }
705    
706                                  if (dec->shape == VIDOBJLAY_SHAPE_GRAYSCALE) {                                  if (dec->shape == VIDOBJLAY_SHAPE_GRAYSCALE) {
707                                          BitstreamSkip(bs, 1);   /* no_gray_quant_update */                                          BitstreamSkip(bs, 1);   // no_gray_quant_update
708                                          BitstreamSkip(bs, 1);   /* composition_method */                                          BitstreamSkip(bs, 1);   // composition_method
709                                          BitstreamSkip(bs, 1);   /* linear_composition */                                          BitstreamSkip(bs, 1);   // linear_composition
710                                  }                                  }
711    
712                                  dec->quant_type = BitstreamGetBit(bs);  /* quant_type */                                  dec->quant_type = BitstreamGetBit(bs);  // quant_type
713                                  DPRINTF(XVID_DEBUG_HEADER, "quant_type %i\n", dec->quant_type);                                  DPRINTF(DPRINTF_HEADER, "quant_type %i", dec->quant_type);
714    
715                                  if (dec->quant_type) {                                  if (dec->quant_type) {
716                                          if (BitstreamGetBit(bs))        /* load_intra_quant_mat */                                          if (BitstreamGetBit(bs))        // load_intra_quant_mat
717                                          {                                          {
718                                                  uint8_t matrix[64];                                                  uint8_t matrix[64];
719    
720                                                  DPRINTF(XVID_DEBUG_HEADER, "load_intra_quant_mat\n");                                                  DPRINTF(DPRINTF_HEADER, "load_intra_quant_mat");
721    
722                                                  bs_get_matrix(bs, matrix);                                                  bs_get_matrix(bs, matrix);
723                                                  set_intra_matrix(matrix);                                                  set_intra_matrix(matrix);
724                                          } else                                          } else
725                                                  set_intra_matrix(get_default_intra_matrix());                                                  set_intra_matrix(get_default_intra_matrix());
726    
727                                          if (BitstreamGetBit(bs))        /* load_inter_quant_mat */                                          if (BitstreamGetBit(bs))        // load_inter_quant_mat
728                                          {                                          {
729                                                  uint8_t matrix[64];                                                  uint8_t matrix[64];
730    
731                                                  DPRINTF(XVID_DEBUG_HEADER, "load_inter_quant_mat\n");                                                  DPRINTF(DPRINTF_HEADER, "load_inter_quant_mat");
732    
733                                                  bs_get_matrix(bs, matrix);                                                  bs_get_matrix(bs, matrix);
734                                                  set_inter_matrix(matrix);                                                  set_inter_matrix(matrix);
# Line 678  Line 736 
736                                                  set_inter_matrix(get_default_inter_matrix());                                                  set_inter_matrix(get_default_inter_matrix());
737    
738                                          if (dec->shape == VIDOBJLAY_SHAPE_GRAYSCALE) {                                          if (dec->shape == VIDOBJLAY_SHAPE_GRAYSCALE) {
739                                                  DPRINTF(XVID_DEBUG_ERROR, "greyscale matrix not supported\n");                                                  DPRINTF(DPRINTF_ERROR, "greyscale matrix not supported");
740                                                  return -1;                                                  return -1;
741                                          }                                          }
742    
# Line 686  Line 744 
744    
745    
746                                  if (vol_ver_id != 1) {                                  if (vol_ver_id != 1) {
747                                          dec->quarterpel = BitstreamGetBit(bs);  /* quarter_sample */                                          dec->quarterpel = BitstreamGetBit(bs);  // quarter_sample
748                                          DPRINTF(XVID_DEBUG_HEADER,"quarterpel %i\n", dec->quarterpel);                                          DPRINTF(DPRINTF_HEADER,"quarterpel %i", dec->quarterpel);
749                                  }                                  }
750                                  else                                  else
751                                          dec->quarterpel = 0;                                          dec->quarterpel = 0;
# Line 699  Line 757 
757                                          read_vol_complexity_estimation_header(bs, dec);                                          read_vol_complexity_estimation_header(bs, dec);
758                                  }                                  }
759    
760                                  BitstreamSkip(bs, 1);   /* resync_marker_disable */                                  BitstreamSkip(bs, 1);   // resync_marker_disable
761    
762                                  if (BitstreamGetBit(bs))        /* data_partitioned */                                  if (BitstreamGetBit(bs))        // data_partitioned
763                                  {                                  {
764                                          DPRINTF(XVID_DEBUG_ERROR, "data_partitioned not supported\n");                                          DPRINTF(DPRINTF_ERROR, "data_partitioned not supported");
765                                          BitstreamSkip(bs, 1);   /* reversible_vlc */                                          BitstreamSkip(bs, 1);   // reversible_vlc
766                                  }                                  }
767    
768                                  if (vol_ver_id != 1) {                                  if (vol_ver_id != 1) {
769                                          dec->newpred_enable = BitstreamGetBit(bs);                                          dec->newpred_enable = BitstreamGetBit(bs);
770                                          if (dec->newpred_enable)        /* newpred_enable */                                          if (dec->newpred_enable)        // newpred_enable
771                                          {                                          {
772                                                  DPRINTF(XVID_DEBUG_HEADER, "+ newpred_enable\n");                                                  DPRINTF(DPRINTF_HEADER, "+ newpred_enable");
773                                                  BitstreamSkip(bs, 2);   /* requested_upstream_message_type */                                                  BitstreamSkip(bs, 2);   // requested_upstream_message_type
774                                                  BitstreamSkip(bs, 1);   /* newpred_segment_type */                                                  BitstreamSkip(bs, 1);   // newpred_segment_type
775                                          }                                          }
776                                          dec->reduced_resolution_enable = BitstreamGetBit(bs);   /* reduced_resolution_vop_enable */                                          dec->reduced_resolution_enable = BitstreamGetBit(bs);   /* reduced_resolution_vop_enable */
777                                          DPRINTF(XVID_DEBUG_HEADER, "reduced_resolution_enable %i\n", dec->reduced_resolution_enable);                                          DPRINTF(DPRINTF_HEADER, "reduced_resolution_enable %i", dec->reduced_resolution_enable);
778                                  }                                  }
779                                  else                                  else
780                                  {                                  {
# Line 727  Line 785 
785                                  dec->scalability = BitstreamGetBit(bs); /* scalability */                                  dec->scalability = BitstreamGetBit(bs); /* scalability */
786                                  if (dec->scalability)                                  if (dec->scalability)
787                                  {                                  {
788                                          DPRINTF(XVID_DEBUG_ERROR, "scalability not supported\n");                                          DPRINTF(DPRINTF_ERROR, "scalability not supported");
789                                          BitstreamSkip(bs, 1);   /* hierarchy_type */                                          BitstreamSkip(bs, 1);   /* hierarchy_type */
790                                          BitstreamSkip(bs, 4);   /* ref_layer_id */                                          BitstreamSkip(bs, 4);   /* ref_layer_id */
791                                          BitstreamSkip(bs, 1);   /* ref_layer_sampling_direc */                                          BitstreamSkip(bs, 1);   /* ref_layer_sampling_direc */
# Line 746  Line 804 
804                                          }                                          }
805                                          return -1;                                          return -1;
806                                  }                                  }
807                          } else                          /* dec->shape == BINARY_ONLY */                          } else                          // dec->shape == BINARY_ONLY
808                          {                          {
809                                  if (vol_ver_id != 1) {                                  if (vol_ver_id != 1) {
810                                          dec->scalability = BitstreamGetBit(bs); /* scalability */                                          dec->scalability = BitstreamGetBit(bs); /* scalability */
811                                          if (dec->scalability)                                          if (dec->scalability)
812                                          {                                          {
813                                                  DPRINTF(XVID_DEBUG_ERROR, "scalability not supported\n");                                                  DPRINTF(DPRINTF_ERROR, "scalability not supported");
814                                                  BitstreamSkip(bs, 4);   /* ref_layer_id */                                                  BitstreamSkip(bs, 4);   /* ref_layer_id */
815                                                  BitstreamSkip(bs, 5);   /* hor_sampling_factor_n */                                                  BitstreamSkip(bs, 5);   /* hor_sampling_factor_n */
816                                                  BitstreamSkip(bs, 5);   /* hor_sampling_factor_m */                                                  BitstreamSkip(bs, 5);   /* hor_sampling_factor_m */
# Line 761  Line 819 
819                                                  return -1;                                                  return -1;
820                                          }                                          }
821                                  }                                  }
822                                  BitstreamSkip(bs, 1);   /* resync_marker_disable */                                  BitstreamSkip(bs, 1);   // resync_marker_disable
823    
824                          }                          }
825    
# Line 769  Line 827 
827    
828                  } else if (start_code == GRPOFVOP_START_CODE) {                  } else if (start_code == GRPOFVOP_START_CODE) {
829    
830                          DPRINTF(XVID_DEBUG_STARTCODE, "<group_of_vop>\n");                          DPRINTF(DPRINTF_STARTCODE, "<group_of_vop>");
831    
832                          BitstreamSkip(bs, 32);                          BitstreamSkip(bs, 32);
833                          {                          {
# Line 780  Line 838 
838                                  READ_MARKER();                                  READ_MARKER();
839                                  seconds = BitstreamGetBits(bs, 6);                                  seconds = BitstreamGetBits(bs, 6);
840    
841                                  DPRINTF(XVID_DEBUG_HEADER, "time %ih%im%is\n", hours,minutes,seconds);                                  DPRINTF(DPRINTF_HEADER, "time %ih%im%is", hours,minutes,seconds);
842                          }                          }
843                          BitstreamSkip(bs, 1);   /* closed_gov */                          BitstreamSkip(bs, 1);   // closed_gov
844                          BitstreamSkip(bs, 1);   /* broken_link */                          BitstreamSkip(bs, 1);   // broken_link
845    
846                  } else if (start_code == VOP_START_CODE) {                  } else if (start_code == VOP_START_CODE) {
847    
848                          DPRINTF(XVID_DEBUG_STARTCODE, "<vop>\n");                          DPRINTF(DPRINTF_STARTCODE, "<vop>");
849    
850                          BitstreamSkip(bs, 32);  /* vop_start_code */                          BitstreamSkip(bs, 32);  // vop_start_code
851    
852                          coding_type = BitstreamGetBits(bs, 2);  /* vop_coding_type */                          coding_type = BitstreamGetBits(bs, 2);  // vop_coding_type
853                          DPRINTF(XVID_DEBUG_HEADER, "coding_type %i\n", coding_type);                          DPRINTF(DPRINTF_HEADER, "coding_type %i", coding_type);
854    
855                          /*********************** for decode B-frame time ***********************/  // *************************** for decode B-frame time ***********************
856                          while (BitstreamGetBit(bs) != 0)        /* time_base */                          while (BitstreamGetBit(bs) != 0)        // time_base
857                                  time_incr++;                                  time_incr++;
858    
859                          READ_MARKER();                          READ_MARKER();
860    
861                          if (dec->time_inc_bits) {                          if (dec->time_inc_bits) {
862                                  time_increment = (BitstreamGetBits(bs, dec->time_inc_bits));    /* vop_time_increment */                                  time_increment = (BitstreamGetBits(bs, dec->time_inc_bits));    // vop_time_increment
863                          }                          }
864    
865                          DPRINTF(XVID_DEBUG_HEADER, "time_base %i\n", time_incr);                          DPRINTF(DPRINTF_HEADER, "time_base %i", time_incr);
866                          DPRINTF(XVID_DEBUG_HEADER, "time_increment %i\n", time_increment);                          DPRINTF(DPRINTF_HEADER, "time_increment %i", time_increment);
867    
868                          DPRINTF(XVID_DEBUG_TIMECODE, "%c %i:%i\n",                          DPRINTF(DPRINTF_TIMECODE, "%c %i:%i",
869                                  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',
870                                  time_incr, time_increment);                                  time_incr, time_increment);
871    
# Line 816  Line 874 
874                                  dec->time_base += time_incr;                                  dec->time_base += time_incr;
875                                  dec->time = time_increment;                                  dec->time = time_increment;
876    
877  #if 0  /*                                      dec->time_base * dec->time_inc_resolution +
                                         dec->time_base * dec->time_inc_resolution +  
878                                          time_increment;                                          time_increment;
879  #endif  */                              dec->time_pp = (uint32_t)
                                         dec->time_pp = (uint32_t)  
880                                                  (dec->time_inc_resolution + dec->time - dec->last_non_b_time)%dec->time_inc_resolution;                                                  (dec->time_inc_resolution + dec->time - dec->last_non_b_time)%dec->time_inc_resolution;
881                                  dec->last_non_b_time = dec->time;                                  dec->last_non_b_time = dec->time;
882                          } else {                          } else {
883                                  dec->time = time_increment;                                  dec->time = time_increment;
884  #if 0  /*
885                                          (dec->last_time_base +                                          (dec->last_time_base +
886                                           time_incr) * dec->time_inc_resolution + time_increment;                                           time_incr) * dec->time_inc_resolution + time_increment;
887  #endif  */
888                                  dec->time_bp = (uint32_t)                                  dec->time_bp = (uint32_t)
889                                          (dec->time_inc_resolution + dec->last_non_b_time - dec->time)%dec->time_inc_resolution;                                          (dec->time_inc_resolution + dec->last_non_b_time - dec->time)%dec->time_inc_resolution;
890                          }                          }
891                          DPRINTF(XVID_DEBUG_HEADER,"time_pp=%i\n", dec->time_pp);                          DPRINTF(DPRINTF_HEADER,"time_pp=%i", dec->time_pp);
892                          DPRINTF(XVID_DEBUG_HEADER,"time_bp=%i\n", dec->time_bp);                          DPRINTF(DPRINTF_HEADER,"time_bp=%i", dec->time_bp);
893    
894                          READ_MARKER();                          READ_MARKER();
895    
896                          if (!BitstreamGetBit(bs))       /* vop_coded */                          if (!BitstreamGetBit(bs))       // vop_coded
897                          {                          {
898                                  DPRINTF(XVID_DEBUG_HEADER, "vop_coded==false\n");                                  DPRINTF(DPRINTF_HEADER, "vop_coded==false");
899                                  return N_VOP;                                  return N_VOP;
900                          }                          }
901    
# Line 849  Line 905 
905                                  int vop_id_for_prediction;                                  int vop_id_for_prediction;
906    
907                                  vop_id = BitstreamGetBits(bs, MIN(dec->time_inc_bits + 3, 15));                                  vop_id = BitstreamGetBits(bs, MIN(dec->time_inc_bits + 3, 15));
908                                  DPRINTF(XVID_DEBUG_HEADER, "vop_id %i\n", vop_id);                                  DPRINTF(DPRINTF_HEADER, "vop_id %i", vop_id);
909                                  if (BitstreamGetBit(bs))        /* vop_id_for_prediction_indication */                                  if (BitstreamGetBit(bs))        /* vop_id_for_prediction_indication */
910                                  {                                  {
911                                          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));
912                                          DPRINTF(XVID_DEBUG_HEADER, "vop_id_for_prediction %i\n", vop_id_for_prediction);                                          DPRINTF(DPRINTF_HEADER, "vop_id_for_prediction %i", vop_id_for_prediction);
913                                  }                                  }
914                                  READ_MARKER();                                  READ_MARKER();
915                          }                          }
916    
917    
918    
919                          /* fix a little bug by MinChen <chenm002@163.com> */                          // fix a little bug by MinChen <chenm002@163.com>
920                          if ((dec->shape != VIDOBJLAY_SHAPE_BINARY_ONLY) &&                          if ((dec->shape != VIDOBJLAY_SHAPE_BINARY_ONLY) &&
921                                  ( (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) ) ) {
922                                  *rounding = BitstreamGetBit(bs);        /* rounding_type */                                  *rounding = BitstreamGetBit(bs);        // rounding_type
923                                  DPRINTF(XVID_DEBUG_HEADER, "rounding %i\n", *rounding);                                  DPRINTF(DPRINTF_HEADER, "rounding %i", *rounding);
924                          }                          }
925    
926                          if (dec->reduced_resolution_enable &&                          if (dec->reduced_resolution_enable &&
# Line 872  Line 928 
928                                  (coding_type == P_VOP || coding_type == I_VOP)) {                                  (coding_type == P_VOP || coding_type == I_VOP)) {
929    
930                                  *reduced_resolution = BitstreamGetBit(bs);                                  *reduced_resolution = BitstreamGetBit(bs);
931                                  DPRINTF(XVID_DEBUG_HEADER, "reduced_resolution %i\n", *reduced_resolution);                                  DPRINTF(DPRINTF_HEADER, "reduced_resolution %i", *reduced_resolution);
932                          }                          }
933                          else                          else
934                          {                          {
# Line 894  Line 950 
950                                          vert_mc_ref = BitstreamGetBits(bs, 13);                                          vert_mc_ref = BitstreamGetBits(bs, 13);
951                                          READ_MARKER();                                          READ_MARKER();
952    
953                                          DPRINTF(XVID_DEBUG_HEADER, "width %i\n", width);                                          DPRINTF(DPRINTF_HEADER, "width %i", width);
954                                          DPRINTF(XVID_DEBUG_HEADER, "height %i\n", height);                                          DPRINTF(DPRINTF_HEADER, "height %i", height);
955                                          DPRINTF(XVID_DEBUG_HEADER, "horiz_mc_ref %i\n", horiz_mc_ref);                                          DPRINTF(DPRINTF_HEADER, "horiz_mc_ref %i", horiz_mc_ref);
956                                          DPRINTF(XVID_DEBUG_HEADER, "vert_mc_ref %i\n", vert_mc_ref);                                          DPRINTF(DPRINTF_HEADER, "vert_mc_ref %i", vert_mc_ref);
957                                  }                                  }
958    
959                                  BitstreamSkip(bs, 1);   /* change_conv_ratio_disable */                                  BitstreamSkip(bs, 1);   // change_conv_ratio_disable
960                                  if (BitstreamGetBit(bs))        /* vop_constant_alpha */                                  if (BitstreamGetBit(bs))        // vop_constant_alpha
961                                  {                                  {
962                                          BitstreamSkip(bs, 8);   /* vop_constant_alpha_value */                                          BitstreamSkip(bs, 8);   // vop_constant_alpha_value
963                                  }                                  }
964                          }                          }
965    
# Line 914  Line 970 
970                                          read_vop_complexity_estimation_header(bs, dec, coding_type);                                          read_vop_complexity_estimation_header(bs, dec, coding_type);
971                                  }                                  }
972    
973                                  /* intra_dc_vlc_threshold */                                  // intra_dc_vlc_threshold
974                                  *intra_dc_threshold =                                  *intra_dc_threshold =
975                                          intra_dc_threshold_table[BitstreamGetBits(bs, 3)];                                          intra_dc_threshold_table[BitstreamGetBits(bs, 3)];
976    
# Line 923  Line 979 
979    
980                                  if (dec->interlacing) {                                  if (dec->interlacing) {
981                                          dec->top_field_first = BitstreamGetBit(bs);                                          dec->top_field_first = BitstreamGetBit(bs);
982                                          DPRINTF(XVID_DEBUG_HEADER, "interlace top_field_first %i\n", dec->top_field_first);                                          DPRINTF(DPRINTF_HEADER, "interlace top_field_first %i", dec->top_field_first);
983                                          dec->alternate_vertical_scan = BitstreamGetBit(bs);                                          dec->alternate_vertical_scan = BitstreamGetBit(bs);
984                                          DPRINTF(XVID_DEBUG_HEADER, "interlace alternate_vertical_scan %i\n", dec->alternate_vertical_scan);                                          DPRINTF(DPRINTF_HEADER, "interlace alternate_vertical_scan %i", dec->alternate_vertical_scan);
985    
986                                  }                                  }
987                          }                          }
# Line 959  Line 1015 
1015                                          gmc_warp->duv[i].x = x;                                          gmc_warp->duv[i].x = x;
1016                                          gmc_warp->duv[i].y = y;                                          gmc_warp->duv[i].y = y;
1017    
1018                                          DPRINTF(XVID_DEBUG_HEADER,"sprite_warping_point[%i] xy=(%i,%i)\n", i, x, y);                                          DPRINTF(DPRINTF_HEADER,"sprite_warping_point[%i] xy=(%i,%i)", i, x, y);
1019                                  }                                  }
1020    
1021                                  if (dec->sprite_brightness_change)                                  if (dec->sprite_brightness_change)
1022                                  {                                  {
1023                                          /* XXX: brightness_change_factor() */                                          // XXX: brightness_change_factor()
1024                                  }                                  }
1025                                  if (dec->sprite_enable == SPRITE_STATIC)                                  if (dec->sprite_enable == SPRITE_STATIC)
1026                                  {                                  {
1027                                          /* XXX: todo */                                          // XXX: todo
1028                                  }                                  }
1029    
1030                          }                          }
1031    
1032                          if ((*quant = BitstreamGetBits(bs, dec->quant_bits)) < 1)       /* vop_quant */                          if ((*quant = BitstreamGetBits(bs, dec->quant_bits)) < 1)       // vop_quant
1033                                  *quant = 1;                                  *quant = 1;
1034                          DPRINTF(XVID_DEBUG_HEADER, "quant %i\n", *quant);                          DPRINTF(DPRINTF_HEADER, "quant %i", *quant);
1035    
1036                          if (coding_type != I_VOP) {                          if (coding_type != I_VOP) {
1037                                  *fcode_forward = BitstreamGetBits(bs, 3);       /* fcode_forward */                                  *fcode_forward = BitstreamGetBits(bs, 3);       // fcode_forward
1038                                  DPRINTF(XVID_DEBUG_HEADER, "fcode_forward %i\n", *fcode_forward);                                  DPRINTF(DPRINTF_HEADER, "fcode_forward %i", *fcode_forward);
1039                          }                          }
1040    
1041                          if (coding_type == B_VOP) {                          if (coding_type == B_VOP) {
1042                                  *fcode_backward = BitstreamGetBits(bs, 3);      /* fcode_backward */                                  *fcode_backward = BitstreamGetBits(bs, 3);      // fcode_backward
1043                                  DPRINTF(XVID_DEBUG_HEADER, "fcode_backward %i\n", *fcode_backward);                                  DPRINTF(DPRINTF_HEADER, "fcode_backward %i", *fcode_backward);
1044                          }                          }
1045                          if (!dec->scalability) {                          if (!dec->scalability) {
1046                                  if ((dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR) &&                                  if ((dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR) &&
1047                                          (coding_type != I_VOP)) {                                          (coding_type != I_VOP)) {
1048                                          BitstreamSkip(bs, 1);   /* vop_shape_coding_type */                                          BitstreamSkip(bs, 1);   // vop_shape_coding_type
1049                                  }                                  }
1050                          }                          }
1051                          return coding_type;                          return coding_type;
# Line 999  Line 1055 
1055                      int i, version, build;                      int i, version, build;
1056                          char packed;                          char packed;
1057    
1058                          BitstreamSkip(bs, 32);  /* user_data_start_code */                          BitstreamSkip(bs, 32);  // user_data_start_code
1059    
1060                          tmp[0] = BitstreamShowBits(bs, 8);                          tmp[0] = BitstreamShowBits(bs, 8);
1061    
# Line 1012  Line 1068 
1068                                  BitstreamSkip(bs, 8);                                  BitstreamSkip(bs, 8);
1069                          }                          }
1070    
1071                          DPRINTF(XVID_DEBUG_STARTCODE, "<user_data>: %s\n", tmp);                          DPRINTF(DPRINTF_STARTCODE, "<user_data>: %s\n", tmp);
1072    
1073                          /* read xvid bitstream version */                          /* read xvid bitstream version */
1074                          if(strncmp(tmp, "XviD", 4) == 0) {                          if(strncmp(tmp, "XviD", 4) == 0) {
1075                                  sscanf(tmp, "XviD%d", &dec->bs_version);                                  sscanf(tmp, "XviD%d", &dec->bs_version);
1076                                  DPRINTF(XVID_DEBUG_HEADER, "xvid bitstream version=%i", dec->bs_version);                                  DPRINTF(DPRINTF_HEADER, "xvid bitstream version=%i", dec->bs_version);
1077                          }                          }
1078    
1079                      /* divx detection */                      /* divx detection */
# Line 1028  Line 1084 
1084                          if (i >= 2)                          if (i >= 2)
1085                          {                          {
1086                                  dec->packed_mode = (i == 3 && packed == 'p');                                  dec->packed_mode = (i == 3 && packed == 'p');
1087                                  DPRINTF(XVID_DEBUG_HEADER, "divx version=%i, build=%i packed=%i\n",                                  DPRINTF(DPRINTF_HEADER, "divx version=%i, build=%i packed=%i",
1088                                                  version, build, dec->packed_mode);                                                  version, build, dec->packed_mode);
1089                          }                          }
1090    
1091                  } else                                  /* start_code == ? */                  } else                                  // start_code == ?
1092                  {                  {
1093                          if (BitstreamShowBits(bs, 24) == 0x000001) {                          if (BitstreamShowBits(bs, 24) == 0x000001) {
1094                                  DPRINTF(XVID_DEBUG_STARTCODE, "<unknown: %x>\n", BitstreamShowBits(bs, 32));                                  DPRINTF(DPRINTF_STARTCODE, "<unknown: %x>", BitstreamShowBits(bs, 32));
1095                          }                          }
1096                          BitstreamSkip(bs, 8);                          BitstreamSkip(bs, 8);
1097                  }                  }
1098          }          }
1099          while ((BitstreamPos(bs) >> 3) < bs->length);          while ((BitstreamPos(bs) >> 3) < bs->length);
1100    
1101  #if 0          //DPRINTF("*** WARNING: no vop_start_code found");
         DPRINTF("*** WARNING: no vop_start_code found");  
 #endif  
1102          return -1;                                      /* ignore it */          return -1;                                      /* ignore it */
1103  }  }
1104    
# Line 1075  Line 1129 
1129  */  */
1130  void  void
1131  BitstreamWriteVolHeader(Bitstream * const bs,  BitstreamWriteVolHeader(Bitstream * const bs,
1132                                                  const MBParam * pParam)                                                  const MBParam * pParam,
1133                                                    const FRAMEINFO * const frame)
1134  {  {
1135          static const unsigned int vo_id = 0;          static const unsigned int vo_id = 0;
1136          static const unsigned int vol_id = 0;          static const unsigned int vol_id = 0;
1137          int vol_ver_id = 1;          int vol_ver_id = 1;
1138          int vol_type_ind = VIDOBJLAY_TYPE_SIMPLE;          int profile = 0x03;     /* simple profile/level 3 */
1139    
1140          if ( (pParam->vol_flags & XVID_VOL_QUARTERPEL) ||          if ( pParam->m_quarterpel ||  (frame->global_flags & XVID_GMC) ||
1141           (pParam->vol_flags & XVID_VOL_GMC) ||                   (pParam->global & XVID_GLOBAL_REDUCED))
                  (pParam->vol_flags & XVID_VOL_REDUCED_ENABLE))  
1142                  vol_ver_id = 2;                  vol_ver_id = 2;
1143    
1144      if ((pParam->vol_flags & XVID_VOL_REDUCED_ENABLE)) {          if ((pParam->global & XVID_GLOBAL_REDUCED))
1145          vol_type_ind = VIDOBJLAY_TYPE_ART_SIMPLE;                  profile = 0x93; /* advanced realtime simple profile/level 3 */
     }  
1146    
1147          if ((pParam->vol_flags & XVID_VOL_QUARTERPEL) ||          if (pParam->m_quarterpel ||  (frame->global_flags & XVID_GMC))
1148          (pParam->vol_flags & XVID_VOL_GMC)) {                  profile = 0xf3; /* advanced simple profile/level 2 */
         vol_type_ind = VIDOBJLAY_TYPE_ASP;  
     }  
1149    
1150          /* visual_object_sequence_start_code */          // visual_object_sequence_start_code
1151  #if 0  //      BitstreamPad(bs);
1152          BitstreamPad(bs);  /* no padding here, anymore. You have to make sure that you are
1153  #endif     byte aligned, and that always 1-8 padding bits have been written */
   
         /*  
          * no padding here, anymore. You have to make sure that you are  
          * byte aligned, and that always 1-8 padding bits have been written  
          */  
1154    
     if (pParam->profile) {  
1155              BitstreamPutBits(bs, VISOBJSEQ_START_CODE, 32);              BitstreamPutBits(bs, VISOBJSEQ_START_CODE, 32);
1156              BitstreamPutBits(bs, pParam->profile, 8);          BitstreamPutBits(bs, profile, 8);
     }  
1157    
1158          /* visual_object_start_code */          // visual_object_start_code
1159          BitstreamPad(bs);          BitstreamPad(bs);
1160          BitstreamPutBits(bs, VISOBJ_START_CODE, 32);          BitstreamPutBits(bs, VISOBJ_START_CODE, 32);
1161          BitstreamPutBits(bs, 0, 1);             /* is_visual_object_identifier */          BitstreamPutBits(bs, 0, 1);             // is_visual_object_identifier
1162            BitstreamPutBits(bs, VISOBJ_TYPE_VIDEO, 4);             // visual_object_type
         /* Video type */  
         BitstreamPutBits(bs, VISOBJ_TYPE_VIDEO, 4);             /* visual_object_type */  
         BitstreamPutBit(bs, 0); /* video_signal_type */  
1163    
1164          /* video object_start_code & vo_id */          // video object_start_code & vo_id
1165          BitstreamPadAlways(bs); /* next_start_code() */          BitstreamPad(bs);
1166          BitstreamPutBits(bs, VIDOBJ_START_CODE|(vo_id&0x5), 32);          BitstreamPutBits(bs, VIDOBJ_START_CODE|(vo_id&0x5), 32);
1167    
1168          /* video_object_layer_start_code & vol_id */          // video_object_layer_start_code & vol_id
1169          BitstreamPad(bs);          BitstreamPad(bs);
1170          BitstreamPutBits(bs, VIDOBJLAY_START_CODE|(vol_id&0x4), 32);          BitstreamPutBits(bs, VIDOBJLAY_START_CODE|(vol_id&0x4), 32);
1171    
1172          BitstreamPutBit(bs, 0);         /* random_accessible_vol */          BitstreamPutBit(bs, 0);         // random_accessible_vol
1173          BitstreamPutBits(bs, vol_type_ind, 8);  /* video_object_type_indication */          BitstreamPutBits(bs, 0, 8);     // video_object_type_indication
1174    
1175          if (vol_ver_id == 1) {          if (vol_ver_id == 1)
1176                  BitstreamPutBit(bs, 0);                         /* is_object_layer_identified (0=not given) */          {
1177          } else {                  BitstreamPutBit(bs, 0);                         // is_object_layer_identified (0=not given)
                 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) */  
1178          }          }
1179            else
1180          /* Aspect ratio */          {
1181          BitstreamPutBits(bs, pParam->par, 4); /* aspect_ratio_info (1=1:1) */                  BitstreamPutBit(bs, 1);         // is_object_layer_identified
1182          if(pParam->par == XVID_PAR_EXT) {                  BitstreamPutBits(bs, vol_ver_id, 4);    // vol_ver_id == 2
1183                  BitstreamPutBits(bs, pParam->par_width, 8);                  BitstreamPutBits(bs, 4, 3); // vol_ver_priority (1==lowest, 7==highest) ??
                 BitstreamPutBits(bs, pParam->par_height, 8);  
1184          }          }
1185    
1186          BitstreamPutBit(bs, 1); /* vol_control_parameters */          BitstreamPutBits(bs, 1, 4);     // aspect_ratio_info (1=1:1)
1187          BitstreamPutBits(bs, 1, 2);     /* chroma_format 1="4:2:0" */  
1188            BitstreamPutBit(bs, 1); // vol_control_parameters
1189            BitstreamPutBits(bs, 1, 2);     // chroma_format 1="4:2:0"
1190    
1191          if (pParam->max_bframes > 0) {          if (pParam->max_bframes > 0) {
1192                  BitstreamPutBit(bs, 0); /* low_delay */                  BitstreamPutBit(bs, 0); // low_delay
1193          } else          } else
1194          {          {
1195                  BitstreamPutBit(bs, 1); /* low_delay */                  BitstreamPutBit(bs, 1); // low_delay
1196          }          }
1197          BitstreamPutBit(bs, 0); /* vbv_parameters (0=not given) */          BitstreamPutBit(bs, 0); // vbv_parameters (0=not given)
1198    
1199          BitstreamPutBits(bs, 0, 2);     /* video_object_layer_shape (0=rectangular) */          BitstreamPutBits(bs, 0, 2);     // video_object_layer_shape (0=rectangular)
1200    
1201          WRITE_MARKER();          WRITE_MARKER();
1202    
1203          /*          /* time_inc_resolution; ignored by current decore versions
1204           * time_inc_resolution; ignored by current decore versions             eg. 2fps     res=2       inc=1
1205           * eg. 2fps     res=2       inc=1             25fps        res=25      inc=1
1206           *     25fps    res=25      inc=1             29.97fps res=30000   inc=1001
          *     29.97fps res=30000   inc=1001  
1207           */           */
1208          BitstreamPutBits(bs, pParam->fbase, 16);          BitstreamPutBits(bs, pParam->fbase, 16);
1209    
1210          WRITE_MARKER();          WRITE_MARKER();
1211    
1212      if (pParam->fincr>0) {          BitstreamPutBit(bs, 1);         // fixed_vop_rate = 1
1213              BitstreamPutBit(bs, 1);             /* fixed_vop_rate = 1 */          BitstreamPutBits(bs, pParam->fincr, log2bin(pParam->fbase));    // fixed_vop_time_increment
             BitstreamPutBits(bs, pParam->fincr, log2bin(pParam->fbase-1));      /* fixed_vop_time_increment */  
     }else{  
         BitstreamPutBit(bs, 0);         /* fixed_vop_rate = 0 */  
     }  
1214    
1215          WRITE_MARKER();          WRITE_MARKER();
1216          BitstreamPutBits(bs, pParam->width, 13);        /* width */          BitstreamPutBits(bs, pParam->width, 13);        // width
1217          WRITE_MARKER();          WRITE_MARKER();
1218          BitstreamPutBits(bs, pParam->height, 13);       /* height */          BitstreamPutBits(bs, pParam->height, 13);       // height
1219          WRITE_MARKER();          WRITE_MARKER();
1220    
1221          BitstreamPutBit(bs, pParam->vol_flags & XVID_VOL_INTERLACING);  /* interlace */          BitstreamPutBit(bs, frame->global_flags & XVID_INTERLACING);    // interlace
1222          BitstreamPutBit(bs, 1);         /* obmc_disable (overlapped block motion compensation) */          BitstreamPutBit(bs, 1);         // obmc_disable (overlapped block motion compensation)
1223    
1224          if (vol_ver_id != 1)          if (vol_ver_id != 1)
1225          {       if ((pParam->vol_flags & XVID_VOL_GMC))          {       if (frame->global_flags & XVID_GMC)
1226                  {       BitstreamPutBits(bs, 2, 2);             /* sprite_enable=='GMC' */                  {       BitstreamPutBits(bs, 2, 2);             // sprite_enable=='GMC'
1227                          BitstreamPutBits(bs, 3, 6);             /* no_of_sprite_warping_points */                          BitstreamPutBits(bs, 2, 6);             // no_of_sprite_warping_points
1228                          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
1229                          BitstreamPutBit(bs, 0);                 /* sprite_brightness_change (not supported) */                          BitstreamPutBit(bs, 0);                 // sprite_brightness_change (not supported)
1230    
1231                          /*  /* currently we use no_of_sprite_warping_points==2, sprite_warping_accuracy==3
1232                           * currently we use no_of_sprite_warping_points==2, sprite_warping_accuracy==3     for DivX5 compatability */
                          * for DivX5 compatability  
                          */  
1233    
1234                  } else                  } else
1235                          BitstreamPutBits(bs, 0, 2);             /* sprite_enable==off */                          BitstreamPutBits(bs, 0, 2);             // sprite_enable==off
1236          }          }
1237          else          else
1238                  BitstreamPutBit(bs, 0);         /* sprite_enable==off */                  BitstreamPutBit(bs, 0);         // sprite_enable==off
1239    
1240          BitstreamPutBit(bs, 0);         /* not_8_bit */          BitstreamPutBit(bs, 0);         // not_8_bit
1241    
1242          /* quant_type   0=h.263  1=mpeg4(quantizer tables) */          // quant_type   0=h.263  1=mpeg4(quantizer tables)
1243          BitstreamPutBit(bs, pParam->vol_flags & XVID_VOL_MPEGQUANT);          BitstreamPutBit(bs, pParam->m_quant_type);
1244    
1245          if ((pParam->vol_flags & XVID_VOL_MPEGQUANT)) {          if (pParam->m_quant_type) {
1246                  BitstreamPutBit(bs, get_intra_matrix_status()); /* load_intra_quant_mat */                  BitstreamPutBit(bs, get_intra_matrix_status()); // load_intra_quant_mat
1247                  if (get_intra_matrix_status()) {                  if (get_intra_matrix_status()) {
1248                          bs_put_matrix(bs, get_intra_matrix());                          bs_put_matrix(bs, get_intra_matrix());
1249                  }                  }
1250    
1251                  BitstreamPutBit(bs, get_inter_matrix_status()); /* load_inter_quant_mat */                  BitstreamPutBit(bs, get_inter_matrix_status()); // load_inter_quant_mat
1252                  if (get_inter_matrix_status()) {                  if (get_inter_matrix_status()) {
1253                          bs_put_matrix(bs, get_inter_matrix());                          bs_put_matrix(bs, get_inter_matrix());
1254                  }                  }
# Line 1224  Line 1256 
1256          }          }
1257    
1258          if (vol_ver_id != 1) {          if (vol_ver_id != 1) {
1259                  if ((pParam->vol_flags & XVID_VOL_QUARTERPEL))                  if (pParam->m_quarterpel)
1260                          BitstreamPutBit(bs, 1);         /* quarterpel  */                          BitstreamPutBit(bs, 1);         //  quarterpel
1261                  else                  else
1262                          BitstreamPutBit(bs, 0);         /* no quarterpel */                          BitstreamPutBit(bs, 0);         // no quarterpel
1263          }          }
1264    
1265          BitstreamPutBit(bs, 1);         /* complexity_estimation_disable */          BitstreamPutBit(bs, 1);         // complexity_estimation_disable
1266          BitstreamPutBit(bs, 1);         /* resync_marker_disable */          BitstreamPutBit(bs, 1);         // resync_marker_disable
1267          BitstreamPutBit(bs, 0);         /* data_partitioned */          BitstreamPutBit(bs, 0);         // data_partitioned
1268    
1269          if (vol_ver_id != 1) {          if (vol_ver_id != 1)
1270                  BitstreamPutBit(bs, 0);         /* newpred_enable */          {
1271                  BitstreamPutBit(bs, (pParam->vol_flags & XVID_VOL_REDUCED_ENABLE)?1:0);                  BitstreamPutBit(bs, 0);         // newpred_enable
1272    
1273                    BitstreamPutBit(bs, (pParam->global & XVID_GLOBAL_REDUCED)?1:0);
1274                                                                          /* reduced_resolution_vop_enabled */                                                                          /* reduced_resolution_vop_enabled */
1275          }          }
1276    
1277          BitstreamPutBit(bs, 0);         /* scalability */          BitstreamPutBit(bs, 0);         // scalability
   
         BitstreamPadAlways(bs); /* next_start_code(); */  
1278    
1279          /* fake divx5 id, to ensure compatibility with divx5 decoder */          /* fake divx5 id, to ensure compatibility with divx5 decoder */
1280  #define DIVX5_ID "DivX000b000p"  #define DIVX5_ID "DivX501b481p"
1281          if (pParam->max_bframes > 0 && (pParam->global_flags & XVID_GLOBAL_PACKED)) {          if (pParam->max_bframes > 0 && (pParam->global & XVID_GLOBAL_PACKED)) {
1282                  BitstreamWriteUserData(bs, DIVX5_ID, strlen(DIVX5_ID));                  BitstreamWriteUserData(bs, DIVX5_ID, strlen(DIVX5_ID));
1283          }          }
1284    
# Line 1268  Line 1300 
1300  {  {
1301          uint32_t i;          uint32_t i;
1302    
1303  #if 0  //      BitstreamPad(bs);
1304          BitstreamPad(bs);  /* no padding here, anymore. You have to make sure that you are
1305  #endif     byte aligned, and that always 1-8 padding bits have been written */
   
         /*  
          * no padding here, anymore. You have to make sure that you are  
          * byte aligned, and that always 1-8 padding bits have been written  
          */  
1306    
1307          BitstreamPutBits(bs, VOP_START_CODE, 32);          BitstreamPutBits(bs, VOP_START_CODE, 32);
1308    
1309          BitstreamPutBits(bs, frame->coding_type, 2);          BitstreamPutBits(bs, frame->coding_type, 2);
1310  #if 0          DPRINTF(DPRINTF_HEADER, "coding_type = %i", frame->coding_type);
         DPRINTF(XVID_DEBUG_HEADER, "coding_type = %i\n", frame->coding_type);  
 #endif  
1311    
1312          for (i = 0; i < frame->seconds; i++) {          for (i = 0; i < frame->seconds; i++) {
1313                  BitstreamPutBit(bs, 1);                  BitstreamPutBit(bs, 1);
# Line 1291  Line 1316 
1316    
1317          WRITE_MARKER();          WRITE_MARKER();
1318    
1319          /* time_increment: value=nth_of_sec, nbits = log2(resolution) */          // time_increment: value=nth_of_sec, nbits = log2(resolution)
1320    
1321          BitstreamPutBits(bs, frame->ticks, log2bin(pParam->fbase-1));          BitstreamPutBits(bs, frame->ticks, log2bin(pParam->fbase));
1322  #if 0          /*DPRINTF("[%i:%i] %c", frame->seconds, frame->ticks,
1323          DPRINTF("[%i:%i] %c",                          frame->coding_type == I_VOP ? 'I' : frame->coding_type ==
1324                          frame->seconds, frame->ticks,                          P_VOP ? 'P' : 'B');*/
                         frame->coding_type == I_VOP ? 'I' :  
                         frame->coding_type == P_VOP ? 'P' :  
                         frame->coding_type == S_VOP ? 'S' :     'B');  
 #endif  
1325    
1326          WRITE_MARKER();          WRITE_MARKER();
1327    
1328          if (!vop_coded) {          if (!vop_coded) {
1329                  BitstreamPutBits(bs, 0, 1);                  BitstreamPutBits(bs, 0, 1);
 #if 0  
                 BitstreamPadAlways(bs); /*  next_start_code() */  
 #endif  
                 /* NB: It's up to the function caller to write the next_start_code().  
                  * At the moment encoder.c respects that requisite because a VOP  
                  * always ends with a next_start_code either if it's coded or not  
                  * and encoder.c terminates a frame with a next_start_code in whatever  
                  * case */  
1330                  return;                  return;
1331          }          }
1332    
1333          BitstreamPutBits(bs, 1, 1);     /* vop_coded */          BitstreamPutBits(bs, 1, 1);     // vop_coded
1334    
1335          if ( (frame->coding_type == P_VOP) || (frame->coding_type == S_VOP) )          if ( (frame->coding_type == P_VOP) || (frame->coding_type == S_VOP) )
1336                  BitstreamPutBits(bs, frame->rounding_type, 1);                  BitstreamPutBits(bs, frame->rounding_type, 1);
1337    
1338          if ((frame->vol_flags & XVID_VOL_REDUCED_ENABLE))          if ((pParam->global & XVID_GLOBAL_REDUCED))
1339                  BitstreamPutBit(bs, (frame->vop_flags & XVID_VOP_REDUCED)?1:0);                  BitstreamPutBit(bs, (frame->global_flags & XVID_REDUCED)?1:0);
1340    
1341          BitstreamPutBits(bs, 0, 3);     /* intra_dc_vlc_threshold */          BitstreamPutBits(bs, 0, 3);     // intra_dc_vlc_threshold
1342    
1343          if ((frame->vol_flags & XVID_VOL_INTERLACING)) {          if (frame->global_flags & XVID_INTERLACING) {
1344                  BitstreamPutBit(bs, (frame->vop_flags & XVID_VOP_TOPFIELDFIRST));                  BitstreamPutBit(bs, (frame->global_flags & XVID_TOPFIELDFIRST));
1345                  BitstreamPutBit(bs, (frame->vop_flags & XVID_VOP_ALTERNATESCAN));                  BitstreamPutBit(bs, (frame->global_flags & XVID_ALTERNATESCAN));
1346          }          }
1347    
1348          if (frame->coding_type == S_VOP) {          if (frame->coding_type == S_VOP) {
1349                  if (1)  {               /* no_of_sprite_warping_points>=1 (we use 2!) */                  if (1)  {               // no_of_sprite_warping_points>=1 (we use 2!)
1350                          int k;                          int k;
1351                          for (k=0;k<3;k++)                          for (k=0;k<2;k++)
1352                          {                          {
1353                                  bs_put_spritetrajectory(bs, frame->warp.duv[k].x ); /* du[k]  */                                  bs_put_spritetrajectory(bs, frame->warp.duv[k].x ); // du[k]
1354                                  WRITE_MARKER();                                  WRITE_MARKER();
1355    
1356                                  bs_put_spritetrajectory(bs, frame->warp.duv[k].y ); /* dv[k]  */                                  bs_put_spritetrajectory(bs, frame->warp.duv[k].y ); // dv[k]
1357                                  WRITE_MARKER();                                  WRITE_MARKER();
1358    
1359                          if ((frame->vol_flags & XVID_VOL_QUARTERPEL))                          if (pParam->m_quarterpel)
1360                          {                          {
1361                                  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);                                  DPRINTF(DPRINTF_HEADER,"sprite_warping_point[%i] xy=(%i,%i) *QPEL*", k, frame->warp.duv[k].x/2, frame->warp.duv[k].y/2);
1362                          }                          }
1363                          else                          else
1364                          {                          {
1365                                  DPRINTF(XVID_DEBUG_HEADER,"sprite_warping_point[%i] xy=(%i,%i)\n", k, frame->warp.duv[k].x, frame->warp.duv[k].y);                                  DPRINTF(DPRINTF_HEADER,"sprite_warping_point[%i] xy=(%i,%i)", k, frame->warp.duv[k].x, frame->warp.duv[k].y);
1366                          }                          }
1367                          }                          }
1368                  }                  }
1369          }          }
1370    
1371    
1372  #if 0          DPRINTF(DPRINTF_HEADER, "quant = %i", frame->quant);
         DPRINTF(XVID_DEBUG_HEADER, "quant = %i\n", frame->quant);  
 #endif  
1373    
1374          BitstreamPutBits(bs, frame->quant, 5);  /* quantizer */          BitstreamPutBits(bs, frame->quant, 5);  // quantizer
1375    
1376          if (frame->coding_type != I_VOP)          if (frame->coding_type != I_VOP)
1377                  BitstreamPutBits(bs, frame->fcode, 3);  /* forward_fixed_code */                  BitstreamPutBits(bs, frame->fcode, 3);  // forward_fixed_code
1378    
1379          if (frame->coding_type == B_VOP)          if (frame->coding_type == B_VOP)
1380                  BitstreamPutBits(bs, frame->bcode, 3);  /* backward_fixed_code */                  BitstreamPutBits(bs, frame->bcode, 3);  // backward_fixed_code
1381    
1382  }  }
1383    

Legend:
Removed from v.1.39.2.17  
changed lines
  Added in v.1.40

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