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

Legend:
Removed from v.313  
changed lines
  Added in v.1466

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