[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.5, Thu Mar 28 12:26:44 2002 UTC revision 1.25, Fri Jul 19 13:34:32 2002 UTC
# Line 41  Line 41 
41    *                                                                                                                                                        *    *                                                                                                                                                        *
42    *  Revision history:                                                         *    *  Revision history:                                                         *
43    *                                                                            *    *                                                                            *
44    *  26.03.2002 interlacing support    *  11.07.2002 add VOP width & height return to dec when dec->width           *
45      *             or dec->height is 0  (for use in examples/ex1.c)               *
46      *             MinChen <chenm001@163.com>                                     *
47      *  22.05.2002 bs_put_matrix fix                                              *
48      *  20.05.2002 added BitstreamWriteUserData                                   *
49      *  19.06.2002  Fix a little bug in use custom quant matrix                   *
50      *              MinChen <chenm001@163.com>                                    *
51      *  08.05.2002  add low_delay support for B_VOP decode                        *
52      *              MinChen <chenm001@163.com>                                    *
53      *  06.05.2002 low_delay                                                      *
54      *  06.05.2002 fixed fincr/fbase error                                        *
55      *  01.05.2002 added BVOP support to BitstreamWriteVopHeader                  *
56      *  15.04.2002 rewrite log2bin use asm386  By MinChen <chenm001@163.com>      *
57      *  26.03.2002 interlacing support                                            *
58    *  03.03.2002 qmatrix writing                                                                                            *    *  03.03.2002 qmatrix writing                                                                                            *
59    *  03.03.2002 merged BITREADER and BITWRITER                                                             *    *  03.03.2002 merged BITREADER and BITWRITER                                                             *
60    *      30.02.2002     intra_dc_threshold support                                                                         *    *      30.02.2002     intra_dc_threshold support                                                                         *
61    *      04.12.2001     support for additional headers                                                             *    *      04.12.2001     support for additional headers                                                             *
62    *      16.12.2001     inital version                                                     *    *      16.12.2001     inital version                                                     *
63    *                                                                                                                                                        *    *
64    ******************************************************************************/    ******************************************************************************/
65    
66    
# Line 55  Line 68 
68  #include "zigzag.h"  #include "zigzag.h"
69  #include "../quant/quant_matrix.h"  #include "../quant/quant_matrix.h"
70    
71  static int __inline log2bin(int value)  
72    static uint32_t __inline
73    log2bin(uint32_t value)
74  {  {
75    /* Changed by Chenm001 */
76    #ifndef WIN32
77          int n = 0;          int n = 0;
78          while (value)  
79          {          while (value) {
80                  value >>= 1;                  value >>= 1;
81                  n++;                  n++;
82          }          }
83          return n;          return n;
84    #else
85            __asm {
86                    bsr eax, value
87                    inc eax
88            }
89    #endif
90  }  }
91    
92    
93  static const uint32_t intra_dc_threshold_table[] =  static const uint32_t intra_dc_threshold_table[] = {
 {  
94          32,     /* never use */          32,     /* never use */
95          13,          13,
96          15,          15,
# Line 80  Line 102 
102  };  };
103    
104    
105  void bs_get_matrix(Bitstream * bs, uint8_t * matrix)  void
106    bs_get_matrix(Bitstream * bs,
107                              uint8_t * matrix)
108  {  {
109          int i = 0;          int i = 0;
110      int last, value = 0;      int last, value = 0;
111    
112      do          do {
         {  
113                  last = value;                  last = value;
114          value = BitstreamGetBits(bs, 8);          value = BitstreamGetBits(bs, 8);
115          matrix[ scan_tables[0][i++] ]  = value;          matrix[ scan_tables[0][i++] ]  = value;
116      }      }
117      while (value != 0 && i < 64);      while (value != 0 && i < 64);
118            i--;    // fix little bug at coeff not full
119    
120          while (i < 64)          while (i < 64) {
         {  
121                  matrix[ scan_tables[0][i++] ]  = last;                  matrix[ scan_tables[0][i++] ]  = last;
122          }          }
123  }  }
124    
125    
126    
127    // for PVOP addbits == fcode - 1
128    // for BVOP addbits == max(fcode,bcode) - 1
129    // returns mbpos
130    int
131    read_video_packet_header(Bitstream *bs, const int addbits, int * quant)
132    {
133            int nbits;
134            int mbnum;
135            int hec;
136    
137            nbits = NUMBITS_VP_RESYNC_MARKER + addbits;
138    
139            BitstreamSkip(bs, BitstreamNumBitsToByteAlign(bs));
140            BitstreamSkip(bs, nbits);
141    
142            DPRINTF(DPRINTF_STARTCODE, "<video_packet_header>");
143    
144            // if (dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR) {
145                    // hec
146                    // vop_width
147                    // marker_bit
148                    // vop_height
149                    // marker_bit
150    
151            //}
152    
153            mbnum = BitstreamGetBits(bs, 9);
154            DPRINTF(DPRINTF_HEADER, "mbnum %i", mbnum);
155    
156            // if (dec->shape != VIDOBJLAY_SHAPE_BINARYONLY)
157            *quant = BitstreamGetBits(bs, 5);
158            DPRINTF(DPRINTF_HEADER, "quant %i", *quant);
159    
160            // if (dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR)
161            hec = BitstreamGetBit(bs);
162            DPRINTF(DPRINTF_HEADER, "header_extension_code %i", hec);
163            // if (hec)
164            //   .. decoder hec-header ...
165    
166            return mbnum;
167    }
168    
169    
170    
171  /*  /*
172  decode headers  decode headers
173  returns coding_type, or -1 if error  returns coding_type, or -1 if error
174  */  */
175    
176  int BitstreamReadHeaders(Bitstream * bs, DECODER * dec, uint32_t * rounding, uint32_t * quant, uint32_t * fcode, uint32_t * intra_dc_threshold)  #define VIDOBJ_START_CODE_MASK          0x0000001f
177    #define VIDOBJLAY_START_CODE_MASK       0x0000000f
178    
179    int
180    BitstreamReadHeaders(Bitstream * bs,
181                                             DECODER * dec,
182                                             uint32_t * rounding,
183                                             uint32_t * quant,
184                                             uint32_t * fcode_forward,
185                                             uint32_t * fcode_backward,
186                                             uint32_t * intra_dc_threshold)
187  {  {
188          uint32_t vol_ver_id;          uint32_t vol_ver_id;
189          uint32_t time_inc_resolution;          static uint32_t time_increment_resolution;
190          uint32_t coding_type;          uint32_t coding_type;
191          uint32_t start_code;          uint32_t start_code;
192            uint32_t time_incr = 0;
193            int32_t time_increment;
194    
195          do          do {
         {  
196                  BitstreamByteAlign(bs);                  BitstreamByteAlign(bs);
197                  start_code = BitstreamShowBits(bs, 32);                  start_code = BitstreamShowBits(bs, 32);
198    
199                  if (start_code == VISOBJSEQ_START_CODE)                  if (start_code == VISOBJSEQ_START_CODE) {
200                  {  
201                          // DEBUG("visual_object_sequence");                          int profile;
202    
203                            DPRINTF(DPRINTF_STARTCODE, "<visual_object_sequence>");
204    
205                          BitstreamSkip(bs, 32);                          // visual_object_sequence_start_code                          BitstreamSkip(bs, 32);                          // visual_object_sequence_start_code
206                          BitstreamSkip(bs, 8);                                   // profile_and_level_indication                          profile = BitstreamGetBits(bs, 8);      // profile_and_level_indication
207                  }  
208                  else if (start_code == VISOBJSEQ_STOP_CODE)                          DPRINTF(DPRINTF_HEADER, "profile_and_level_indication %i", profile);
209                  {  
210                    } else if (start_code == VISOBJSEQ_STOP_CODE) {
211    
212                          BitstreamSkip(bs, 32);                          // visual_object_sequence_stop_code                          BitstreamSkip(bs, 32);                          // visual_object_sequence_stop_code
213                  }  
214                  else if (start_code == VISOBJ_START_CODE)                          DPRINTF(DPRINTF_STARTCODE, "</visual_object_sequence>");
215                  {  
216                          // DEBUG("visual_object");                  } else if (start_code == VISOBJ_START_CODE) {
217    
218                            DPRINTF(DPRINTF_STARTCODE, "<visual_object>");
219    
220                          BitstreamSkip(bs,32);                                   // visual_object_start_code                          BitstreamSkip(bs,32);                                   // visual_object_start_code
221                          if (BitstreamGetBit(bs))                                // is_visual_object_identified                          if (BitstreamGetBit(bs))                                // is_visual_object_identified
222                          {                          {
223                                  vol_ver_id = BitstreamGetBits(bs,4);    // visual_object_ver_id                                  vol_ver_id = BitstreamGetBits(bs,4);    // visual_object_ver_id
224                                    DPRINTF(DPRINTF_HEADER,"ver_id %i", vol_ver_id);
225                                  BitstreamSkip(bs, 3);                           // visual_object_priority                                  BitstreamSkip(bs, 3);                           // visual_object_priority
226                          }                          } else {
                         else  
                         {  
227                                  vol_ver_id = 1;                                  vol_ver_id = 1;
228                          }                          }
229    
230                          if (BitstreamShowBits(bs, 4) != VISOBJ_TYPE_VIDEO)      // visual_object_type                          if (BitstreamShowBits(bs, 4) != VISOBJ_TYPE_VIDEO)      // visual_object_type
231                          {                          {
232                                  DEBUG("visual_object_type != video");                                  DPRINTF(DPRINTF_ERROR, "visual_object_type != video");
233                                  return -1;                                  return -1;
234                          }                          }
235                          BitstreamSkip(bs, 4);                          BitstreamSkip(bs, 4);
# Line 151  Line 238 
238    
239                          if (BitstreamGetBit(bs))                                // video_signal_type                          if (BitstreamGetBit(bs))                                // video_signal_type
240                          {                          {
241                                  DEBUG("+ video_signal_type");                                  DPRINTF(DPRINTF_HEADER,"+ video_signal_type");
242                                  BitstreamSkip(bs, 3);                           // video_format                                  BitstreamSkip(bs, 3);                           // video_format
243                                  BitstreamSkip(bs, 1);                           // video_range                                  BitstreamSkip(bs, 1);                           // video_range
244                                  if (BitstreamGetBit(bs))                        // color_description                                  if (BitstreamGetBit(bs))                        // color_description
245                                  {                                  {
246                                          DEBUG("+ color_description");                                          DPRINTF(DPRINTF_HEADER,"+ color_description");
247                                          BitstreamSkip(bs, 8);                   // color_primaries                                          BitstreamSkip(bs, 8);                   // color_primaries
248                                          BitstreamSkip(bs, 8);                   // transfer_characteristics                                          BitstreamSkip(bs, 8);                   // transfer_characteristics
249                                          BitstreamSkip(bs, 8);                   // matrix_coefficients                                          BitstreamSkip(bs, 8);                   // matrix_coefficients
250                                  }                                  }
251                          }                          }
252                  }                  } else if ((start_code & ~VIDOBJ_START_CODE_MASK) == VIDOBJ_START_CODE) {
253                  else if ((start_code & ~0x1f) == VIDOBJ_START_CODE)  
254                  {                          DPRINTF(DPRINTF_STARTCODE, "<video_object>");
255                            DPRINTF(DPRINTF_HEADER, "vo id %i", start_code & VIDOBJ_START_CODE_MASK);
256    
257                          BitstreamSkip(bs, 32);          // video_object_start_code                          BitstreamSkip(bs, 32);          // video_object_start_code
258                  }  
259                  else if ((start_code & ~0xf) == VIDOBJLAY_START_CODE)                  } else if ((start_code & ~VIDOBJLAY_START_CODE_MASK) == VIDOBJLAY_START_CODE) {
260                  {  
261                          // DEBUG("video_object_layer");                          DPRINTF(DPRINTF_STARTCODE, "<video_object_layer>");
262                            DPRINTF(DPRINTF_HEADER, "vol id %i", start_code & VIDOBJLAY_START_CODE_MASK);
263    
264                          BitstreamSkip(bs, 32);                                  // video_object_layer_start_code                          BitstreamSkip(bs, 32);                                  // video_object_layer_start_code
265    
266                          BitstreamSkip(bs, 1);                                                                   // random_accessible_vol                          BitstreamSkip(bs, 1);                                                                   // random_accessible_vol
267    
268                          // video_object_type_indication                          // video_object_type_indication
269                          if (BitstreamShowBits(bs, 8) != VIDOBJLAY_TYPE_SIMPLE &&                          if (BitstreamShowBits(bs, 8) != VIDOBJLAY_TYPE_SIMPLE && BitstreamShowBits(bs, 8) != VIDOBJLAY_TYPE_CORE && BitstreamShowBits(bs, 8) != VIDOBJLAY_TYPE_MAIN && BitstreamShowBits(bs, 8) != 0)   // BUGGY DIVX
                                 BitstreamShowBits(bs, 8) != VIDOBJLAY_TYPE_CORE &&  
                                 BitstreamShowBits(bs, 8) != VIDOBJLAY_TYPE_MAIN &&  
                                 BitstreamShowBits(bs, 8) != 0)          // BUGGY DIVX  
270                          {                          {
271                                  DEBUG1("video_object_type_indication not supported", BitstreamShowBits(bs, 8));                                  DPRINTF(DPRINTF_ERROR,"video_object_type_indication %i not supported ",
272                                            BitstreamShowBits(bs, 8));
273                                  return -1;                                  return -1;
274                          }                          }
275                          BitstreamSkip(bs, 8);                          BitstreamSkip(bs, 8);
# Line 188  Line 277 
277    
278                          if (BitstreamGetBit(bs))                                        // is_object_layer_identifier                          if (BitstreamGetBit(bs))                                        // is_object_layer_identifier
279                          {                          {
280                                  DEBUG("+ is_object_layer_identifier");                                  DPRINTF(DPRINTF_HEADER, "+ is_object_layer_identifier");
281                                  vol_ver_id = BitstreamGetBits(bs,4);            // video_object_layer_verid                                  vol_ver_id = BitstreamGetBits(bs,4);            // video_object_layer_verid
282                                    DPRINTF(DPRINTF_HEADER,"ver_id %i", vol_ver_id);
283                                  BitstreamSkip(bs, 3);                                   // video_object_layer_priority                                  BitstreamSkip(bs, 3);                                   // video_object_layer_priority
284                          }                          } else {
                         else  
                         {  
285                                  vol_ver_id = 1;                                  vol_ver_id = 1;
286                          }                          }
                         //DEBUGI("vol_ver_id", vol_ver_id);  
287    
288                          if (BitstreamGetBits(bs, 4) == VIDOBJLAY_AR_EXTPAR)     // aspect_ratio_info                          if (BitstreamGetBits(bs, 4) == VIDOBJLAY_AR_EXTPAR)     // aspect_ratio_info
289                          {                          {
290                                  DEBUG("+ aspect_ratio_info");                                  DPRINTF(DPRINTF_HEADER, "+ aspect_ratio_info");
291                                  BitstreamSkip(bs, 8);                                           // par_width                                  BitstreamSkip(bs, 8);                                           // par_width
292                                  BitstreamSkip(bs, 8);                                           // par_height                                  BitstreamSkip(bs, 8);                                           // par_height
293                          }                          }
294    
295                          if (BitstreamGetBit(bs))                // vol_control_parameters                          if (BitstreamGetBit(bs))                // vol_control_parameters
296                          {                          {
297                                  DEBUG("+ vol_control_parameters");                                  DPRINTF(DPRINTF_HEADER, "+ vol_control_parameters");
298                                  BitstreamSkip(bs, 2);                                           // chroma_format                                  BitstreamSkip(bs, 2);                                           // chroma_format
299                                  BitstreamSkip(bs, 1);                                           // low_delay                                  dec->low_delay = BitstreamGetBit(bs);   // low_delay
300                                    DPRINTF(DPRINTF_HEADER, "low_delay %i", dec->low_delay);
301                                  if (BitstreamGetBit(bs))                                        // vbv_parameters                                  if (BitstreamGetBit(bs))                                        // vbv_parameters
302                                  {                                  {
303                                          DEBUG("+ vbv_parameters");                                          DPRINTF(DPRINTF_HEADER,"+ vbv_parameters");
304                                          BitstreamSkip(bs, 15);                          // first_half_bitrate                                          BitstreamSkip(bs, 15);                          // first_half_bitrate
305                                          READ_MARKER();                                          READ_MARKER();
306                                          BitstreamSkip(bs, 15);                          // latter_half_bitrate                                          BitstreamSkip(bs, 15);                          // latter_half_bitrate
# Line 229  Line 317 
317                          }                          }
318    
319                          dec->shape = BitstreamGetBits(bs, 2);   // video_object_layer_shape                          dec->shape = BitstreamGetBits(bs, 2);   // video_object_layer_shape
320                          // DEBUG1("shape", dec->shape);                          DPRINTF(DPRINTF_HEADER, "shape %i", dec->shape);
321    
322                          if (dec->shape == VIDOBJLAY_SHAPE_GRAYSCALE && vol_ver_id != 1)                          if (dec->shape == VIDOBJLAY_SHAPE_GRAYSCALE && vol_ver_id != 1) {
                         {  
323                                  BitstreamSkip(bs, 4);           // video_object_layer_shape_extension                                  BitstreamSkip(bs, 4);           // video_object_layer_shape_extension
324                          }                          }
325    
326                          READ_MARKER();                          READ_MARKER();
327    
328                          time_inc_resolution = BitstreamGetBits(bs, 16); // vop_time_increment_resolution  // *************************** for decode B-frame time ***********************
329                          time_inc_resolution--;                          time_increment_resolution = BitstreamGetBits(bs, 16);   // vop_time_increment_resolution
                         if (time_inc_resolution > 0)  
                         {  
                                 dec->time_inc_bits = log2bin(time_inc_resolution);  
                         }  
                         else  
                         {  
                                 // dec->time_inc_bits = 0;  
330    
331                            DPRINTF(DPRINTF_HEADER,"vop_time_increment_resolution %i", time_increment_resolution);
332    
333    //                      time_increment_resolution--;
334    
335                            if (time_increment_resolution > 0) {
336                                    dec->time_inc_bits = log2bin(time_increment_resolution-1);
337                            } else {
338                                    // dec->time_inc_bits = 0;
339                                  // for "old" xvid compatibility, set time_inc_bits = 1                                  // for "old" xvid compatibility, set time_inc_bits = 1
340                                  dec->time_inc_bits = 1;                                  dec->time_inc_bits = 1;
341                          }                          }
# Line 256  Line 344 
344    
345                          if (BitstreamGetBit(bs))                                                // fixed_vop_rate                          if (BitstreamGetBit(bs))                                                // fixed_vop_rate
346                          {                          {
347                                    DPRINTF(DPRINTF_HEADER, "+ fixed_vop_rate");
348                                  BitstreamSkip(bs, dec->time_inc_bits);  // fixed_vop_time_increment                                  BitstreamSkip(bs, dec->time_inc_bits);  // fixed_vop_time_increment
349                          }                          }
350    
351                          if (dec->shape != VIDOBJLAY_SHAPE_BINARY_ONLY)                          if (dec->shape != VIDOBJLAY_SHAPE_BINARY_ONLY) {
                         {  
352    
353                                  if (dec->shape == VIDOBJLAY_SHAPE_RECTANGULAR)                                  if (dec->shape == VIDOBJLAY_SHAPE_RECTANGULAR) {
                                 {  
354                                          uint32_t width, height;                                          uint32_t width, height;
355    
356                                          READ_MARKER();                                          READ_MARKER();
357                                          width = BitstreamGetBits(bs, 13);                       // video_object_layer_width                                          width = BitstreamGetBits(bs, 13);                       // video_object_layer_width
                                         //DEBUGI("width", width);  
358                                          READ_MARKER();                                          READ_MARKER();
359                                          height = BitstreamGetBits(bs, 13);              // video_object_layer_height                                          height = BitstreamGetBits(bs, 13);              // video_object_layer_height
                                         //DEBUGI("height", height);  
360                                          READ_MARKER();                                          READ_MARKER();
361    
362                                          if (width != dec->width || height != dec->height)                                          DPRINTF(DPRINTF_HEADER, "width %i", width);
363                                          {                                          DPRINTF(DPRINTF_HEADER, "height %i", height);
364                                                  DEBUG("FATAL: video dimension discrepancy ***");  
365                                                  DEBUG2("bitstream width/height", width, height);                                          // for auto set width & height
366                                                  DEBUG2("param width/height", dec->width, dec->height);                                          if (dec->width == 0)
367                                                    dec->width = width;
368                                            if (dec->height == 0)
369                                                    dec->height = height;
370    
371                                            if (width != dec->width || height != dec->height) {
372                                                    DPRINTF(DPRINTF_ERROR, "XVID_DEC_PARAM width/height does not match bitstream");
373                                                  return -1;                                                  return -1;
374                                          }                                          }
375    
376                                  }                                  }
377    
378                                  if ((dec->interlacing = BitstreamGetBit(bs)))                                  dec->interlacing = BitstreamGetBit(bs);
379                                  {                                  DPRINTF(DPRINTF_HEADER, "interlace", dec->interlacing);
                                         DEBUG("vol: interlacing");  
                                 }  
380    
381                                  if (!BitstreamGetBit(bs))                               // obmc_disable                                  if (!BitstreamGetBit(bs))                               // obmc_disable
382                                  {                                  {
383                                          DEBUG("IGNORED/TODO: !obmc_disable");                                          DPRINTF(DPRINTF_ERROR, "obmc_disabled==false not supported");
384                                          // TODO                                          // TODO
385                                          // fucking divx4.02 has this enabled                                          // fucking divx4.02 has this enabled
386                                  }                                  }
387    
388                                  if (BitstreamGetBits(bs, (vol_ver_id == 1 ? 1 : 2)))  // sprite_enable                                  if (BitstreamGetBits(bs, (vol_ver_id == 1 ? 1 : 2)))  // sprite_enable
389                                  {                                  {
390                                          DEBUG("sprite_enable; not supported");                                          DPRINTF(DPRINTF_ERROR, "spriate_enabled not supported");
391                                          return -1;                                          return -1;
392                                  }                                  }
393    
394                                  if (vol_ver_id != 1 && dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR)                                  if (vol_ver_id != 1 &&
395                                  {                                          dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR) {
396                                          BitstreamSkip(bs, 1);                                   // sadct_disable                                          BitstreamSkip(bs, 1);                                   // sadct_disable
397                                  }                                  }
398    
399                                  if (BitstreamGetBit(bs))                                                // not_8_bit                                  if (BitstreamGetBit(bs))                                                // not_8_bit
400                                  {                                  {
401                                          DEBUG("+ not_8_bit [IGNORED/TODO]");                                          DPRINTF(DPRINTF_HEADER, "not_8_bit==true (ignored)");
402                                          dec->quant_bits = BitstreamGetBits(bs, 4);      // quant_precision                                          dec->quant_bits = BitstreamGetBits(bs, 4);      // quant_precision
403                                          BitstreamSkip(bs, 4);                                           // bits_per_pixel                                          BitstreamSkip(bs, 4);                                           // bits_per_pixel
404                                  }                                  } else {
                                 else  
                                 {  
405                                          dec->quant_bits = 5;                                          dec->quant_bits = 5;
406                                  }                                  }
407    
408                                  if (dec->shape == VIDOBJLAY_SHAPE_GRAYSCALE)                                  if (dec->shape == VIDOBJLAY_SHAPE_GRAYSCALE) {
                                 {  
409                                          BitstreamSkip(bs, 1);                   // no_gray_quant_update                                          BitstreamSkip(bs, 1);                   // no_gray_quant_update
410                                          BitstreamSkip(bs, 1);                   // composition_method                                          BitstreamSkip(bs, 1);                   // composition_method
411                                          BitstreamSkip(bs, 1);                   // linear_composition                                          BitstreamSkip(bs, 1);                   // linear_composition
412                                  }                                  }
413    
414                                  dec->quant_type = BitstreamGetBit(bs);          // quant_type                                  dec->quant_type = BitstreamGetBit(bs);          // quant_type
415                                  // DEBUG1("**** quant_type", dec->quant_type);                                  DPRINTF(DPRINTF_HEADER, "quant_type %i", dec->quant_type);
416    
417                                  if (dec->quant_type)                                  if (dec->quant_type) {
                                 {  
418                                          if (BitstreamGetBit(bs))                // load_intra_quant_mat                                          if (BitstreamGetBit(bs))                // load_intra_quant_mat
419                                          {                                          {
420                                                  uint8_t matrix[64];                                                  uint8_t matrix[64];
421    
422                                                    DPRINTF(DPRINTF_HEADER, "load_intra_quant_mat");
423    
424                                                  bs_get_matrix(bs, matrix);                                                  bs_get_matrix(bs, matrix);
425                                                  set_intra_matrix(matrix);                                                  set_intra_matrix(matrix);
426                                          }                                          } else
                                         else  
427                                                  set_intra_matrix(get_default_intra_matrix());                                                  set_intra_matrix(get_default_intra_matrix());
428    
429                                          if (BitstreamGetBit(bs))                // load_inter_quant_mat                                          if (BitstreamGetBit(bs))                // load_inter_quant_mat
430                                          {                                          {
431                                                  uint8_t matrix[64];                                                  uint8_t matrix[64];
432    
433                                                    DPRINTF(DPRINTF_HEADER, "load_inter_quant_mat");
434    
435                                                  bs_get_matrix(bs, matrix);                                                  bs_get_matrix(bs, matrix);
436                                                  set_inter_matrix(matrix);                                                  set_inter_matrix(matrix);
437                                          }                                          } else
                                         else  
438                                                  set_inter_matrix(get_default_inter_matrix());                                                  set_inter_matrix(get_default_inter_matrix());
439    
440                                          if (dec->shape == VIDOBJLAY_SHAPE_GRAYSCALE)                                          if (dec->shape == VIDOBJLAY_SHAPE_GRAYSCALE) {
441                                          {                                                  DPRINTF(DPRINTF_ERROR, "greyscale matrix not supported");
                                                 // TODO  
                                                 DEBUG("TODO: grayscale matrix stuff");  
442                                                  return -1;                                                  return -1;
443                                          }                                          }
444    
445                                  }                                  }
446    
447    
448                                  if (vol_ver_id != 1)                                  if (vol_ver_id != 1) {
                                 {  
449                                          dec->quarterpel = BitstreamGetBit(bs);  // quarter_sampe                                          dec->quarterpel = BitstreamGetBit(bs);  // quarter_sampe
450                                          if (dec->quarterpel)                                          if (dec->quarterpel) {
451                                          {                                                  DPRINTF(DPRINTF_ERROR, "quarter_sample not supported");
                                                 DEBUG("IGNORED/TODO: quarter_sample");  
452                                          }                                          }
453                                  }                                  } else {
                                 else  
                                 {  
454                                          dec->quarterpel = 0;                                          dec->quarterpel = 0;
455                                  }                                  }
456    
457                                  if (!BitstreamGetBit(bs))                       // complexity_estimation_disable                                  if (!BitstreamGetBit(bs))                       // complexity_estimation_disable
458                                  {                                  {
459                                          DEBUG("TODO: complexity_estimation header");                                          DPRINTF(DPRINTF_ERROR, "complexity_estimation not supported");
                                         // TODO  
460                                          return -1;                                          return -1;
461                                  }                                  }
462    
463                                  if (!BitstreamGetBit(bs))                       // resync_marker_disable                                  BitstreamSkip(bs, 1);   // resync_marker_disable
                                 {  
                                         DEBUG("IGNORED/TODO: !resync_marker_disable");  
                                         // TODO  
                                 }  
464    
465                                  if (BitstreamGetBit(bs))                // data_partitioned                                  if (BitstreamGetBit(bs))                // data_partitioned
466                                  {                                  {
467                                          DEBUG("+ data_partitioned");                                          DPRINTF(DPRINTF_ERROR, "data_partitioned not supported");
468                                          BitstreamSkip(bs, 1);           // reversible_vlc                                          BitstreamSkip(bs, 1);           // reversible_vlc
469                                  }                                  }
470    
471                                  if (vol_ver_id != 1)                                  if (vol_ver_id != 1) {
                                 {  
472                                          if (BitstreamGetBit(bs))                        // newpred_enable                                          if (BitstreamGetBit(bs))                        // newpred_enable
473                                          {                                          {
474                                                  DEBUG("+ newpred_enable");                                                  DPRINTF(DPRINTF_HEADER, "+ newpred_enable");
475                                                  BitstreamSkip(bs, 2);                   // requested_upstream_message_type                                                  BitstreamSkip(bs, 2);                   // requested_upstream_message_type
476                                                  BitstreamSkip(bs, 1);                   // newpred_segment_type                                                  BitstreamSkip(bs, 1);                   // newpred_segment_type
477                                          }                                          }
478                                          if (BitstreamGetBit(bs))                        // reduced_resolution_vop_enable                                          if (BitstreamGetBit(bs))                        // reduced_resolution_vop_enable
479                                          {                                          {
480                                                  DEBUG("TODO: reduced_resolution_vop_enable");                                                  DPRINTF(DPRINTF_ERROR, "reduced_resolution_vop not supported");
                                                 // TODO  
481                                                  return -1;                                                  return -1;
482                                          }                                          }
483                                  }                                  }
484    
485                                  if (BitstreamGetBit(bs))        // scalability                                  if ((dec->scalability = BitstreamGetBit(bs)))   // scalability
486                                  {                                  {
487                                          // TODO                                          DPRINTF(DPRINTF_ERROR, "scalability not supported");
                                         DEBUG("TODO: scalability");  
488                                          return -1;                                          return -1;
489                                  }                                  }
490                          }                          } else                          // dec->shape == BINARY_ONLY
                         else    // dec->shape == BINARY_ONLY  
                         {  
                                 if (vol_ver_id != 1)  
491                                  {                                  {
492                                    if (vol_ver_id != 1) {
493                                          if (BitstreamGetBit(bs))        // scalability                                          if (BitstreamGetBit(bs))        // scalability
494                                          {                                          {
495                                                  // TODO                                          DPRINTF(DPRINTF_ERROR, "scalability not supported");
                                                 DEBUG("TODO: scalability");  
496                                                  return -1;                                                  return -1;
497                                          }                                          }
498                                  }                                  }
# Line 428  Line 500 
500    
501                          }                          }
502    
503                  }                  } else if (start_code == GRPOFVOP_START_CODE) {
504                  else if (start_code == GRPOFVOP_START_CODE)  
505                  {                          DPRINTF(DPRINTF_STARTCODE, "<group_of_vop>");
506                          // DEBUG("group_of_vop");  
507                          BitstreamSkip(bs, 32);                          BitstreamSkip(bs, 32);
508                          {                          {
509                                  int hours, minutes, seconds;                                  int hours, minutes, seconds;
510    
511                                  hours = BitstreamGetBits(bs, 5);                                  hours = BitstreamGetBits(bs, 5);
512                                  minutes = BitstreamGetBits(bs, 6);                                  minutes = BitstreamGetBits(bs, 6);
513                                  READ_MARKER();                                  READ_MARKER();
514                                  seconds = BitstreamGetBits(bs, 6);                                  seconds = BitstreamGetBits(bs, 6);
515                                  // DEBUG3("hms", hours, minutes, seconds);  
516                                    DPRINTF(DPRINTF_HEADER, "time %ih%im%is", hours);
517                          }                          }
518                          BitstreamSkip(bs, 1);                   // closed_gov                          BitstreamSkip(bs, 1);                   // closed_gov
519                          BitstreamSkip(bs, 1);                   // broken_link                          BitstreamSkip(bs, 1);                   // broken_link
520                  }  
521                  else if (start_code == VOP_START_CODE)                  } else if (start_code == VOP_START_CODE) {
522                  {  
523                          // DEBUG("vop_start_code");                          DPRINTF(DPRINTF_STARTCODE, "<vop>");
524    
525                          BitstreamSkip(bs, 32);                                          // vop_start_code                          BitstreamSkip(bs, 32);                                          // vop_start_code
526    
527                          coding_type = BitstreamGetBits(bs, 2);          // vop_coding_type                          coding_type = BitstreamGetBits(bs, 2);          // vop_coding_type
528                          //DEBUG1("coding_type", coding_type);                          DPRINTF(DPRINTF_HEADER, "coding_type %i", coding_type);
529    
530                          while (BitstreamGetBit(bs) != 0) ;                      // time_base  // *************************** for decode B-frame time ***********************
531                            while (BitstreamGetBit(bs) != 0)        // time_base
532                                    time_incr++;
533    
534                          READ_MARKER();                          READ_MARKER();
535    
536                          //DEBUG1("time_inc_bits", dec->time_inc_bits);                          if (dec->time_inc_bits) {
537                          //DEBUG1("vop_time_incr", BitstreamShowBits(bs, dec->time_inc_bits));                                  time_increment = (BitstreamGetBits(bs, dec->time_inc_bits));    // vop_time_increment
538                          if (dec->time_inc_bits)                          }
539                          {  
540                                  BitstreamSkip(bs, dec->time_inc_bits);  // vop_time_increment                          DPRINTF(DPRINTF_HEADER, "time_base %i", time_incr);
541                            DPRINTF(DPRINTF_HEADER, "time_increment %i", time_increment);
542    
543                            DPRINTF(DPRINTF_TIMECODE, "%c %i:%i",
544                                    coding_type == I_VOP ? 'I' : coding_type == P_VOP ? 'P' : 'B',
545                                    time_incr, time_increment);
546    
547                            if (coding_type != B_VOP) {
548                                    dec->last_time_base = dec->time_base;
549                                    dec->time_base += time_incr;
550                                    dec->time = time_increment;
551    
552    /*                                      dec->time_base * time_increment_resolution +
553                                            time_increment;
554    */                              dec->time_pp = (uint32_t)
555                                            (time_increment_resolution + dec->time - dec->last_non_b_time)%time_increment_resolution;
556                                    dec->last_non_b_time = dec->time;
557                            } else {
558                                    dec->time = time_increment;
559    /*
560                                            (dec->last_time_base +
561                                             time_incr) * time_increment_resolution + time_increment;
562    */
563                                    dec->time_bp = (uint32_t)
564                                            (time_increment_resolution + dec->last_non_b_time - dec->time)%time_increment_resolution;
565                          }                          }
566    
567                          READ_MARKER();                          READ_MARKER();
568    
569                          if (!BitstreamGetBit(bs))                                       // vop_coded                          if (!BitstreamGetBit(bs))                                       // vop_coded
570                          {                          {
571                                    DPRINTF(DPRINTF_HEADER, "vop_coded==false");
572                                  return N_VOP;                                  return N_VOP;
573                          }                          }
574    
# Line 475  Line 577 
577                          }                          }
578                          */                          */
579    
580                          if (coding_type != I_VOP)                          // fix a little bug by MinChen <chenm002@163.com>
581                          {                          if ((dec->shape != VIDOBJLAY_SHAPE_BINARY_ONLY) &&
582                                    (coding_type == P_VOP)) {
583                                  *rounding = BitstreamGetBit(bs);        // rounding_type                                  *rounding = BitstreamGetBit(bs);        // rounding_type
584                                  //DEBUG1("rounding", *rounding);                                  DPRINTF(DPRINTF_HEADER, "rounding %i", *rounding);
585                          }                          }
586    
587                          /* if (reduced_resolution_enable)                          /* if (reduced_resolution_enable)
# Line 486  Line 589 
589                          }                          }
590                          */                          */
591    
592                          if (dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR)                          if (dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR) {
                         {  
593                                  uint32_t width, height;                                  uint32_t width, height;
594                                  uint32_t horiz_mc_ref, vert_mc_ref;                                  uint32_t horiz_mc_ref, vert_mc_ref;
595    
# Line 500  Line 602 
602                                  vert_mc_ref = BitstreamGetBits(bs, 13);                                  vert_mc_ref = BitstreamGetBits(bs, 13);
603                                  READ_MARKER();                                  READ_MARKER();
604    
605                                  // DEBUG2("vop_width/height", width, height);                                  DPRINTF(DPRINTF_HEADER, "width %i", width);
606                                  // DEBUG2("ref             ", horiz_mc_ref, vert_mc_ref);                                  DPRINTF(DPRINTF_HEADER, "height %i", height);
607                                    DPRINTF(DPRINTF_HEADER, "horiz_mc_ref %i", horiz_mc_ref);
608                                    DPRINTF(DPRINTF_HEADER, "vert_mc_ref %i", vert_mc_ref);
609    
610                                  BitstreamSkip(bs, 1);                           // change_conv_ratio_disable                                  BitstreamSkip(bs, 1);                           // change_conv_ratio_disable
611                                  if (BitstreamGetBit(bs))                        // vop_constant_alpha                                  if (BitstreamGetBit(bs))                        // vop_constant_alpha
# Line 511  Line 615 
615                          }                          }
616    
617    
618                          if (dec->shape != VIDOBJLAY_SHAPE_BINARY_ONLY)                          if (dec->shape != VIDOBJLAY_SHAPE_BINARY_ONLY) {
                         {  
619                                  // intra_dc_vlc_threshold                                  // intra_dc_vlc_threshold
620                                  *intra_dc_threshold = intra_dc_threshold_table[ BitstreamGetBits(bs,3) ];                                  *intra_dc_threshold =
621                                            intra_dc_threshold_table[BitstreamGetBits(bs, 3)];
622    
623                                    if (dec->interlacing) {
624                                            dec->top_field_first = BitstreamGetBit(bs);
625                                            DPRINTF(DPRINTF_HEADER, "interlace top_field_first %i", dec->top_field_first);
626                                            dec->alternate_vertical_scan = BitstreamGetBit(bs);
627                                            DPRINTF(DPRINTF_HEADER, "interlace alternate_vertical_scan %i", dec->alternate_vertical_scan);
628    
                                 if (dec->interlacing)  
                                 {  
                                         if ((dec->top_field_first = BitstreamGetBit(bs)))  
                                         {  
                                                 DEBUG("vop: top_field_first");  
                                         }  
                                         if ((dec->alternate_vertical_scan = BitstreamGetBit(bs)))  
                                         {  
                                                 DEBUG("vop: alternate_vertical_scan");  
                                         }  
629                                  }                                  }
630                          }                          }
631    
632                          *quant = BitstreamGetBits(bs, dec->quant_bits);         // vop_quant                          if ((*quant = BitstreamGetBits(bs, dec->quant_bits)) < 1)       // vop_quant
633                          //DEBUG1("quant", *quant);                                  *quant = 1;
634    
635                          if (coding_type != I_VOP)                          DPRINTF(DPRINTF_HEADER, "quant %i", *quant);
636                          {  
637                                  *fcode = BitstreamGetBits(bs, 3);                       // fcode_forward                          if (coding_type != I_VOP) {
638                                    *fcode_forward = BitstreamGetBits(bs, 3);       // fcode_forward
639                                    DPRINTF(DPRINTF_HEADER, "fcode_forward %i", *fcode_forward);
640                          }                          }
641    
642                          if (coding_type == B_VOP)                          if (coding_type == B_VOP) {
643                          {                                  *fcode_backward = BitstreamGetBits(bs, 3);      // fcode_backward
644                                  // *fcode_backward = BitstreamGetBits(bs, 3);           // fcode_backward                                  DPRINTF(DPRINTF_HEADER, "fcode_backward %i", *fcode_backward);
645                          }                          }
646                          return coding_type;                          if (!dec->scalability) {
647                                    if ((dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR) &&
648                                            (coding_type != I_VOP)) {
649                                            BitstreamSkip(bs, 1);   // vop_shape_coding_type
650                  }                  }
                 else if (start_code == USERDATA_START_CODE)  
                 {  
                         // DEBUG("user_data");  
                         BitstreamSkip(bs, 32);          // user_data_start_code  
651                  }                  }
652                  else  // start_code == ?                          return coding_type;
653                  {  
654                          if (BitstreamShowBits(bs, 24) == 0x000001)                  } else if (start_code == USERDATA_START_CODE) {
655    
656                            DPRINTF(DPRINTF_STARTCODE, "<user_data>");
657    
658                            BitstreamSkip(bs, 32);  // user_data_start_code
659    
660                    } else                                  // start_code == ?
661                          {                          {
662                                  DEBUG1("*** WARNING: unknown start_code", BitstreamShowBits(bs, 32));                          if (BitstreamShowBits(bs, 24) == 0x000001) {
663                                    DPRINTF(DPRINTF_STARTCODE, "<unknown: %x>", BitstreamShowBits(bs, 32));
664                          }                          }
665                          BitstreamSkip(bs, 8);                          BitstreamSkip(bs, 8);
666                  }                  }
667          }          }
668          while ((BitstreamPos(bs) >> 3) < bs->length);          while ((BitstreamPos(bs) >> 3) < bs->length);
669    
670          DEBUG("*** WARNING: no vop_start_code found");          //DPRINTF("*** WARNING: no vop_start_code found");
671          return -1; /* ignore it */          return -1; /* ignore it */
672  }  }
673    
674    
675  /* write custom quant matrix */  /* write custom quant matrix */
676    
677  static void bs_put_matrix(Bitstream * bs, const int16_t *matrix)  static void
678    bs_put_matrix(Bitstream * bs,
679                              const int16_t * matrix)
680  {  {
681          int i, j;          int i, j;
682          const int last = matrix[scan_tables[0][63]];          const int last = matrix[scan_tables[0][63]];
683    
684          for (j = 63; j >= 0 && matrix[scan_tables[0][j - 1]] == last; j--) ;          for (j = 63; j > 0 && matrix[scan_tables[0][j - 1]] == last; j--);
685    
686          for (i = 0; i <= j; i++)          for (i = 0; i <= j; i++) {
         {  
687                  BitstreamPutBits(bs, matrix[scan_tables[0][i]], 8);                  BitstreamPutBits(bs, matrix[scan_tables[0][i]], 8);
688          }          }
689    
690          if (j < 63)          if (j < 63) {
         {  
691                  BitstreamPutBits(bs, 0, 8);                  BitstreamPutBits(bs, 0, 8);
692          }          }
693  }  }
# Line 588  Line 696 
696  /*  /*
697          write vol header          write vol header
698  */  */
699  void BitstreamWriteVolHeader(Bitstream * const bs,  void
700                                                  const MBParam * pParam)  BitstreamWriteVolHeader(Bitstream * const bs,
701                                                    const MBParam * pParam,
702                                                    const FRAMEINFO * frame)
703  {  {
704          // video object_start_code & vo_id          // video object_start_code & vo_id
705      BitstreamPad(bs);      BitstreamPad(bs);
# Line 604  Line 714 
714          BitstreamPutBits(bs, 0, 8);                     // video_object_type_indication          BitstreamPutBits(bs, 0, 8);                     // video_object_type_indication
715          BitstreamPutBit(bs, 0);                         // is_object_layer_identified (0=not given)          BitstreamPutBit(bs, 0);                         // is_object_layer_identified (0=not given)
716          BitstreamPutBits(bs, 1, 4);                     // aspect_ratio_info (1=1:1)          BitstreamPutBits(bs, 1, 4);                     // aspect_ratio_info (1=1:1)
717          BitstreamPutBit(bs, 0);                         // vol_control_parameters (0=not given)  
718    #ifdef BFRAMES
719            if (pParam->max_bframes > 0) {
720                    //DPRINTF("low_delay=1");
721                    BitstreamPutBit(bs, 1); // vol_control_parameters
722                    BitstreamPutBits(bs, 1, 2);     // chroma_format 1="4:2:0"
723                    BitstreamPutBit(bs, 0); // low_delay
724                    BitstreamPutBit(bs, 0); // vbv_parameters (0=not given)
725            } else
726    #endif
727            {
728                    BitstreamPutBits(bs, 0, 1);     // vol_control_parameters (0=not given)
729            }
730    
731    
732          BitstreamPutBits(bs, 0, 2);                     // video_object_layer_shape (0=rectangular)          BitstreamPutBits(bs, 0, 2);                     // video_object_layer_shape (0=rectangular)
733    
734          WRITE_MARKER();          WRITE_MARKER();
# Line 614  Line 738 
738                          25fps           res=25          inc=1                          25fps           res=25          inc=1
739                          29.97fps        res=30000       inc=1001                          29.97fps        res=30000       inc=1001
740          */          */
741    #ifdef BFRAMES
742            BitstreamPutBits(bs, pParam->fbase, 16);
743    #else
744          BitstreamPutBits(bs, 2, 16);          BitstreamPutBits(bs, 2, 16);
745    #endif
746    
747          WRITE_MARKER();          WRITE_MARKER();
748    
749          // fixed_vop_rate  #ifdef BFRAMES
750          BitstreamPutBit(bs, 0);          BitstreamPutBit(bs, 1);         // fixed_vop_rate = 1
751            BitstreamPutBits(bs, pParam->fincr, log2bin(pParam->fbase));    // fixed_vop_time_increment
752          // fixed_time_increment: value=nth_of_sec, nbits = log2(resolution)  #else
753          // BitstreamPutBits(bs, 0, 15);          BitstreamPutBit(bs, 0);         // fixed_vop_rate = 0
754    #endif
755    
756          WRITE_MARKER();          WRITE_MARKER();
757          BitstreamPutBits(bs, pParam->width, 13);                // width          BitstreamPutBits(bs, pParam->width, 13);                // width
# Line 630  Line 759 
759          BitstreamPutBits(bs, pParam->height, 13);               // height          BitstreamPutBits(bs, pParam->height, 13);               // height
760          WRITE_MARKER();          WRITE_MARKER();
761    
762          BitstreamPutBit(bs, pParam->global_flags & XVID_INTERLACING);           // interlace          BitstreamPutBit(bs, frame->global_flags & XVID_INTERLACING);    // interlace
763          BitstreamPutBit(bs, 1);         // obmc_disable (overlapped block motion compensation)          BitstreamPutBit(bs, 1);         // obmc_disable (overlapped block motion compensation)
764          BitstreamPutBit(bs, 0);         // sprite_enable          BitstreamPutBit(bs, 0);         // sprite_enable
765          BitstreamPutBit(bs, 0);         // not_in_bit          BitstreamPutBit(bs, 0);         // not_in_bit
766    
767          // quant_type   0=h.263  1=mpeg4(quantizer tables)          // quant_type   0=h.263  1=mpeg4(quantizer tables)
768          BitstreamPutBit(bs, pParam->quant_type);          BitstreamPutBit(bs, pParam->m_quant_type);
769    
770          if (pParam->quant_type)          if (pParam->m_quant_type) {
         {  
771                  BitstreamPutBit(bs, get_intra_matrix_status()); // load_intra_quant_mat                  BitstreamPutBit(bs, get_intra_matrix_status()); // load_intra_quant_mat
772                  if (get_intra_matrix_status())                  if (get_intra_matrix_status()) {
                 {  
773                          bs_put_matrix(bs, get_intra_matrix());                          bs_put_matrix(bs, get_intra_matrix());
774                  }                  }
775    
776                  BitstreamPutBit(bs, get_inter_matrix_status());         // load_inter_quant_mat                  BitstreamPutBit(bs, get_inter_matrix_status());         // load_inter_quant_mat
777                  if (get_inter_matrix_status())                  if (get_inter_matrix_status()) {
                 {  
778                          bs_put_matrix(bs, get_inter_matrix());                          bs_put_matrix(bs, get_inter_matrix());
779                  }                  }
780    
# Line 669  Line 795 
795    time_inc = nth of a second since last resync    time_inc = nth of a second since last resync
796    (decoder uses these values to determine precise time since last resync)    (decoder uses these values to determine precise time since last resync)
797  */  */
798  void BitstreamWriteVopHeader(Bitstream * const bs,  void
799                                                  const MBParam * pParam)  BitstreamWriteVopHeader(Bitstream * const bs,
800  {                                                  const MBParam * pParam,
801                                                    const FRAMEINFO * frame,
802                                                    int vop_coded)
803    {
804    #ifdef BFRAMES
805            uint32_t i;
806    #endif
807      BitstreamPad(bs);      BitstreamPad(bs);
808      BitstreamPutBits(bs, VOP_START_CODE, 32);      BitstreamPutBits(bs, VOP_START_CODE, 32);
809    
810      BitstreamPutBits(bs, pParam->coding_type, 2);          BitstreamPutBits(bs, frame->coding_type, 2);
811    
812          // time_base = 0  write n x PutBit(1), PutBit(0)          // time_base = 0  write n x PutBit(1), PutBit(0)
813    #ifdef BFRAMES
814            for (i = 0; i < frame->seconds; i++) {
815                    BitstreamPutBit(bs, 1);
816            }
817            BitstreamPutBit(bs, 0);
818    #else
819          BitstreamPutBits(bs, 0, 1);          BitstreamPutBits(bs, 0, 1);
820    #endif
821    
822          WRITE_MARKER();          WRITE_MARKER();
823    
824          // time_increment: value=nth_of_sec, nbits = log2(resolution)          // time_increment: value=nth_of_sec, nbits = log2(resolution)
825    #ifdef BFRAMES
826            BitstreamPutBits(bs, frame->ticks, log2bin(pParam->fbase));
827            /*DPRINTF("[%i:%i] %c\n", frame->seconds, frame->ticks,
828                            frame->coding_type == I_VOP ? 'I' : frame->coding_type ==
829                            P_VOP ? 'P' : 'B');*/
830    #else
831          BitstreamPutBits(bs, 1, 1);          BitstreamPutBits(bs, 1, 1);
832    #endif
833    
834          WRITE_MARKER();          WRITE_MARKER();
835    
836            if (!vop_coded) {
837                    BitstreamPutBits(bs, 0, 1);
838                    return;
839            }
840    
841          BitstreamPutBits(bs, 1, 1);                             // vop_coded          BitstreamPutBits(bs, 1, 1);                             // vop_coded
842    
843          if (pParam->coding_type != I_VOP)          if (frame->coding_type == P_VOP)
844                  BitstreamPutBits(bs, pParam->rounding_type, 1);                  BitstreamPutBits(bs, frame->rounding_type, 1);
845    
846          BitstreamPutBits(bs, 0, 3);                             // intra_dc_vlc_threshold          BitstreamPutBits(bs, 0, 3);                             // intra_dc_vlc_threshold
847    
848          if (pParam->global_flags & XVID_INTERLACING)          if (frame->global_flags & XVID_INTERLACING) {
         {  
849                  BitstreamPutBit(bs, 1);         // top field first                  BitstreamPutBit(bs, 1);         // top field first
850                  BitstreamPutBit(bs, 0);         // alternate vertical scan                  BitstreamPutBit(bs, 0);         // alternate vertical scan
851          }          }
852    
853          BitstreamPutBits(bs, pParam->quant, 5);                 // quantizer          BitstreamPutBits(bs, frame->quant, 5);  // quantizer
854    
855            if (frame->coding_type != I_VOP)
856                    BitstreamPutBits(bs, frame->fcode, 3);  // forward_fixed_code
857    
858            if (frame->coding_type == B_VOP)
859                    BitstreamPutBits(bs, frame->bcode, 3);  // backward_fixed_code
860    
861    }
862    
863    
864    void
865    BitstreamWriteUserData(Bitstream * const bs,
866                                                    uint8_t * data,
867                                                    const int length)
868    {
869            int i;
870    
871            BitstreamPad(bs);
872            BitstreamPutBits(bs, USERDATA_START_CODE, 32);
873    
874            for (i = 0; i < length; i++) {
875                    BitstreamPutBits(bs, data[i], 8);
876            }
877    
         if (pParam->coding_type != I_VOP)  
                 BitstreamPutBits(bs, pParam->fixed_code, 3);            // fixed_code = [1,4]  
878  }  }

Legend:
Removed from v.1.5  
changed lines
  Added in v.1.25

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