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

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

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

revision 469, Tue Sep 10 22:52:13 2002 UTC revision 2169, Thu Jan 17 14:19:40 2019 UTC
# Line 1  Line 1 
1  /*****************************************************************************  /*****************************************************************************
2   *   *
3   *  XVID MPEG-4 VIDEO CODEC   *  XVID MPEG-4 VIDEO CODEC
4   *  - Bitstream reader/writer functions -   *  - Bitstream reader/writer -
5   *   *
6   *  Copyright (C) 2001-2002 - Peter Ross <pross@cs.rmit.edu.au>   *  Copyright (C) 2001-2003 Peter Ross <pross@xvid.org>
7   *   *                     2003 Cristoph Lampert <gruel@web.de>
  *  This program is an implementation of a part of one or more MPEG-4  
  *  Video tools as specified in ISO/IEC 14496-2 standard.  Those intending  
  *  to use this software module in hardware or software products are  
  *  advised that its use may infringe existing patents or copyrights, and  
  *  any such use would be at such party's own risk.  The original  
  *  developer of this software module and his/her company, and subsequent  
  *  editors and their companies, will have no liability for use of this  
  *  software or modifications or derivatives thereof.  
8   *   *
9   *  This program is free software ; you can redistribute it and/or modify   *  This program is free software ; you can redistribute it and/or modify
10   *  it under the terms of the GNU General Public License as published by   *  it under the terms of the GNU General Public License as published by
# Line 28  Line 20 
20   *  along with this program ; if not, write to the Free Software   *  along with this program ; if not, write to the Free Software
21   *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA   *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
22   *   *
23   * $Id: bitstream.c,v 1.29 2002-09-10 22:52:12 edgomez Exp $   * $Id$
24   *   *
25   ****************************************************************************/   ****************************************************************************/
26    
27    #include <string.h>
28    #include <stdio.h>
29    
30  #include "bitstream.h"  #include "bitstream.h"
31  #include "zigzag.h"  #include "zigzag.h"
32  #include "../quant/quant_matrix.h"  #include "../quant/quant_matrix.h"
33    #include "mbcoding.h"
34    
 /*****************************************************************************  
  * Functions  
  ****************************************************************************/  
35    
36  static uint32_t __inline  static const uint8_t log2_tab_16[16] =  { 0, 1, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4 };
37  log2bin(uint32_t value)  
38    static uint32_t __inline log2bin(uint32_t value)
39  {  {
 /* Changed by Chenm001 */  
 #ifndef WIN32  
40          int n = 0;          int n = 0;
41      if (value & 0xffff0000) {
42          while (value) {      value >>= 16;
43                  value >>= 1;      n += 16;
44                  n++;    }
45          }    if (value & 0xff00) {
46          return n;      value >>= 8;
47  #else      n += 8;
48          __asm {    }
49                  bsr eax, value    if (value & 0xf0) {
50                  inc eax      value >>= 4;
51        n += 4;
52          }          }
53  #endif   return n + log2_tab_16[value];
54  }  }
55    
   
56  static const uint32_t intra_dc_threshold_table[] = {  static const uint32_t intra_dc_threshold_table[] = {
57          32,                                                     /* never use */          32,                                                     /* never use */
58          13,          13,
# Line 73  Line 65 
65  };  };
66    
67    
68  void  static void
69  bs_get_matrix(Bitstream * bs,  bs_get_matrix(Bitstream * bs,
70                            uint8_t * matrix)                            uint8_t * matrix)
71  {  {
# Line 86  Line 78 
78                  matrix[scan_tables[0][i++]] = value;                  matrix[scan_tables[0][i++]] = value;
79          }          }
80          while (value != 0 && i < 64);          while (value != 0 && i < 64);
         i--;    // fix little bug at coeff not full  
81    
82            if (value != 0) return;
83    
84            i--;
85          while (i < 64) {          while (i < 64) {
86                  matrix[scan_tables[0][i++]] = last;                  matrix[scan_tables[0][i++]] = last;
87          }          }
# Line 95  Line 89 
89    
90    
91    
92  // for PVOP addbits == fcode - 1  /*
93  // for BVOP addbits == max(fcode,bcode) - 1   * for PVOP addbits == fcode - 1
94  // returns mbpos   * for BVOP addbits == max(fcode,bcode) - 1
95     * returns mbpos
96     */
97  int  int
98  read_video_packet_header(Bitstream *bs, const int addbits, int * quant)  read_video_packet_header(Bitstream *bs,
99                                                    DECODER * dec,
100                                                    const int addbits,
101                                                    int * quant,
102                                                    int * fcode_forward,
103                                                    int  * fcode_backward,
104                                                    int * intra_dc_threshold)
105  {  {
106          int nbits;          int startcode_bits = NUMBITS_VP_RESYNC_MARKER + addbits;
107            int mbnum_bits = log2bin(dec->mb_width *  dec->mb_height - 1);
108          int mbnum;          int mbnum;
109          int hec;          int hec = 0;
   
         nbits = NUMBITS_VP_RESYNC_MARKER + addbits;  
110    
111          BitstreamSkip(bs, BitstreamNumBitsToByteAlign(bs));          BitstreamSkip(bs, BitstreamNumBitsToByteAlign(bs));
112          BitstreamSkip(bs, nbits);          BitstreamSkip(bs, startcode_bits);
113    
114            DPRINTF(XVID_DEBUG_STARTCODE, "<video_packet_header>\n");
115    
116            if (dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR)
117            {
118                    hec = BitstreamGetBit(bs);              /* header_extension_code */
119                    if (hec && !(dec->sprite_enable == SPRITE_STATIC /* && current_coding_type = I_VOP */))
120                    {
121                            BitstreamSkip(bs, 13);                  /* vop_width */
122                            READ_MARKER();
123                            BitstreamSkip(bs, 13);                  /* vop_height */
124                            READ_MARKER();
125                            BitstreamSkip(bs, 13);                  /* vop_horizontal_mc_spatial_ref */
126                            READ_MARKER();
127                            BitstreamSkip(bs, 13);                  /* vop_vertical_mc_spatial_ref */
128                            READ_MARKER();
129                    }
130            }
131    
132            mbnum = (mbnum_bits == 0) ? 0 : BitstreamGetBits(bs, mbnum_bits);               /* macroblock_number */
133            DPRINTF(XVID_DEBUG_HEADER, "mbnum %i\n", mbnum);
134    
135            if (dec->shape != VIDOBJLAY_SHAPE_BINARY_ONLY)
136            {
137                    *quant = BitstreamGetBits(bs, dec->quant_bits); /* quant_scale */
138                    DPRINTF(XVID_DEBUG_HEADER, "quant %i\n", *quant);
139            }
140    
141            if (dec->shape == VIDOBJLAY_SHAPE_RECTANGULAR)
142                    hec = BitstreamGetBit(bs);              /* header_extension_code */
143    
144    
145            DPRINTF(XVID_DEBUG_HEADER, "header_extension_code %i\n", hec);
146            if (hec)
147            {
148                    int time_base;
149                    int time_increment;
150                    int coding_type;
151    
152                    for (time_base=0; BitstreamGetBit(bs)!=0; time_base++);         /* modulo_time_base */
153                    READ_MARKER();
154                    if (dec->time_inc_bits)
155                            time_increment = (BitstreamGetBits(bs, dec->time_inc_bits));    /* vop_time_increment */
156                    READ_MARKER();
157                    DPRINTF(XVID_DEBUG_HEADER,"time %i:%i\n", time_base, time_increment);
158    
159                    coding_type = BitstreamGetBits(bs, 2);
160                    DPRINTF(XVID_DEBUG_HEADER,"coding_type %i\n", coding_type);
161    
162                    if (dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR)
163                    {
164                            BitstreamSkip(bs, 1);   /* change_conv_ratio_disable */
165                            if (coding_type != I_VOP)
166                                    BitstreamSkip(bs, 1);   /* vop_shape_coding_type */
167                    }
168    
169          DPRINTF(DPRINTF_STARTCODE, "<video_packet_header>");                  if (dec->shape != VIDOBJLAY_SHAPE_BINARY_ONLY)
170                    {
171                            *intra_dc_threshold = intra_dc_threshold_table[BitstreamGetBits(bs, 3)];
172    
173                            if (dec->sprite_enable == SPRITE_GMC && coding_type == S_VOP &&
174                                    dec->sprite_warping_points > 0)
175                            {
176                                    /* TODO: sprite trajectory */
177                            }
178                            if (dec->reduced_resolution_enable &&
179                                    dec->shape == VIDOBJLAY_SHAPE_RECTANGULAR &&
180                                    (coding_type == P_VOP || coding_type == I_VOP))
181                            {
182                                    BitstreamSkip(bs, 1); /* XXX: vop_reduced_resolution */
183                            }
184    
185                            if (coding_type != I_VOP && fcode_forward)
186                            {
187                                    *fcode_forward = BitstreamGetBits(bs, 3);
188                                    DPRINTF(XVID_DEBUG_HEADER,"fcode_forward %i\n", *fcode_forward);
189                            }
190    
191                            if (coding_type == B_VOP && fcode_backward)
192                            {
193                                    *fcode_backward = BitstreamGetBits(bs, 3);
194                                    DPRINTF(XVID_DEBUG_HEADER,"fcode_backward %i\n", *fcode_backward);
195                            }
196                    }
197            }
198    
199            if (dec->newpred_enable)
200            {
201                    int vop_id;
202                    int vop_id_for_prediction;
203    
204          // if (dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR) {                  vop_id = BitstreamGetBits(bs, MIN(dec->time_inc_bits + 3, 15));
205                  // hec                  DPRINTF(XVID_DEBUG_HEADER, "vop_id %i\n", vop_id);
206                  // vop_width                  if (BitstreamGetBit(bs))        /* vop_id_for_prediction_indication */
207                  // marker_bit                  {
208                  // vop_height                          vop_id_for_prediction = BitstreamGetBits(bs, MIN(dec->time_inc_bits + 3, 15));
209                  // marker_bit                          DPRINTF(XVID_DEBUG_HEADER, "vop_id_for_prediction %i\n", vop_id_for_prediction);
210                    }
211          //}                  READ_MARKER();
212            }
         mbnum = BitstreamGetBits(bs, 9);  
         DPRINTF(DPRINTF_HEADER, "mbnum %i", mbnum);  
   
         // if (dec->shape != VIDOBJLAY_SHAPE_BINARYONLY)  
         *quant = BitstreamGetBits(bs, 5);  
         DPRINTF(DPRINTF_HEADER, "quant %i", *quant);  
   
         // if (dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR)  
         hec = BitstreamGetBit(bs);  
         DPRINTF(DPRINTF_HEADER, "header_extension_code %i", hec);  
         // if (hec)  
         //   .. decoder hec-header ...  
213    
214          return mbnum;          return mbnum;
215  }  }
216    
217    
218    
219    
220    /* vol estimation header */
221    static void
222    read_vol_complexity_estimation_header(Bitstream * bs, DECODER * dec)
223    {
224            ESTIMATION * e = &dec->estimation;
225    
226            e->method = BitstreamGetBits(bs, 2);    /* estimation_method */
227            DPRINTF(XVID_DEBUG_HEADER,"+ complexity_estimation_header; method=%i\n", e->method);
228    
229            if (e->method == 0 || e->method == 1)
230            {
231                    if (!BitstreamGetBit(bs))               /* shape_complexity_estimation_disable */
232                    {
233                            e->opaque = BitstreamGetBit(bs);                /* opaque */
234                            e->transparent = BitstreamGetBit(bs);           /* transparent */
235                            e->intra_cae = BitstreamGetBit(bs);             /* intra_cae */
236                            e->inter_cae = BitstreamGetBit(bs);             /* inter_cae */
237                            e->no_update = BitstreamGetBit(bs);             /* no_update */
238                            e->upsampling = BitstreamGetBit(bs);            /* upsampling */
239                    }
240    
241                    if (!BitstreamGetBit(bs))       /* texture_complexity_estimation_set_1_disable */
242                    {
243                            e->intra_blocks = BitstreamGetBit(bs);          /* intra_blocks */
244                            e->inter_blocks = BitstreamGetBit(bs);          /* inter_blocks */
245                            e->inter4v_blocks = BitstreamGetBit(bs);                /* inter4v_blocks */
246                            e->not_coded_blocks = BitstreamGetBit(bs);              /* not_coded_blocks */
247                    }
248            }
249    
250            READ_MARKER();
251    
252            if (!BitstreamGetBit(bs))               /* texture_complexity_estimation_set_2_disable */
253            {
254                    e->dct_coefs = BitstreamGetBit(bs);             /* dct_coefs */
255                    e->dct_lines = BitstreamGetBit(bs);             /* dct_lines */
256                    e->vlc_symbols = BitstreamGetBit(bs);           /* vlc_symbols */
257                    e->vlc_bits = BitstreamGetBit(bs);              /* vlc_bits */
258            }
259    
260            if (!BitstreamGetBit(bs))               /* motion_compensation_complexity_disable */
261            {
262                    e->apm = BitstreamGetBit(bs);           /* apm */
263                    e->npm = BitstreamGetBit(bs);           /* npm */
264                    e->interpolate_mc_q = BitstreamGetBit(bs);              /* interpolate_mc_q */
265                    e->forw_back_mc_q = BitstreamGetBit(bs);                /* forw_back_mc_q */
266                    e->halfpel2 = BitstreamGetBit(bs);              /* halfpel2 */
267                    e->halfpel4 = BitstreamGetBit(bs);              /* halfpel4 */
268            }
269    
270            READ_MARKER();
271    
272            if (e->method == 1)
273            {
274                    if (!BitstreamGetBit(bs))       /* version2_complexity_estimation_disable */
275                    {
276                            e->sadct = BitstreamGetBit(bs);         /* sadct */
277                            e->quarterpel = BitstreamGetBit(bs);            /* quarterpel */
278                    }
279            }
280    }
281    
282    
283    /* vop estimation header */
284    static void
285    read_vop_complexity_estimation_header(Bitstream * bs, DECODER * dec, int coding_type)
286    {
287            ESTIMATION * e = &dec->estimation;
288    
289            if (e->method == 0 || e->method == 1)
290            {
291                    if (coding_type == I_VOP) {
292                            if (e->opaque)          BitstreamSkip(bs, 8);   /* dcecs_opaque */
293                            if (e->transparent) BitstreamSkip(bs, 8);       /* */
294                            if (e->intra_cae)       BitstreamSkip(bs, 8);   /* */
295                            if (e->inter_cae)       BitstreamSkip(bs, 8);   /* */
296                            if (e->no_update)       BitstreamSkip(bs, 8);   /* */
297                            if (e->upsampling)      BitstreamSkip(bs, 8);   /* */
298                            if (e->intra_blocks) BitstreamSkip(bs, 8);      /* */
299                            if (e->not_coded_blocks) BitstreamSkip(bs, 8);  /* */
300                            if (e->dct_coefs)       BitstreamSkip(bs, 8);   /* */
301                            if (e->dct_lines)       BitstreamSkip(bs, 8);   /* */
302                            if (e->vlc_symbols) BitstreamSkip(bs, 8);       /* */
303                            if (e->vlc_bits)        BitstreamSkip(bs, 8);   /* */
304                            if (e->sadct)           BitstreamSkip(bs, 8);   /* */
305                    }
306    
307                    if (coding_type == P_VOP) {
308                            if (e->opaque) BitstreamSkip(bs, 8);            /* */
309                            if (e->transparent) BitstreamSkip(bs, 8);       /* */
310                            if (e->intra_cae)       BitstreamSkip(bs, 8);   /* */
311                            if (e->inter_cae)       BitstreamSkip(bs, 8);   /* */
312                            if (e->no_update)       BitstreamSkip(bs, 8);   /* */
313                            if (e->upsampling) BitstreamSkip(bs, 8);        /* */
314                            if (e->intra_blocks) BitstreamSkip(bs, 8);      /* */
315                            if (e->not_coded_blocks)        BitstreamSkip(bs, 8);   /* */
316                            if (e->dct_coefs)       BitstreamSkip(bs, 8);   /* */
317                            if (e->dct_lines)       BitstreamSkip(bs, 8);   /* */
318                            if (e->vlc_symbols) BitstreamSkip(bs, 8);       /* */
319                            if (e->vlc_bits)        BitstreamSkip(bs, 8);   /* */
320                            if (e->inter_blocks) BitstreamSkip(bs, 8);      /* */
321                            if (e->inter4v_blocks) BitstreamSkip(bs, 8);    /* */
322                            if (e->apm)                     BitstreamSkip(bs, 8);   /* */
323                            if (e->npm)                     BitstreamSkip(bs, 8);   /* */
324                            if (e->forw_back_mc_q) BitstreamSkip(bs, 8);    /* */
325                            if (e->halfpel2)        BitstreamSkip(bs, 8);   /* */
326                            if (e->halfpel4)        BitstreamSkip(bs, 8);   /* */
327                            if (e->sadct)           BitstreamSkip(bs, 8);   /* */
328                            if (e->quarterpel)      BitstreamSkip(bs, 8);   /* */
329                    }
330                    if (coding_type == B_VOP) {
331                            if (e->opaque)          BitstreamSkip(bs, 8);   /* */
332                            if (e->transparent)     BitstreamSkip(bs, 8);   /* */
333                            if (e->intra_cae)       BitstreamSkip(bs, 8);   /* */
334                            if (e->inter_cae)       BitstreamSkip(bs, 8);   /* */
335                            if (e->no_update)       BitstreamSkip(bs, 8);   /* */
336                            if (e->upsampling)      BitstreamSkip(bs, 8);   /* */
337                            if (e->intra_blocks) BitstreamSkip(bs, 8);      /* */
338                            if (e->not_coded_blocks) BitstreamSkip(bs, 8);  /* */
339                            if (e->dct_coefs)       BitstreamSkip(bs, 8);   /* */
340                            if (e->dct_lines)       BitstreamSkip(bs, 8);   /* */
341                            if (e->vlc_symbols)     BitstreamSkip(bs, 8);   /* */
342                            if (e->vlc_bits)        BitstreamSkip(bs, 8);   /* */
343                            if (e->inter_blocks) BitstreamSkip(bs, 8);      /* */
344                            if (e->inter4v_blocks) BitstreamSkip(bs, 8);    /* */
345                            if (e->apm)                     BitstreamSkip(bs, 8);   /* */
346                            if (e->npm)                     BitstreamSkip(bs, 8);   /* */
347                            if (e->forw_back_mc_q) BitstreamSkip(bs, 8);    /* */
348                            if (e->halfpel2)        BitstreamSkip(bs, 8);   /* */
349                            if (e->halfpel4)        BitstreamSkip(bs, 8);   /* */
350                            if (e->interpolate_mc_q) BitstreamSkip(bs, 8);  /* */
351                            if (e->sadct)           BitstreamSkip(bs, 8);   /* */
352                            if (e->quarterpel)      BitstreamSkip(bs, 8);   /* */
353                    }
354    
355                    if (coding_type == S_VOP && dec->sprite_enable == SPRITE_STATIC) {
356                            if (e->intra_blocks) BitstreamSkip(bs, 8);      /* */
357                            if (e->not_coded_blocks) BitstreamSkip(bs, 8);  /* */
358                            if (e->dct_coefs)       BitstreamSkip(bs, 8);   /* */
359                            if (e->dct_lines)       BitstreamSkip(bs, 8);   /* */
360                            if (e->vlc_symbols)     BitstreamSkip(bs, 8);   /* */
361                            if (e->vlc_bits)        BitstreamSkip(bs, 8);   /* */
362                            if (e->inter_blocks) BitstreamSkip(bs, 8);      /* */
363                            if (e->inter4v_blocks)  BitstreamSkip(bs, 8);   /* */
364                            if (e->apm)                     BitstreamSkip(bs, 8);   /* */
365                            if (e->npm)                     BitstreamSkip(bs, 8);   /* */
366                            if (e->forw_back_mc_q)  BitstreamSkip(bs, 8);   /* */
367                            if (e->halfpel2)        BitstreamSkip(bs, 8);   /* */
368                            if (e->halfpel4)        BitstreamSkip(bs, 8);   /* */
369                            if (e->interpolate_mc_q) BitstreamSkip(bs, 8);  /* */
370                    }
371            }
372    }
373    
374    
375    
376    
377    
378  /*  /*
379  decode headers  decode headers
380  returns coding_type, or -1 if error  returns coding_type, or -1 if error
# Line 154  Line 390 
390                                           uint32_t * quant,                                           uint32_t * quant,
391                                           uint32_t * fcode_forward,                                           uint32_t * fcode_forward,
392                                           uint32_t * fcode_backward,                                           uint32_t * fcode_backward,
393                                           uint32_t * intra_dc_threshold)                                           uint32_t * intra_dc_threshold,
394                                             WARPPOINTS *gmc_warp)
395  {  {
396          uint32_t vol_ver_id;          uint32_t vol_ver_id;
         static uint32_t time_increment_resolution;  
397          uint32_t coding_type;          uint32_t coding_type;
398          uint32_t start_code;          uint32_t start_code;
399          uint32_t time_incr = 0;          uint32_t time_incr = 0;
400          int32_t time_increment;          int32_t time_increment = 0;
401            int resize = 0;
402    
403            while ((BitstreamPos(bs) >> 3) + 4 <= bs->length) {
404    
         do {  
405                  BitstreamByteAlign(bs);                  BitstreamByteAlign(bs);
406                  start_code = BitstreamShowBits(bs, 32);                  start_code = BitstreamShowBits(bs, 32);
407    
# Line 171  Line 409 
409    
410                          int profile;                          int profile;
411    
412                          DPRINTF(DPRINTF_STARTCODE, "<visual_object_sequence>");                          DPRINTF(XVID_DEBUG_STARTCODE, "<visual_object_sequence>\n");
413    
414                          BitstreamSkip(bs, 32);  // visual_object_sequence_start_code                          BitstreamSkip(bs, 32);  /* visual_object_sequence_start_code */
415                          profile = BitstreamGetBits(bs, 8);      // profile_and_level_indication                          profile = BitstreamGetBits(bs, 8);      /* profile_and_level_indication */
416    
417                          DPRINTF(DPRINTF_HEADER, "profile_and_level_indication %i", profile);                          DPRINTF(XVID_DEBUG_HEADER, "profile_and_level_indication %i\n", profile);
418    
419                  } else if (start_code == VISOBJSEQ_STOP_CODE) {                  } else if (start_code == VISOBJSEQ_STOP_CODE) {
420    
421                          BitstreamSkip(bs, 32);  // visual_object_sequence_stop_code                          BitstreamSkip(bs, 32);  /* visual_object_sequence_stop_code */
422    
423                          DPRINTF(DPRINTF_STARTCODE, "</visual_object_sequence>");                          DPRINTF(XVID_DEBUG_STARTCODE, "</visual_object_sequence>\n");
424    
425                  } else if (start_code == VISOBJ_START_CODE) {                  } else if (start_code == VISOBJ_START_CODE) {
426    
427                          DPRINTF(DPRINTF_STARTCODE, "<visual_object>");                          DPRINTF(XVID_DEBUG_STARTCODE, "<visual_object>\n");
428    
429                          BitstreamSkip(bs, 32);  // visual_object_start_code                          BitstreamSkip(bs, 32);  /* visual_object_start_code */
430                          if (BitstreamGetBit(bs))        // is_visual_object_identified                          if (BitstreamGetBit(bs))        /* is_visual_object_identified */
431                          {                          {
432                                  vol_ver_id = BitstreamGetBits(bs, 4);   // visual_object_ver_id                                  dec->ver_id = BitstreamGetBits(bs, 4);  /* visual_object_ver_id */
433                                  DPRINTF(DPRINTF_HEADER,"ver_id %i", vol_ver_id);                                  DPRINTF(XVID_DEBUG_HEADER,"visobj_ver_id %i\n", dec->ver_id);
434                                  BitstreamSkip(bs, 3);   // visual_object_priority                                  BitstreamSkip(bs, 3);   /* visual_object_priority */
435                          } else {                          } else {
436                                  vol_ver_id = 1;                                  dec->ver_id = 1;
437                          }                          }
438    
439                          if (BitstreamShowBits(bs, 4) != VISOBJ_TYPE_VIDEO)      // visual_object_type                          if (BitstreamShowBits(bs, 4) != VISOBJ_TYPE_VIDEO)      /* visual_object_type */
440                          {                          {
441                                  DPRINTF(DPRINTF_ERROR, "visual_object_type != video");                                  DPRINTF(XVID_DEBUG_ERROR, "visual_object_type != video\n");
442                                  return -1;                                  return -1;
443                          }                          }
444                          BitstreamSkip(bs, 4);                          BitstreamSkip(bs, 4);
445    
446                          // video_signal_type                          /* video_signal_type */
447    
448                          if (BitstreamGetBit(bs))        // video_signal_type                          if (BitstreamGetBit(bs))        /* video_signal_type */
449                          {                          {
450                                  DPRINTF(DPRINTF_HEADER,"+ video_signal_type");                                  DPRINTF(XVID_DEBUG_HEADER,"+ video_signal_type\n");
451                                  BitstreamSkip(bs, 3);   // video_format                                  BitstreamSkip(bs, 3);   /* video_format */
452                                  BitstreamSkip(bs, 1);   // video_range                                  BitstreamSkip(bs, 1);   /* video_range */
453                                  if (BitstreamGetBit(bs))        // color_description                                  if (BitstreamGetBit(bs))        /* color_description */
454                                  {                                  {
455                                          DPRINTF(DPRINTF_HEADER,"+ color_description");                                          DPRINTF(XVID_DEBUG_HEADER,"+ color_description");
456                                          BitstreamSkip(bs, 8);   // color_primaries                                          BitstreamSkip(bs, 8);   /* color_primaries */
457                                          BitstreamSkip(bs, 8);   // transfer_characteristics                                          BitstreamSkip(bs, 8);   /* transfer_characteristics */
458                                          BitstreamSkip(bs, 8);   // matrix_coefficients                                          BitstreamSkip(bs, 8);   /* matrix_coefficients */
459                                  }                                  }
460                          }                          }
461                  } else if ((start_code & ~VIDOBJ_START_CODE_MASK) == VIDOBJ_START_CODE) {                  } else if ((start_code & ~VIDOBJ_START_CODE_MASK) == VIDOBJ_START_CODE) {
462    
463                          DPRINTF(DPRINTF_STARTCODE, "<video_object>");                          DPRINTF(XVID_DEBUG_STARTCODE, "<video_object>\n");
464                          DPRINTF(DPRINTF_HEADER, "vo id %i", start_code & VIDOBJ_START_CODE_MASK);                          DPRINTF(XVID_DEBUG_HEADER, "vo id %i\n", start_code & VIDOBJ_START_CODE_MASK);
465    
466                          BitstreamSkip(bs, 32);  // video_object_start_code                          BitstreamSkip(bs, 32);  /* video_object_start_code */
467    
468                  } else if ((start_code & ~VIDOBJLAY_START_CODE_MASK) == VIDOBJLAY_START_CODE) {                  } else if ((start_code & ~VIDOBJLAY_START_CODE_MASK) == VIDOBJLAY_START_CODE) {
469    
470                          DPRINTF(DPRINTF_STARTCODE, "<video_object_layer>");                          DPRINTF(XVID_DEBUG_STARTCODE, "<video_object_layer>\n");
471                          DPRINTF(DPRINTF_HEADER, "vol id %i", start_code & VIDOBJLAY_START_CODE_MASK);                          DPRINTF(XVID_DEBUG_HEADER, "vol id %i\n", start_code & VIDOBJLAY_START_CODE_MASK);
   
                         BitstreamSkip(bs, 32);  // video_object_layer_start_code  
   
                         BitstreamSkip(bs, 1);   // random_accessible_vol  
472    
473                          // video_object_type_indication                          BitstreamSkip(bs, 32);  /* video_object_layer_start_code */
474                          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                          BitstreamSkip(bs, 1);   /* random_accessible_vol */
                         {  
                                 DPRINTF(DPRINTF_ERROR,"video_object_type_indication %i not supported ",  
                                         BitstreamShowBits(bs, 8));  
                                 return -1;  
                         }  
                         BitstreamSkip(bs, 8);  
475    
476                BitstreamSkip(bs, 8);   /* video_object_type_indication */
477    
478                          if (BitstreamGetBit(bs))        // is_object_layer_identifier                          if (BitstreamGetBit(bs))        /* is_object_layer_identifier */
479                          {                          {
480                                  DPRINTF(DPRINTF_HEADER, "+ is_object_layer_identifier");                                  DPRINTF(XVID_DEBUG_HEADER, "+ is_object_layer_identifier\n");
481                                  vol_ver_id = BitstreamGetBits(bs, 4);   // video_object_layer_verid                                  vol_ver_id = BitstreamGetBits(bs, 4);   /* video_object_layer_verid */
482                                  DPRINTF(DPRINTF_HEADER,"ver_id %i", vol_ver_id);                                  DPRINTF(XVID_DEBUG_HEADER,"ver_id %i\n", vol_ver_id);
483                                  BitstreamSkip(bs, 3);   // video_object_layer_priority                                  BitstreamSkip(bs, 3);   /* video_object_layer_priority */
484                          } else {                          } else {
485                                  vol_ver_id = 1;                                  vol_ver_id = dec->ver_id;
486                          }                          }
487    
488                          if (BitstreamGetBits(bs, 4) == VIDOBJLAY_AR_EXTPAR)     // aspect_ratio_info                          dec->aspect_ratio = BitstreamGetBits(bs, 4);
489    
490                            if (dec->aspect_ratio == VIDOBJLAY_AR_EXTPAR)   /* aspect_ratio_info */
491                          {                          {
492                                  DPRINTF(DPRINTF_HEADER, "+ aspect_ratio_info");                                  DPRINTF(XVID_DEBUG_HEADER, "+ aspect_ratio_info\n");
493                                  BitstreamSkip(bs, 8);   // par_width                                  dec->par_width = BitstreamGetBits(bs, 8);       /* par_width */
494                                  BitstreamSkip(bs, 8);   // par_height                                  dec->par_height = BitstreamGetBits(bs, 8);      /* par_height */
495                          }                          }
496    
497                          if (BitstreamGetBit(bs))        // vol_control_parameters                          if (BitstreamGetBit(bs))        /* vol_control_parameters */
498                          {                          {
499                                  DPRINTF(DPRINTF_HEADER, "+ vol_control_parameters");                                  DPRINTF(XVID_DEBUG_HEADER, "+ vol_control_parameters\n");
500                                  BitstreamSkip(bs, 2);   // chroma_format                                  BitstreamSkip(bs, 2);   /* chroma_format */
501                                  dec->low_delay = BitstreamGetBit(bs);   // low_delay                                  dec->low_delay = BitstreamGetBit(bs);   /* low_delay */
502                                  DPRINTF(DPRINTF_HEADER, "low_delay %i", dec->low_delay);                                  DPRINTF(XVID_DEBUG_HEADER, "low_delay %i\n", dec->low_delay);
503                                  if (BitstreamGetBit(bs))        // vbv_parameters                                  if (BitstreamGetBit(bs))        /* vbv_parameters */
504                                  {                                  {
505                                          DPRINTF(DPRINTF_HEADER,"+ vbv_parameters");                                          unsigned int bitrate;
506                                          BitstreamSkip(bs, 15);  // first_half_bitrate                                          unsigned int buffer_size;
507                                            unsigned int occupancy;
508    
509                                            DPRINTF(XVID_DEBUG_HEADER,"+ vbv_parameters\n");
510    
511                                            bitrate = BitstreamGetBits(bs,15) << 15;        /* first_half_bit_rate */
512                                          READ_MARKER();                                          READ_MARKER();
513                                          BitstreamSkip(bs, 15);  // latter_half_bitrate                                          bitrate |= BitstreamGetBits(bs,15);             /* latter_half_bit_rate */
514                                          READ_MARKER();                                          READ_MARKER();
515                                          BitstreamSkip(bs, 15);  // first_half_vbv_buffer_size  
516                                            buffer_size = BitstreamGetBits(bs, 15) << 3;    /* first_half_vbv_buffer_size */
517                                          READ_MARKER();                                          READ_MARKER();
518                                          BitstreamSkip(bs, 3);   // latter_half_vbv_buffer_size                                          buffer_size |= BitstreamGetBits(bs, 3);         /* latter_half_vbv_buffer_size */
519                                          BitstreamSkip(bs, 11);  // first_half_vbv_occupancy  
520                                            occupancy = BitstreamGetBits(bs, 11) << 15;     /* first_half_vbv_occupancy */
521                                          READ_MARKER();                                          READ_MARKER();
522                                          BitstreamSkip(bs, 15);  // latter_half_vbv_occupancy                                          occupancy |= BitstreamGetBits(bs, 15);  /* latter_half_vbv_occupancy */
523                                          READ_MARKER();                                          READ_MARKER();
524    
525                                            DPRINTF(XVID_DEBUG_HEADER,"bitrate %d (unit=400 bps)\n", bitrate);
526                                            DPRINTF(XVID_DEBUG_HEADER,"buffer_size %d (unit=16384 bits)\n", buffer_size);
527                                            DPRINTF(XVID_DEBUG_HEADER,"occupancy %d (unit=64 bits)\n", occupancy);
528                                  }                                  }
529                            }else{
530                                    dec->low_delay = dec->low_delay_default;
531                          }                          }
532    
533                          dec->shape = BitstreamGetBits(bs, 2);   // video_object_layer_shape                          dec->shape = BitstreamGetBits(bs, 2);   /* video_object_layer_shape */
534                          DPRINTF(DPRINTF_HEADER, "shape %i", dec->shape);  
535                            DPRINTF(XVID_DEBUG_HEADER, "shape %i\n", dec->shape);
536                            if (dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR)
537                            {
538                                    DPRINTF(XVID_DEBUG_ERROR,"non-rectangular shapes are not supported\n");
539                            }
540    
541                          if (dec->shape == VIDOBJLAY_SHAPE_GRAYSCALE && vol_ver_id != 1) {                          if (dec->shape == VIDOBJLAY_SHAPE_GRAYSCALE && vol_ver_id != 1) {
542                                  BitstreamSkip(bs, 4);   // video_object_layer_shape_extension                                  BitstreamSkip(bs, 4);   /* video_object_layer_shape_extension */
543                          }                          }
544    
545                          READ_MARKER();                          READ_MARKER();
546    
547  // *************************** for decode B-frame time ***********************                          /********************** for decode B-frame time ***********************/
548                          time_increment_resolution = BitstreamGetBits(bs, 16);   // vop_time_increment_resolution                          dec->time_inc_resolution = BitstreamGetBits(bs, 16);    /* vop_time_increment_resolution */
549                            DPRINTF(XVID_DEBUG_HEADER,"vop_time_increment_resolution %i\n", dec->time_inc_resolution);
                         DPRINTF(DPRINTF_HEADER,"vop_time_increment_resolution %i", time_increment_resolution);  
   
 //                      time_increment_resolution--;  
550    
551                          if (time_increment_resolution > 0) {                          if (dec->time_inc_resolution > 0) {
552                                  dec->time_inc_bits = log2bin(time_increment_resolution-1);                                  dec->time_inc_bits = MAX(log2bin(dec->time_inc_resolution-1), 1);
553                          } else {                          } else {
554                                  // dec->time_inc_bits = 0;                                  /* for "old" xvid compatibility, set time_inc_bits = 1 */
                                 // for "old" xvid compatibility, set time_inc_bits = 1  
555                                  dec->time_inc_bits = 1;                                  dec->time_inc_bits = 1;
556                          }                          }
557    
558                          READ_MARKER();                          READ_MARKER();
559    
560                          if (BitstreamGetBit(bs))        // fixed_vop_rate                          if (BitstreamGetBit(bs))        /* fixed_vop_rate */
561                          {                          {
562                                  DPRINTF(DPRINTF_HEADER, "+ fixed_vop_rate");                                  DPRINTF(XVID_DEBUG_HEADER, "+ fixed_vop_rate\n");
563                                  BitstreamSkip(bs, dec->time_inc_bits);  // fixed_vop_time_increment                                  BitstreamSkip(bs, dec->time_inc_bits);  /* fixed_vop_time_increment */
564                          }                          }
565    
566                          if (dec->shape != VIDOBJLAY_SHAPE_BINARY_ONLY) {                          if (dec->shape != VIDOBJLAY_SHAPE_BINARY_ONLY) {
# Line 325  Line 569 
569                                          uint32_t width, height;                                          uint32_t width, height;
570    
571                                          READ_MARKER();                                          READ_MARKER();
572                                          width = BitstreamGetBits(bs, 13);       // video_object_layer_width                                          width = BitstreamGetBits(bs, 13);       /* video_object_layer_width */
573                                          READ_MARKER();                                          READ_MARKER();
574                                          height = BitstreamGetBits(bs, 13);      // video_object_layer_height                                          height = BitstreamGetBits(bs, 13);      /* video_object_layer_height */
575                                          READ_MARKER();                                          READ_MARKER();
576    
577                                          DPRINTF(DPRINTF_HEADER, "width %i", width);                                          DPRINTF(XVID_DEBUG_HEADER, "width %i\n", width);
578                                          DPRINTF(DPRINTF_HEADER, "height %i", height);                                          DPRINTF(XVID_DEBUG_HEADER, "height %i\n", height);
579    
580                                          // for auto set width & height                                          if (dec->width != width || dec->height != height)
581                                          if (dec->width == 0)                                          {
582                                                    if (dec->fixed_dimensions)
583                                                    {
584                                                            DPRINTF(XVID_DEBUG_ERROR, "decoder width/height does not match bitstream\n");
585                                                            return -1;
586                                                    }
587                                                    resize = 1;
588                                                  dec->width = width;                                                  dec->width = width;
                                         if (dec->height == 0)  
589                                                  dec->height = height;                                                  dec->height = height;
   
                                         if (width != dec->width || height != dec->height) {  
                                                 DPRINTF(DPRINTF_ERROR, "XVID_DEC_PARAM width/height does not match bitstream");  
                                                 return -1;  
590                                          }                                          }
   
591                                  }                                  }
592    
593                                  dec->interlacing = BitstreamGetBit(bs);                                  dec->interlacing = BitstreamGetBit(bs);
594                                  DPRINTF(DPRINTF_HEADER, "interlace", dec->interlacing);                                  DPRINTF(XVID_DEBUG_HEADER, "interlacing %i\n", dec->interlacing);
595    
596                                  if (!BitstreamGetBit(bs))       // obmc_disable                                  if (!BitstreamGetBit(bs))       /* obmc_disable */
597                                  {                                  {
598                                          DPRINTF(DPRINTF_ERROR, "obmc_disabled==false not supported");                                          DPRINTF(XVID_DEBUG_ERROR, "obmc_disabled==false not supported\n");
599                                          // TODO                                          /* TODO */
600                                          // fucking divx4.02 has this enabled                                          /* fucking divx4.02 has this enabled */
601                                  }                                  }
602    
603                                  if (BitstreamGetBits(bs, (vol_ver_id == 1 ? 1 : 2)))    // sprite_enable                                  dec->sprite_enable = BitstreamGetBits(bs, (vol_ver_id == 1 ? 1 : 2));   /* sprite_enable */
604    
605                                    if (dec->sprite_enable == SPRITE_STATIC || dec->sprite_enable == SPRITE_GMC)
606                                  {                                  {
607                                          DPRINTF(DPRINTF_ERROR, "spriate_enabled not supported");                                          int low_latency_sprite_enable;
608                                          return -1;  
609                                            if (dec->sprite_enable != SPRITE_GMC)
610                                            {
611                                                    int sprite_width;
612                                                    int sprite_height;
613                                                    int sprite_left_coord;
614                                                    int sprite_top_coord;
615                                                    sprite_width = BitstreamGetBits(bs, 13);                /* sprite_width */
616                                                    READ_MARKER();
617                                                    sprite_height = BitstreamGetBits(bs, 13);       /* sprite_height */
618                                                    READ_MARKER();
619                                                    sprite_left_coord = BitstreamGetBits(bs, 13);   /* sprite_left_coordinate */
620                                                    READ_MARKER();
621                                                    sprite_top_coord = BitstreamGetBits(bs, 13);    /* sprite_top_coordinate */
622                                                    READ_MARKER();
623                                            }
624                                            dec->sprite_warping_points = BitstreamGetBits(bs, 6);           /* no_of_sprite_warping_points */
625                                            dec->sprite_warping_accuracy = BitstreamGetBits(bs, 2);         /* sprite_warping_accuracy */
626                                            dec->sprite_brightness_change = BitstreamGetBits(bs, 1);                /* brightness_change */
627                                            if (dec->sprite_enable != SPRITE_GMC)
628                                            {
629                                                    low_latency_sprite_enable = BitstreamGetBits(bs, 1);            /* low_latency_sprite_enable */
630                                            }
631                                  }                                  }
632    
633                                  if (vol_ver_id != 1 &&                                  if (vol_ver_id != 1 &&
634                                          dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR) {                                          dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR) {
635                                          BitstreamSkip(bs, 1);   // sadct_disable                                          BitstreamSkip(bs, 1);   /* sadct_disable */
636                                  }                                  }
637    
638                                  if (BitstreamGetBit(bs))        // not_8_bit                                  if (BitstreamGetBit(bs))        /* not_8_bit */
639                                  {                                  {
640                                          DPRINTF(DPRINTF_HEADER, "not_8_bit==true (ignored)");                                          DPRINTF(XVID_DEBUG_HEADER, "not_8_bit==true (ignored)\n");
641                                          dec->quant_bits = BitstreamGetBits(bs, 4);      // quant_precision                                          dec->quant_bits = BitstreamGetBits(bs, 4);      /* quant_precision */
642                                          BitstreamSkip(bs, 4);   // bits_per_pixel                                          BitstreamSkip(bs, 4);   /* bits_per_pixel */
643                                  } else {                                  } else {
644                                          dec->quant_bits = 5;                                          dec->quant_bits = 5;
645                                  }                                  }
646    
647                                  if (dec->shape == VIDOBJLAY_SHAPE_GRAYSCALE) {                                  if (dec->shape == VIDOBJLAY_SHAPE_GRAYSCALE) {
648                                          BitstreamSkip(bs, 1);   // no_gray_quant_update                                          BitstreamSkip(bs, 1);   /* no_gray_quant_update */
649                                          BitstreamSkip(bs, 1);   // composition_method                                          BitstreamSkip(bs, 1);   /* composition_method */
650                                          BitstreamSkip(bs, 1);   // linear_composition                                          BitstreamSkip(bs, 1);   /* linear_composition */
651                                  }                                  }
652    
653                                  dec->quant_type = BitstreamGetBit(bs);  // quant_type                                  dec->quant_type = BitstreamGetBit(bs);  /* quant_type */
654                                  DPRINTF(DPRINTF_HEADER, "quant_type %i", dec->quant_type);                                  DPRINTF(XVID_DEBUG_HEADER, "quant_type %i\n", dec->quant_type);
655    
656                                  if (dec->quant_type) {                                  if (dec->quant_type) {
657                                          if (BitstreamGetBit(bs))        // load_intra_quant_mat                                          if (BitstreamGetBit(bs))        /* load_intra_quant_mat */
658                                          {                                          {
659                                                  uint8_t matrix[64];                                                  uint8_t matrix[64];
660    
661                                                  DPRINTF(DPRINTF_HEADER, "load_intra_quant_mat");                                                  DPRINTF(XVID_DEBUG_HEADER, "load_intra_quant_mat\n");
662    
663                                                  bs_get_matrix(bs, matrix);                                                  bs_get_matrix(bs, matrix);
664                                                  set_intra_matrix(matrix);                                                  set_intra_matrix(dec->mpeg_quant_matrices, matrix);
665                                          } else                                          } else
666                                                  set_intra_matrix(get_default_intra_matrix());                                                  set_intra_matrix(dec->mpeg_quant_matrices, get_default_intra_matrix());
667    
668                                          if (BitstreamGetBit(bs))        // load_inter_quant_mat                                          if (BitstreamGetBit(bs))        /* load_inter_quant_mat */
669                                          {                                          {
670                                                  uint8_t matrix[64];                                                  uint8_t matrix[64];
671    
672                                                  DPRINTF(DPRINTF_HEADER, "load_inter_quant_mat");                                                  DPRINTF(XVID_DEBUG_HEADER, "load_inter_quant_mat\n");
673    
674                                                  bs_get_matrix(bs, matrix);                                                  bs_get_matrix(bs, matrix);
675                                                  set_inter_matrix(matrix);                                                  set_inter_matrix(dec->mpeg_quant_matrices, matrix);
676                                          } else                                          } else
677                                                  set_inter_matrix(get_default_inter_matrix());                                                  set_inter_matrix(dec->mpeg_quant_matrices, get_default_inter_matrix());
678    
679                                          if (dec->shape == VIDOBJLAY_SHAPE_GRAYSCALE) {                                          if (dec->shape == VIDOBJLAY_SHAPE_GRAYSCALE) {
680                                                  DPRINTF(DPRINTF_ERROR, "greyscale matrix not supported");                                                  DPRINTF(XVID_DEBUG_ERROR, "greyscale matrix not supported\n");
681                                                  return -1;                                                  return -1;
682                                          }                                          }
683    
# Line 417  Line 685 
685    
686    
687                                  if (vol_ver_id != 1) {                                  if (vol_ver_id != 1) {
688                                          DEBUG("QUARTERPEL BITSTREAM");                                          dec->quarterpel = BitstreamGetBit(bs);  /* quarter_sample */
689                                          dec->quarterpel = BitstreamGetBit(bs);  // quarter_sample                                          DPRINTF(XVID_DEBUG_HEADER,"quarterpel %i\n", dec->quarterpel);
690                                  }                                  }
691                                  else                                  else
692                                          dec->quarterpel = 0;                                          dec->quarterpel = 0;
693    
694    
695                                  if (!BitstreamGetBit(bs))       // complexity_estimation_disable                                  dec->complexity_estimation_disable = BitstreamGetBit(bs);       /* complexity estimation disable */
696                                    if (!dec->complexity_estimation_disable)
697                                  {                                  {
698                                          DPRINTF(DPRINTF_ERROR, "complexity_estimation not supported");                                          read_vol_complexity_estimation_header(bs, dec);
                                         return -1;  
699                                  }                                  }
700    
701                                  BitstreamSkip(bs, 1);   // resync_marker_disable                                  BitstreamSkip(bs, 1);   /* resync_marker_disable */
702    
703                                  if (BitstreamGetBit(bs))        // data_partitioned                                  if (BitstreamGetBit(bs))        /* data_partitioned */
704                                  {                                  {
705                                          DPRINTF(DPRINTF_ERROR, "data_partitioned not supported");                                          DPRINTF(XVID_DEBUG_ERROR, "data_partitioned not supported\n");
706                                          BitstreamSkip(bs, 1);   // reversible_vlc                                          BitstreamSkip(bs, 1);   /* reversible_vlc */
707                                  }                                  }
708    
709                                  if (vol_ver_id != 1) {                                  if (vol_ver_id != 1) {
710                                          if (BitstreamGetBit(bs))        // newpred_enable                                          dec->newpred_enable = BitstreamGetBit(bs);
711                                            if (dec->newpred_enable)        /* newpred_enable */
712                                          {                                          {
713                                                  DPRINTF(DPRINTF_HEADER, "+ newpred_enable");                                                  DPRINTF(XVID_DEBUG_HEADER, "+ newpred_enable\n");
714                                                  BitstreamSkip(bs, 2);   // requested_upstream_message_type                                                  BitstreamSkip(bs, 2);   /* requested_upstream_message_type */
715                                                  BitstreamSkip(bs, 1);   // newpred_segment_type                                                  BitstreamSkip(bs, 1);   /* newpred_segment_type */
716                                          }                                          }
717                                          if (BitstreamGetBit(bs))        // reduced_resolution_vop_enable                                          dec->reduced_resolution_enable = BitstreamGetBit(bs);   /* reduced_resolution_vop_enable */
718                                          {                                          DPRINTF(XVID_DEBUG_HEADER, "reduced_resolution_enable %i\n", dec->reduced_resolution_enable);
                                                 DPRINTF(DPRINTF_ERROR, "reduced_resolution_vop not supported");  
                                                 return -1;  
719                                          }                                          }
720                                    else
721                                    {
722                                            dec->newpred_enable = 0;
723                                            dec->reduced_resolution_enable = 0;
724                                  }                                  }
725    
726                                  if ((dec->scalability = BitstreamGetBit(bs)))   // scalability                                  dec->scalability = BitstreamGetBit(bs); /* scalability */
727                                    if (dec->scalability)
728                                  {                                  {
729                                          DPRINTF(DPRINTF_ERROR, "scalability not supported");                                          DPRINTF(XVID_DEBUG_ERROR, "scalability not supported\n");
730                                            BitstreamSkip(bs, 1);   /* hierarchy_type */
731                                            BitstreamSkip(bs, 4);   /* ref_layer_id */
732                                            BitstreamSkip(bs, 1);   /* ref_layer_sampling_direc */
733                                            BitstreamSkip(bs, 5);   /* hor_sampling_factor_n */
734                                            BitstreamSkip(bs, 5);   /* hor_sampling_factor_m */
735                                            BitstreamSkip(bs, 5);   /* vert_sampling_factor_n */
736                                            BitstreamSkip(bs, 5);   /* vert_sampling_factor_m */
737                                            BitstreamSkip(bs, 1);   /* enhancement_type */
738                                            if(dec->shape == VIDOBJLAY_SHAPE_BINARY /* && hierarchy_type==0 */) {
739                                                    BitstreamSkip(bs, 1);   /* use_ref_shape */
740                                                    BitstreamSkip(bs, 1);   /* use_ref_texture */
741                                                    BitstreamSkip(bs, 5);   /* shape_hor_sampling_factor_n */
742                                                    BitstreamSkip(bs, 5);   /* shape_hor_sampling_factor_m */
743                                                    BitstreamSkip(bs, 5);   /* shape_vert_sampling_factor_n */
744                                                    BitstreamSkip(bs, 5);   /* shape_vert_sampling_factor_m */
745                                            }
746                                          return -1;                                          return -1;
747                                  }                                  }
748                          } else                          // dec->shape == BINARY_ONLY                          } else                          /* dec->shape == BINARY_ONLY */
749                          {                          {
750                                  if (vol_ver_id != 1) {                                  if (vol_ver_id != 1) {
751                                          if (BitstreamGetBit(bs))        // scalability                                          dec->scalability = BitstreamGetBit(bs); /* scalability */
752                                            if (dec->scalability)
753                                          {                                          {
754                                          DPRINTF(DPRINTF_ERROR, "scalability not supported");                                                  DPRINTF(XVID_DEBUG_ERROR, "scalability not supported\n");
755                                                    BitstreamSkip(bs, 4);   /* ref_layer_id */
756                                                    BitstreamSkip(bs, 5);   /* hor_sampling_factor_n */
757                                                    BitstreamSkip(bs, 5);   /* hor_sampling_factor_m */
758                                                    BitstreamSkip(bs, 5);   /* vert_sampling_factor_n */
759                                                    BitstreamSkip(bs, 5);   /* vert_sampling_factor_m */
760                                                  return -1;                                                  return -1;
761                                          }                                          }
762                                  }                                  }
763                                  BitstreamSkip(bs, 1);   // resync_marker_disable                                  BitstreamSkip(bs, 1);   /* resync_marker_disable */
764    
765                          }                          }
766    
767                            return (resize ? -3 : -2 );     /* VOL */
768    
769                  } else if (start_code == GRPOFVOP_START_CODE) {                  } else if (start_code == GRPOFVOP_START_CODE) {
770    
771                          DPRINTF(DPRINTF_STARTCODE, "<group_of_vop>");                          DPRINTF(XVID_DEBUG_STARTCODE, "<group_of_vop>\n");
772    
773                          BitstreamSkip(bs, 32);                          BitstreamSkip(bs, 32);
774                          {                          {
# Line 483  Line 779 
779                                  READ_MARKER();                                  READ_MARKER();
780                                  seconds = BitstreamGetBits(bs, 6);                                  seconds = BitstreamGetBits(bs, 6);
781    
782                                  DPRINTF(DPRINTF_HEADER, "time %ih%im%is", hours);                                  DPRINTF(XVID_DEBUG_HEADER, "time %ih%im%is\n", hours,minutes,seconds);
783                          }                          }
784                          BitstreamSkip(bs, 1);   // closed_gov                          BitstreamSkip(bs, 1);   /* closed_gov */
785                          BitstreamSkip(bs, 1);   // broken_link                          BitstreamSkip(bs, 1);   /* broken_link */
786    
787                  } else if (start_code == VOP_START_CODE) {                  } else if (start_code == VOP_START_CODE) {
788    
789                          DPRINTF(DPRINTF_STARTCODE, "<vop>");                          DPRINTF(XVID_DEBUG_STARTCODE, "<vop>\n");
790    
791                          BitstreamSkip(bs, 32);  // vop_start_code                          BitstreamSkip(bs, 32);  /* vop_start_code */
792    
793                          coding_type = BitstreamGetBits(bs, 2);  // vop_coding_type                          coding_type = BitstreamGetBits(bs, 2);  /* vop_coding_type */
794                          DPRINTF(DPRINTF_HEADER, "coding_type %i", coding_type);                          DPRINTF(XVID_DEBUG_HEADER, "coding_type %i\n", coding_type);
795    
796  // *************************** for decode B-frame time ***********************                          /*********************** for decode B-frame time ***********************/
797                          while (BitstreamGetBit(bs) != 0)        // time_base                          while (BitstreamGetBit(bs) != 0)        /* time_base */
798                                  time_incr++;                                  time_incr++;
799    
800                          READ_MARKER();                          READ_MARKER();
801    
802                          if (dec->time_inc_bits) {                          if (dec->time_inc_bits) {
803                                  time_increment = (BitstreamGetBits(bs, dec->time_inc_bits));    // vop_time_increment                                  time_increment = (BitstreamGetBits(bs, dec->time_inc_bits));    /* vop_time_increment */
804                          }                          }
805    
806                          DPRINTF(DPRINTF_HEADER, "time_base %i", time_incr);                          DPRINTF(XVID_DEBUG_HEADER, "time_base %i\n", time_incr);
807                          DPRINTF(DPRINTF_HEADER, "time_increment %i", time_increment);                          DPRINTF(XVID_DEBUG_HEADER, "time_increment %i\n", time_increment);
808    
809                          DPRINTF(DPRINTF_TIMECODE, "%c %i:%i",                          DPRINTF(XVID_DEBUG_TIMECODE, "%c %i:%i\n",
810                                  coding_type == I_VOP ? 'I' : coding_type == P_VOP ? 'P' : 'B',                                  coding_type == I_VOP ? 'I' : coding_type == P_VOP ? 'P' : coding_type == B_VOP ? 'B' : 'S',
811                                  time_incr, time_increment);                                  time_incr, time_increment);
812    
813                          if (coding_type != B_VOP) {                          if (coding_type != B_VOP) {
814                                  dec->last_time_base = dec->time_base;                                  dec->last_time_base = dec->time_base;
815                                  dec->time_base += time_incr;                                  dec->time_base += time_incr;
816                                  dec->time = time_increment;                                  dec->time = dec->time_base*dec->time_inc_resolution + time_increment;
817                                    dec->time_pp = (int32_t)(dec->time - dec->last_non_b_time);
 /*                                      dec->time_base * time_increment_resolution +  
                                         time_increment;  
 */                              dec->time_pp = (uint32_t)  
                                         (time_increment_resolution + dec->time - dec->last_non_b_time)%time_increment_resolution;  
818                                  dec->last_non_b_time = dec->time;                                  dec->last_non_b_time = dec->time;
819                          } else {                          } else {
820                                  dec->time = time_increment;                  dec->time = (dec->last_time_base + time_incr)*dec->time_inc_resolution + time_increment;
821  /*                                  dec->time_bp = dec->time_pp - (int32_t)(dec->last_non_b_time - dec->time);
                                         (dec->last_time_base +  
                                          time_incr) * time_increment_resolution + time_increment;  
 */  
                                 dec->time_bp = (uint32_t)  
                                         (time_increment_resolution + dec->last_non_b_time - dec->time)%time_increment_resolution;  
822                          }                          }
823                if (dec->time_pp <= 0) dec->time_pp = 1;
824                            DPRINTF(XVID_DEBUG_HEADER,"time_pp=%i\n", dec->time_pp);
825                            DPRINTF(XVID_DEBUG_HEADER,"time_bp=%i\n", dec->time_bp);
826    
827                          READ_MARKER();                          READ_MARKER();
828    
829                          if (!BitstreamGetBit(bs))       // vop_coded                          if (!BitstreamGetBit(bs))       /* vop_coded */
830                          {                          {
831                                  DPRINTF(DPRINTF_HEADER, "vop_coded==false");                                  DPRINTF(XVID_DEBUG_HEADER, "vop_coded==false\n");
832                                  return N_VOP;                                  return N_VOP;
833                          }                          }
834    
835                          /* if (newpred_enable)                          if (dec->newpred_enable)
836                            {
837                                    int vop_id;
838                                    int vop_id_for_prediction;
839    
840                                    vop_id = BitstreamGetBits(bs, MIN(dec->time_inc_bits + 3, 15));
841                                    DPRINTF(XVID_DEBUG_HEADER, "vop_id %i\n", vop_id);
842                                    if (BitstreamGetBit(bs))        /* vop_id_for_prediction_indication */
843                             {                             {
844                                            vop_id_for_prediction = BitstreamGetBits(bs, MIN(dec->time_inc_bits + 3, 15));
845                                            DPRINTF(XVID_DEBUG_HEADER, "vop_id_for_prediction %i\n", vop_id_for_prediction);
846                             }                             }
847                           */                                  READ_MARKER();
848                            }
849    
850    
851    
852                          // fix a little bug by MinChen <chenm002@163.com>                          /* fix a little bug by MinChen <chenm002@163.com> */
853                          if ((dec->shape != VIDOBJLAY_SHAPE_BINARY_ONLY) &&                          if ((dec->shape != VIDOBJLAY_SHAPE_BINARY_ONLY) &&
854                                  (coding_type == P_VOP)) {                                  ( (coding_type == P_VOP) || (coding_type == S_VOP && dec->sprite_enable == SPRITE_GMC) ) ) {
855                                  *rounding = BitstreamGetBit(bs);        // rounding_type                                  *rounding = BitstreamGetBit(bs);        /* rounding_type */
856                                  DPRINTF(DPRINTF_HEADER, "rounding %i", *rounding);                                  DPRINTF(XVID_DEBUG_HEADER, "rounding %i\n", *rounding);
857                          }                          }
858    
859                          /* if (reduced_resolution_enable)                          if (dec->reduced_resolution_enable &&
860                             {                                  dec->shape == VIDOBJLAY_SHAPE_RECTANGULAR &&
861                                    (coding_type == P_VOP || coding_type == I_VOP)) {
862    
863                                    if (BitstreamGetBit(bs)) {
864                                            DPRINTF(XVID_DEBUG_ERROR, "RRV not supported (anymore)\n");
865                                    }
866                             }                             }
                          */  
867    
868                          if (dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR) {                          if (dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR) {
869                                    if(!(dec->sprite_enable == SPRITE_STATIC && coding_type == I_VOP)) {
870    
871                                  uint32_t width, height;                                  uint32_t width, height;
872                                  uint32_t horiz_mc_ref, vert_mc_ref;                                  uint32_t horiz_mc_ref, vert_mc_ref;
873    
# Line 572  Line 880 
880                                  vert_mc_ref = BitstreamGetBits(bs, 13);                                  vert_mc_ref = BitstreamGetBits(bs, 13);
881                                  READ_MARKER();                                  READ_MARKER();
882    
883                                  DPRINTF(DPRINTF_HEADER, "width %i", width);                                          DPRINTF(XVID_DEBUG_HEADER, "width %i\n", width);
884                                  DPRINTF(DPRINTF_HEADER, "height %i", height);                                          DPRINTF(XVID_DEBUG_HEADER, "height %i\n", height);
885                                  DPRINTF(DPRINTF_HEADER, "horiz_mc_ref %i", horiz_mc_ref);                                          DPRINTF(XVID_DEBUG_HEADER, "horiz_mc_ref %i\n", horiz_mc_ref);
886                                  DPRINTF(DPRINTF_HEADER, "vert_mc_ref %i", vert_mc_ref);                                          DPRINTF(XVID_DEBUG_HEADER, "vert_mc_ref %i\n", vert_mc_ref);
887                                    }
888    
889                                  BitstreamSkip(bs, 1);   // change_conv_ratio_disable                                  BitstreamSkip(bs, 1);   /* change_conv_ratio_disable */
890                                  if (BitstreamGetBit(bs))        // vop_constant_alpha                                  if (BitstreamGetBit(bs))        /* vop_constant_alpha */
891                                  {                                  {
892                                          BitstreamSkip(bs, 8);   // vop_constant_alpha_value                                          BitstreamSkip(bs, 8);   /* vop_constant_alpha_value */
893                                  }                                  }
894                          }                          }
895    
   
896                          if (dec->shape != VIDOBJLAY_SHAPE_BINARY_ONLY) {                          if (dec->shape != VIDOBJLAY_SHAPE_BINARY_ONLY) {
897                                  // intra_dc_vlc_threshold  
898                                    if (!dec->complexity_estimation_disable)
899                                    {
900                                            read_vop_complexity_estimation_header(bs, dec, coding_type);
901                                    }
902    
903                                    /* intra_dc_vlc_threshold */
904                                  *intra_dc_threshold =                                  *intra_dc_threshold =
905                                          intra_dc_threshold_table[BitstreamGetBits(bs, 3)];                                          intra_dc_threshold_table[BitstreamGetBits(bs, 3)];
906    
907                                    dec->top_field_first = 0;
908                                    dec->alternate_vertical_scan = 0;
909    
910                                  if (dec->interlacing) {                                  if (dec->interlacing) {
911                                          dec->top_field_first = BitstreamGetBit(bs);                                          dec->top_field_first = BitstreamGetBit(bs);
912                                          DPRINTF(DPRINTF_HEADER, "interlace top_field_first %i", dec->top_field_first);                                          DPRINTF(XVID_DEBUG_HEADER, "interlace top_field_first %i\n", dec->top_field_first);
913                                          dec->alternate_vertical_scan = BitstreamGetBit(bs);                                          dec->alternate_vertical_scan = BitstreamGetBit(bs);
914                                          DPRINTF(DPRINTF_HEADER, "interlace alternate_vertical_scan %i", dec->alternate_vertical_scan);                                          DPRINTF(XVID_DEBUG_HEADER, "interlace alternate_vertical_scan %i\n", dec->alternate_vertical_scan);
915    
916                                  }                                  }
917                          }                          }
918    
919                          if ((*quant = BitstreamGetBits(bs, dec->quant_bits)) < 1)       // vop_quant                          if ((dec->sprite_enable == SPRITE_STATIC || dec->sprite_enable== SPRITE_GMC) && coding_type == S_VOP) {
920                                  *quant = 1;  
921                                    int i;
922    
923                                    for (i = 0 ; i < dec->sprite_warping_points; i++)
924                                    {
925                                            int length;
926                                            int x = 0, y = 0;
927    
928                                            /* sprite code borowed from ffmpeg; thx Michael Niedermayer <michaelni@gmx.at> */
929                                            length = bs_get_spritetrajectory(bs);
930                                            if(length){
931                                                    x= BitstreamGetBits(bs, length);
932                                                    if ((x >> (length - 1)) == 0) /* if MSB not set it is negative*/
933                                                            x = - (x ^ ((1 << length) - 1));
934                                            }
935                                            READ_MARKER();
936    
937                                            length = bs_get_spritetrajectory(bs);
938                                            if(length){
939                                                    y = BitstreamGetBits(bs, length);
940                                                    if ((y >> (length - 1)) == 0) /* if MSB not set it is negative*/
941                                                            y = - (y ^ ((1 << length) - 1));
942                                            }
943                                            READ_MARKER();
944    
945                                            gmc_warp->duv[i].x = x;
946                                            gmc_warp->duv[i].y = y;
947    
948                                            DPRINTF(XVID_DEBUG_HEADER,"sprite_warping_point[%i] xy=(%i,%i)\n", i, x, y);
949                                    }
950    
951                          DPRINTF(DPRINTF_HEADER, "quant %i", *quant);                                  if (dec->sprite_brightness_change)
952                                    {
953                                            /* XXX: brightness_change_factor() */
954                                    }
955                                    if (dec->sprite_enable == SPRITE_STATIC)
956                                    {
957                                            /* XXX: todo */
958                                    }
959    
960                            }
961    
962                            if ((*quant = BitstreamGetBits(bs, dec->quant_bits)) < 1)       /* vop_quant */
963                                    *quant = 1;
964                            DPRINTF(XVID_DEBUG_HEADER, "quant %i\n", *quant);
965    
966                          if (coding_type != I_VOP) {                          if (coding_type != I_VOP) {
967                                  *fcode_forward = BitstreamGetBits(bs, 3);       // fcode_forward                                  *fcode_forward = BitstreamGetBits(bs, 3);       /* fcode_forward */
968                                  DPRINTF(DPRINTF_HEADER, "fcode_forward %i", *fcode_forward);                                  DPRINTF(XVID_DEBUG_HEADER, "fcode_forward %i\n", *fcode_forward);
969                          }                          }
970    
971                          if (coding_type == B_VOP) {                          if (coding_type == B_VOP) {
972                                  *fcode_backward = BitstreamGetBits(bs, 3);      // fcode_backward                                  *fcode_backward = BitstreamGetBits(bs, 3);      /* fcode_backward */
973                                  DPRINTF(DPRINTF_HEADER, "fcode_backward %i", *fcode_backward);                                  DPRINTF(XVID_DEBUG_HEADER, "fcode_backward %i\n", *fcode_backward);
974                          }                          }
975                          if (!dec->scalability) {                          if (!dec->scalability) {
976                                  if ((dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR) &&                                  if ((dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR) &&
977                                          (coding_type != I_VOP)) {                                          (coding_type != I_VOP)) {
978                                          BitstreamSkip(bs, 1);   // vop_shape_coding_type                                          BitstreamSkip(bs, 1);   /* vop_shape_coding_type */
979                                  }                                  }
980                          }                          }
981                          return coding_type;                          return coding_type;
982    
983                  } else if (start_code == USERDATA_START_CODE) {                  } else if (start_code == USERDATA_START_CODE) {
984                            char tmp[256];
985                        int i, version, build;
986                            char packed;
987    
988                            BitstreamSkip(bs, 32);  /* user_data_start_code */
989    
990                            memset(tmp, 0, 256);
991                            tmp[0] = BitstreamShowBits(bs, 8);
992    
993                            for(i = 1; i < 256; i++){
994                                    tmp[i] = (BitstreamShowBits(bs, 16) & 0xFF);
995    
996                                    if(tmp[i] == 0)
997                                            break;
998    
999                                    BitstreamSkip(bs, 8);
1000                            }
1001    
1002                            DPRINTF(XVID_DEBUG_STARTCODE, "<user_data>: %s\n", tmp);
1003    
1004                            /* read xvid bitstream version */
1005                            if(strncmp(tmp, "XviD", 4) == 0) {
1006                                    if (tmp[strlen(tmp)-1] == 'C') {
1007                                            sscanf(tmp, "XviD%dC", &dec->bs_version);
1008                                            dec->cartoon_mode = 1;
1009                                    }
1010                                    else
1011                                            sscanf(tmp, "XviD%d", &dec->bs_version);
1012    
1013                                    DPRINTF(XVID_DEBUG_HEADER, "xvid bitstream version=%i\n", dec->bs_version);
1014                            }
1015    
1016                          DPRINTF(DPRINTF_STARTCODE, "<user_data>");                      /* divx detection */
1017                            i = sscanf(tmp, "DivX%dBuild%d%c", &version, &build, &packed);
1018                            if (i < 2)
1019                                    i = sscanf(tmp, "DivX%db%d%c", &version, &build, &packed);
1020    
1021                          BitstreamSkip(bs, 32);  // user_data_start_code                          if (i >= 2)
1022                            {
1023                                    dec->packed_mode = (i == 3 && packed == 'p');
1024                                    DPRINTF(XVID_DEBUG_HEADER, "divx version=%i, build=%i packed=%i\n",
1025                                                    version, build, dec->packed_mode);
1026                            }
1027    
1028                            if ((dec->bs_version == 0) && (build > 0) &&
1029                                    (build != 1393)) { /* non-xvid stream with xvid fourcc */
1030                                    dec->bs_version = 0xffff;
1031                            }
1032    
1033                  } else                                  // start_code == ?                  } else                                  /* start_code == ? */
1034                  {                  {
1035                          if (BitstreamShowBits(bs, 24) == 0x000001) {                          if (BitstreamShowBits(bs, 24) == 0x000001) {
1036                                  DPRINTF(DPRINTF_STARTCODE, "<unknown: %x>", BitstreamShowBits(bs, 32));                                  DPRINTF(XVID_DEBUG_STARTCODE, "<unknown: %x>\n", BitstreamShowBits(bs, 32));
1037                          }                          }
1038                          BitstreamSkip(bs, 8);                          BitstreamSkip(bs, 8);
1039                  }                  }
1040          }          }
         while ((BitstreamPos(bs) >> 3) < bs->length);  
1041    
1042          //DPRINTF("*** WARNING: no vop_start_code found");  #if 0
1043            DPRINTF("*** WARNING: no vop_start_code found");
1044    #endif
1045          return -1;                                      /* ignore it */          return -1;                                      /* ignore it */
1046  }  }
1047    
# Line 646  Line 1050 
1050    
1051  static void  static void
1052  bs_put_matrix(Bitstream * bs,  bs_put_matrix(Bitstream * bs,
1053                            const int16_t * matrix)                            const uint16_t * matrix)
1054  {  {
1055          int i, j;          int i, j;
1056          const int last = matrix[scan_tables[0][63]];          const int last = matrix[scan_tables[0][63]];
# Line 669  Line 1073 
1073  void  void
1074  BitstreamWriteVolHeader(Bitstream * const bs,  BitstreamWriteVolHeader(Bitstream * const bs,
1075                                                  const MBParam * pParam,                                                  const MBParam * pParam,
1076                                                  const FRAMEINFO * frame)                                                  const FRAMEINFO * const frame,
1077                                                    const int num_slices)
1078  {  {
1079          // video object_start_code & vo_id          static const unsigned int vo_id = 0;
1080            static const unsigned int vol_id = 0;
1081            int vol_ver_id = 1;
1082            int vol_type_ind = VIDOBJLAY_TYPE_SIMPLE;
1083            int vol_profile = pParam->profile;
1084    
1085            if ( (pParam->vol_flags & XVID_VOL_QUARTERPEL) ||
1086             (pParam->vol_flags & XVID_VOL_GMC))
1087                    vol_ver_id = 2;
1088    
1089        if ((pParam->vol_flags & (XVID_VOL_MPEGQUANT|XVID_VOL_QUARTERPEL|XVID_VOL_GMC|XVID_VOL_INTERLACING)) ||
1090             pParam->max_bframes>0) {
1091            vol_type_ind = VIDOBJLAY_TYPE_ASP;
1092        }
1093    
1094            /* visual_object_sequence_start_code */
1095    #if 0
1096            BitstreamPad(bs);
1097    #endif
1098    
1099            /*
1100             * no padding here, anymore. You have to make sure that you are
1101             * byte aligned, and that always 1-8 padding bits have been written
1102             */
1103    
1104        if (!vol_profile) {
1105                    /* Profile was not set by client app, use the more permissive profile
1106                     * compatible with the vol_type_id */
1107                    switch(vol_type_ind) {
1108                    case VIDOBJLAY_TYPE_ASP:
1109                            vol_profile = 0xf5; /* ASP level 5 */
1110                            break;
1111                    case VIDOBJLAY_TYPE_ART_SIMPLE:
1112                            vol_profile = 0x94; /* ARTS level 4 */
1113                            break;
1114                    default:
1115                            vol_profile = 0x03; /* Simple level 3 */
1116                            break;
1117                    }
1118            }
1119    
1120            /* Write the VOS header */
1121            BitstreamPutBits(bs, VISOBJSEQ_START_CODE, 32);
1122            BitstreamPutBits(bs, vol_profile, 8);   /* profile_and_level_indication */
1123    
1124    
1125            /* visual_object_start_code */
1126            BitstreamPad(bs);
1127            BitstreamPutBits(bs, VISOBJ_START_CODE, 32);
1128            BitstreamPutBits(bs, 0, 1);             /* is_visual_object_identifier */
1129    
1130            /* Video type */
1131            BitstreamPutBits(bs, VISOBJ_TYPE_VIDEO, 4);             /* visual_object_type */
1132            BitstreamPutBit(bs, 0); /* video_signal_type */
1133    
1134            /* video object_start_code & vo_id */
1135            BitstreamPadAlways(bs); /* next_start_code() */
1136            BitstreamPutBits(bs, VIDOBJ_START_CODE|(vo_id&0x5), 32);
1137    
1138            /* video_object_layer_start_code & vol_id */
1139          BitstreamPad(bs);          BitstreamPad(bs);
1140          BitstreamPutBits(bs, VO_START_CODE, 27);          BitstreamPutBits(bs, VIDOBJLAY_START_CODE|(vol_id&0x4), 32);
1141          BitstreamPutBits(bs, 0, 5);  
1142            BitstreamPutBit(bs, 0);         /* random_accessible_vol */
1143            BitstreamPutBits(bs, vol_type_ind, 8);  /* video_object_type_indication */
1144    
1145            if (vol_ver_id == 1) {
1146                    BitstreamPutBit(bs, 0);                         /* is_object_layer_identified (0=not given) */
1147            } else {
1148                    BitstreamPutBit(bs, 1);         /* is_object_layer_identified */
1149                    BitstreamPutBits(bs, vol_ver_id, 4);    /* vol_ver_id == 2 */
1150                    BitstreamPutBits(bs, 4, 3); /* vol_ver_priority (1==highest, 7==lowest) */
1151            }
1152    
1153          // video_object_layer_start_code & vol_id          /* Aspect ratio */
1154          BitstreamPutBits(bs, VOL_START_CODE, 28);          BitstreamPutBits(bs, pParam->par, 4); /* aspect_ratio_info (1=1:1) */
1155          BitstreamPutBits(bs, 0, 4);          if(pParam->par == XVID_PAR_EXT) {
1156                    BitstreamPutBits(bs, pParam->par_width, 8);
1157          BitstreamPutBit(bs, 0);         // random_accessible_vol                  BitstreamPutBits(bs, pParam->par_height, 8);
1158          BitstreamPutBits(bs, 0, 8);     // video_object_type_indication          }
         BitstreamPutBit(bs, 0);         // is_object_layer_identified (0=not given)  
         BitstreamPutBits(bs, 1, 4);     // aspect_ratio_info (1=1:1)  
1159    
1160          BitstreamPutBit(bs, 1); // vol_control_parameters          BitstreamPutBit(bs, 1); /* vol_control_parameters */
1161          BitstreamPutBits(bs, 1, 2);     // chroma_format 1="4:2:0"          BitstreamPutBits(bs, 1, 2);     /* chroma_format 1="4:2:0" */
1162    
 #ifdef BFRAMES  
1163          if (pParam->max_bframes > 0) {          if (pParam->max_bframes > 0) {
1164                  BitstreamPutBit(bs, 0); // low_delay                  BitstreamPutBit(bs, 0); /* low_delay */
1165          } else          } else
 #endif  
1166          {          {
1167                  BitstreamPutBit(bs, 1); // low_delay                  BitstreamPutBit(bs, 1); /* low_delay */
1168          }          }
1169          BitstreamPutBit(bs, 0); // vbv_parameters (0=not given)          BitstreamPutBit(bs, 0); /* vbv_parameters (0=not given) */
1170    
1171          BitstreamPutBits(bs, 0, 2);     // video_object_layer_shape (0=rectangular)          BitstreamPutBits(bs, 0, 2);     /* video_object_layer_shape (0=rectangular) */
1172    
1173          WRITE_MARKER();          WRITE_MARKER();
1174    
1175          /* time_increment_resolution; ignored by current decore versions          /*
1176             eg. 2fps     res=2       inc=1           * time_inc_resolution; ignored by current decore versions
1177             25fps        res=25      inc=1           * eg. 2fps     res=2       inc=1
1178             29.97fps res=30000   inc=1001           *     25fps    res=25      inc=1
1179             *     29.97fps res=30000   inc=1001
1180           */           */
 #ifdef BFRAMES  
         BitstreamPutBits(bs, pParam->fbase, 16);  
 #else  
1181          BitstreamPutBits(bs, pParam->fbase, 16);          BitstreamPutBits(bs, pParam->fbase, 16);
 #endif  
1182    
1183          WRITE_MARKER();          WRITE_MARKER();
1184    
1185  #ifdef BFRAMES      if (pParam->fincr>0) {
1186          BitstreamPutBit(bs, 1);         // fixed_vop_rate = 1                  BitstreamPutBit(bs, 1);         /* fixed_vop_rate = 1 */
1187          BitstreamPutBits(bs, pParam->fincr, log2bin(pParam->fbase));    // fixed_vop_time_increment                  BitstreamPutBits(bs, pParam->fincr, MAX(log2bin(pParam->fbase-1),1));   /* fixed_vop_time_increment */
1188  #else      }else{
1189          BitstreamPutBit(bs, 1);         // fixed_vop_rate = 1          BitstreamPutBit(bs, 0);         /* fixed_vop_rate = 0 */
1190          BitstreamPutBits(bs, pParam->fincr, log2bin(pParam->fbase));    // fixed_vop_time_increment      }
 #endif  
1191    
1192          WRITE_MARKER();          WRITE_MARKER();
1193          BitstreamPutBits(bs, pParam->width, 13);        // width          BitstreamPutBits(bs, pParam->width, 13);        /* width */
1194          WRITE_MARKER();          WRITE_MARKER();
1195          BitstreamPutBits(bs, pParam->height, 13);       // height          BitstreamPutBits(bs, pParam->height, 13);       /* height */
1196          WRITE_MARKER();          WRITE_MARKER();
1197    
1198          BitstreamPutBit(bs, frame->global_flags & XVID_INTERLACING);    // interlace          BitstreamPutBit(bs, pParam->vol_flags & XVID_VOL_INTERLACING);  /* interlace */
1199          BitstreamPutBit(bs, 1);         // obmc_disable (overlapped block motion compensation)          BitstreamPutBit(bs, 1);         /* obmc_disable (overlapped block motion compensation) */
1200          BitstreamPutBit(bs, 0);         // sprite_enable  
1201          BitstreamPutBit(bs, 0);         // not_in_bit          if (vol_ver_id != 1)
1202            {       if ((pParam->vol_flags & XVID_VOL_GMC))
1203                    {       BitstreamPutBits(bs, 2, 2);             /* sprite_enable=='GMC' */
1204                            BitstreamPutBits(bs, 3, 6);             /* no_of_sprite_warping_points */
1205                            BitstreamPutBits(bs, 3, 2);             /* sprite_warping_accuracy 0==1/2, 1=1/4, 2=1/8, 3=1/16 */
1206                            BitstreamPutBit(bs, 0);                 /* sprite_brightness_change (not supported) */
1207    
1208                            /*
1209                             * currently we use no_of_sprite_warping_points==2, sprite_warping_accuracy==3
1210                             * for DivX5 compatability
1211                             */
1212    
1213                    } else
1214                            BitstreamPutBits(bs, 0, 2);             /* sprite_enable==off */
1215            }
1216            else
1217                    BitstreamPutBit(bs, 0);         /* sprite_enable==off */
1218    
1219            BitstreamPutBit(bs, 0);         /* not_8_bit */
1220    
1221            /* quant_type   0=h.263  1=mpeg4(quantizer tables) */
1222            BitstreamPutBit(bs, pParam->vol_flags & XVID_VOL_MPEGQUANT);
1223    
1224            if ((pParam->vol_flags & XVID_VOL_MPEGQUANT)) {
1225                    BitstreamPutBit(bs, is_custom_intra_matrix(pParam->mpeg_quant_matrices));       /* load_intra_quant_mat */
1226                    if(is_custom_intra_matrix(pParam->mpeg_quant_matrices))
1227                            bs_put_matrix(bs, get_intra_matrix(pParam->mpeg_quant_matrices));
1228    
1229          // quant_type   0=h.263  1=mpeg4(quantizer tables)                  BitstreamPutBit(bs, is_custom_inter_matrix(pParam->mpeg_quant_matrices));       /* load_inter_quant_mat */
1230          BitstreamPutBit(bs, pParam->m_quant_type);                  if(is_custom_inter_matrix(pParam->mpeg_quant_matrices))
1231                            bs_put_matrix(bs, get_inter_matrix(pParam->mpeg_quant_matrices));
1232            }
1233    
1234          if (pParam->m_quant_type) {          if (vol_ver_id != 1) {
1235                  BitstreamPutBit(bs, get_intra_matrix_status()); // load_intra_quant_mat                  if ((pParam->vol_flags & XVID_VOL_QUARTERPEL))
1236                  if (get_intra_matrix_status()) {                          BitstreamPutBit(bs, 1);         /* quarterpel  */
1237                          bs_put_matrix(bs, get_intra_matrix());                  else
1238                            BitstreamPutBit(bs, 0);         /* no quarterpel */
1239                  }                  }
1240    
1241                  BitstreamPutBit(bs, get_inter_matrix_status()); // load_inter_quant_mat          BitstreamPutBit(bs, 1);         /* complexity_estimation_disable */
1242                  if (get_inter_matrix_status()) {  
1243                          bs_put_matrix(bs, get_inter_matrix());          if (num_slices > 1)
1244                    BitstreamPutBit(bs, 0);         /* resync_marker_enabled */
1245            else
1246                    BitstreamPutBit(bs, 1);         /* resync_marker_disabled */
1247    
1248            BitstreamPutBit(bs, 0);         /* data_partitioned */
1249    
1250            if (vol_ver_id != 1) {
1251                    BitstreamPutBit(bs, 0);         /* newpred_enable */
1252                    BitstreamPutBit(bs, 0);         /* reduced_resolution_vop_enabled */
1253                  }                  }
1254    
1255            BitstreamPutBit(bs, 0);         /* scalability */
1256    
1257            BitstreamPadAlways(bs); /* next_start_code(); */
1258    
1259            /* divx5 userdata string */
1260    #define DIVX5_ID ((char *)"DivX503b1393")
1261      if ((pParam->global_flags & XVID_GLOBAL_DIVX5_USERDATA)) {
1262        BitstreamWriteUserData(bs, DIVX5_ID, (uint32_t)strlen(DIVX5_ID));
1263            if (pParam->max_bframes > 0 && (pParam->global_flags & XVID_GLOBAL_PACKED))
1264          BitstreamPutBits(bs, 'p', 8);
1265          }          }
1266    
1267          BitstreamPutBit(bs, 1);         // complexity_estimation_disable          /* xvid id */
1268          BitstreamPutBit(bs, 1);         // resync_marker_disable          {
1269          BitstreamPutBit(bs, 0);         // data_partitioned                  const char xvid_user_format[] = "XviD%04d%c";
1270          BitstreamPutBit(bs, 0);         // scalability                  char xvid_user_data[100];
1271                    sprintf(xvid_user_data,
1272                                    xvid_user_format,
1273                                    XVID_BS_VERSION,
1274                                    (frame->vop_flags & XVID_VOP_CARTOON)?'C':'\0');
1275                    BitstreamWriteUserData(bs, xvid_user_data, (uint32_t)strlen(xvid_user_data));
1276            }
1277  }  }
1278    
1279    
1280  /*  /*
1281    write vop header    write vop header
   
   NOTE: doesnt handle bother with time_base & time_inc  
   time_base = n seconds since last resync (eg. last iframe)  
   time_inc = nth of a second since last resync  
   (decoder uses these values to determine precise time since last resync)  
1282  */  */
1283  void  void
1284  BitstreamWriteVopHeader(Bitstream * const bs,  BitstreamWriteVopHeader(
1285                                                    Bitstream * const bs,
1286                                                  const MBParam * pParam,                                                  const MBParam * pParam,
1287                                                  const FRAMEINFO * frame,                                                  const FRAMEINFO * const frame,
1288                                                  int vop_coded)                                                  int vop_coded,
1289                                                    unsigned int quant)
1290  {  {
1291          uint32_t i;          uint32_t i;
1292    
1293    #if 0
1294          BitstreamPad(bs);          BitstreamPad(bs);
1295    #endif
1296    
1297            /*
1298             * no padding here, anymore. You have to make sure that you are
1299             * byte aligned, and that always 1-8 padding bits have been written
1300             */
1301    
1302          BitstreamPutBits(bs, VOP_START_CODE, 32);          BitstreamPutBits(bs, VOP_START_CODE, 32);
1303    
1304          BitstreamPutBits(bs, frame->coding_type, 2);          BitstreamPutBits(bs, frame->coding_type, 2);
1305    #if 0
1306            DPRINTF(XVID_DEBUG_HEADER, "coding_type = %i\n", frame->coding_type);
1307    #endif
1308    
         // time_base = 0  write n x PutBit(1), PutBit(0)  
 #ifdef BFRAMES  
         for (i = 0; i < frame->seconds; i++) {  
                 BitstreamPutBit(bs, 1);  
         }  
         BitstreamPutBit(bs, 0);  
 #else  
1309          for (i = 0; i < frame->seconds; i++) {          for (i = 0; i < frame->seconds; i++) {
1310                  BitstreamPutBit(bs, 1);                  BitstreamPutBit(bs, 1);
1311          }          }
1312          BitstreamPutBit(bs, 0);          BitstreamPutBit(bs, 0);
 //      BitstreamPutBits(bs, 0, 1);  
 #endif  
1313    
1314          WRITE_MARKER();          WRITE_MARKER();
1315    
1316          // time_increment: value=nth_of_sec, nbits = log2(resolution)          /* time_increment: value=nth_of_sec, nbits = log2(resolution) */
1317  #ifdef BFRAMES          BitstreamPutBits(bs, frame->ticks, MAX(log2bin(pParam->fbase-1), 1));
1318          BitstreamPutBits(bs, frame->ticks, log2bin(pParam->fbase));  #if 0
1319          /*DPRINTF("[%i:%i] %c\n", frame->seconds, frame->ticks,          DPRINTF("[%i:%i] %c",
1320                          frame->coding_type == I_VOP ? 'I' : frame->coding_type ==                          frame->seconds, frame->ticks,
1321                          P_VOP ? 'P' : 'B');*/                          frame->coding_type == I_VOP ? 'I' :
1322  #else                          frame->coding_type == P_VOP ? 'P' :
1323          BitstreamPutBits(bs, frame->ticks, log2bin(pParam->fbase));                          frame->coding_type == S_VOP ? 'S' :     'B');
 //      BitstreamPutBits(bs, 1, 1);  
1324  #endif  #endif
1325    
1326          WRITE_MARKER();          WRITE_MARKER();
1327    
1328          if (!vop_coded) {          if (!vop_coded) {
1329                  BitstreamPutBits(bs, 0, 1);                  BitstreamPutBits(bs, 0, 1);
1330    #if 0
1331                    BitstreamPadAlways(bs); /*  next_start_code() */
1332    #endif
1333                    /* NB: It's up to the function caller to write the next_start_code().
1334                     * At the moment encoder.c respects that requisite because a VOP
1335                     * always ends with a next_start_code either if it's coded or not
1336                     * and encoder.c terminates a frame with a next_start_code in whatever
1337                     * case */
1338                  return;                  return;
1339          }          }
1340    
1341          BitstreamPutBits(bs, 1, 1);     // vop_coded          BitstreamPutBits(bs, 1, 1);     /* vop_coded */
1342    
1343          if (frame->coding_type == P_VOP)          if ( (frame->coding_type == P_VOP) || (frame->coding_type == S_VOP) )
1344                  BitstreamPutBits(bs, frame->rounding_type, 1);                  BitstreamPutBits(bs, frame->rounding_type, 1);
1345    
1346          BitstreamPutBits(bs, 0, 3);     // intra_dc_vlc_threshold          BitstreamPutBits(bs, 0, 3);     /* intra_dc_vlc_threshold */
1347    
1348          if (frame->global_flags & XVID_INTERLACING) {          if ((frame->vol_flags & XVID_VOL_INTERLACING)) {
1349                  BitstreamPutBit(bs, 1); // top field first                  BitstreamPutBit(bs, (frame->vop_flags & XVID_VOP_TOPFIELDFIRST));
1350                  BitstreamPutBit(bs, 0); // alternate vertical scan                  BitstreamPutBit(bs, (frame->vop_flags & XVID_VOP_ALTERNATESCAN));
1351            }
1352    
1353            if (frame->coding_type == S_VOP) {
1354                    if (1)  {               /* no_of_sprite_warping_points>=1 (we use 2!) */
1355                            int k;
1356                            for (k=0;k<3;k++)
1357                            {
1358                                    bs_put_spritetrajectory(bs, frame->warp.duv[k].x ); /* du[k]  */
1359                                    WRITE_MARKER();
1360    
1361                                    bs_put_spritetrajectory(bs, frame->warp.duv[k].y ); /* dv[k]  */
1362                                    WRITE_MARKER();
1363    
1364                            if ((frame->vol_flags & XVID_VOL_QUARTERPEL))
1365                            {
1366                                    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);
1367                            }
1368                            else
1369                            {
1370                                    DPRINTF(XVID_DEBUG_HEADER,"sprite_warping_point[%i] xy=(%i,%i)\n", k, frame->warp.duv[k].x, frame->warp.duv[k].y);
1371                            }
1372                            }
1373          }          }
1374            }
1375    
1376    
1377          BitstreamPutBits(bs, frame->quant, 5);  // quantizer  #if 0
1378            DPRINTF(XVID_DEBUG_HEADER, "quant = %i\n", quant);
1379    #endif
1380    
1381            BitstreamPutBits(bs, quant, 5); /* quantizer */
1382    
1383          if (frame->coding_type != I_VOP)          if (frame->coding_type != I_VOP)
1384                  BitstreamPutBits(bs, frame->fcode, 3);  // forward_fixed_code                  BitstreamPutBits(bs, frame->fcode, 3);  /* forward_fixed_code */
1385    
1386          if (frame->coding_type == B_VOP)          if (frame->coding_type == B_VOP)
1387                  BitstreamPutBits(bs, frame->bcode, 3);  // backward_fixed_code                  BitstreamPutBits(bs, frame->bcode, 3);  /* backward_fixed_code */
1388    
1389    }
1390    
1391    void
1392    BitstreamWriteUserData(Bitstream * const bs,
1393                                                    const char *data,
1394                                                    const unsigned int length)
1395    {
1396            unsigned int i;
1397    
1398            BitstreamPad(bs);
1399            BitstreamPutBits(bs, USERDATA_START_CODE, 32);
1400    
1401            for (i = 0; i < length; i++) {
1402                    BitstreamPutBits(bs, data[i], 8);
1403            }
1404    
1405    }
1406    
1407    /*
1408     * Group of VOP
1409     */
1410    void
1411    BitstreamWriteGroupOfVopHeader(Bitstream * const bs,
1412                                   const MBParam * pParam,
1413                                   uint32_t is_closed_gov)
1414    {
1415      int64_t time = (pParam->m_stamp + (pParam->fbase/2)) / pParam->fbase;
1416      int hours, minutes, seconds;
1417    
1418      /* compute time_code */
1419      seconds = time % 60; time /= 60;
1420      minutes = time % 60; time /= 60;
1421      hours = time % 24; /* don't overflow */
1422    
1423      BitstreamPutBits(bs, GRPOFVOP_START_CODE, 32);
1424      BitstreamPutBits(bs, hours, 5);
1425      BitstreamPutBits(bs, minutes, 6);
1426      BitstreamPutBit(bs, 1);
1427      BitstreamPutBits(bs, seconds, 6);
1428      BitstreamPutBits(bs, is_closed_gov, 1);
1429      BitstreamPutBits(bs, 0, 1); /* broken_link */
1430    }
1431    
1432    /*
1433     * End of Sequence
1434     */
1435    void
1436    BitstreamWriteEndOfSequence(Bitstream * const bs)
1437    {
1438        BitstreamPadAlways(bs);
1439        BitstreamPutBits(bs, VISOBJSEQ_STOP_CODE, 32);
1440    }
1441    
1442    /*
1443     * Video Packet (resync marker)
1444     */
1445    
1446    void write_video_packet_header(Bitstream * const bs,
1447                                   const MBParam * pParam,
1448                                   const FRAMEINFO * const frame,
1449                                   int mbnum)
1450    {
1451        const int mbnum_bits = log2bin(pParam->mb_width *  pParam->mb_height - 1);
1452        uint32_t nbitsresyncmarker;
1453    
1454        if (frame->coding_type == I_VOP)
1455          nbitsresyncmarker = NUMBITS_VP_RESYNC_MARKER;  /* 16 zeros followed by a 1. */
1456        else if (frame->coding_type == B_VOP) /* B_VOP */
1457          nbitsresyncmarker = MAX(NUMBITS_VP_RESYNC_MARKER+1, NUMBITS_VP_RESYNC_MARKER + MAX(frame->fcode, frame->bcode) - 1);
1458        else /*(frame->coding_type == P_VOP)*/
1459                    nbitsresyncmarker = NUMBITS_VP_RESYNC_MARKER + frame->fcode - 1;
1460    
1461        BitstreamPutBits(bs, RESYNC_MARKER, nbitsresyncmarker);
1462        BitstreamPutBits(bs, mbnum, mbnum_bits);
1463        BitstreamPutBits(bs, frame->quant, 5);
1464        BitstreamPutBit(bs, 0); /* hec */
1465  }  }

Legend:
Removed from v.469  
changed lines
  Added in v.2169

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