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

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

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

revision 1.28, Tue Sep 3 17:25:45 2002 UTC revision 1.28.2.12, Wed Dec 18 13:29:16 2002 UTC
# Line 41  Line 41 
41    *                                                                            *    *                                                                            *
42    *  Revision history:                                                         *    *  Revision history:                                                         *
43    *                                                                            *    *                                                                            *
44      *  28.10.2002 GMC support - gruel                                                                                        *
45      *  04.10.2002 qpel support - Isibaar                                                                             *
46    *  11.07.2002 add VOP width & height return to dec when dec->width           *    *  11.07.2002 add VOP width & height return to dec when dec->width           *
47    *             or dec->height is 0  (for use in examples/ex1.c)               *    *             or dec->height is 0  (for use in examples/ex1.c)               *
48    *             MinChen <chenm001@163.com>                                     *    *             MinChen <chenm001@163.com>                                     *
# Line 60  Line 62 
62    *      30.02.2002     intra_dc_threshold support                             *    *      30.02.2002     intra_dc_threshold support                             *
63    *      04.12.2001     support for additional headers                         *    *      04.12.2001     support for additional headers                         *
64    *      16.12.2001     inital version                                         *    *      16.12.2001     inital version                                         *
65    *    *                                                                                                                                                        *
66    ******************************************************************************/    ******************************************************************************/
67    
68    
69    #include <string.h>
70    #include <stdio.h>
71    
72  #include "bitstream.h"  #include "bitstream.h"
73  #include "zigzag.h"  #include "zigzag.h"
74  #include "../quant/quant_matrix.h"  #include "../quant/quant_matrix.h"
75    #include "mbcoding.h"
76    
77    
78  static uint32_t __inline  static uint32_t __inline
79  log2bin(uint32_t value)  log2bin(uint32_t value)
80  {  {
81  /* Changed by Chenm001 */  /* Changed by Chenm001 */
82  #ifndef WIN32  #if !defined(_MSC_VER)
83          int n = 0;          int n = 0;
84    
85          while (value) {          while (value) {
# Line 128  Line 134 
134  // for BVOP addbits == max(fcode,bcode) - 1  // for BVOP addbits == max(fcode,bcode) - 1
135  // returns mbpos  // returns mbpos
136  int  int
137  read_video_packet_header(Bitstream *bs, const int addbits, int * quant)  read_video_packet_header(Bitstream *bs,
138                                                    DECODER * dec,
139                                                    const int addbits,
140                                                    int * quant,
141                                                    int * fcode_forward,
142                                                    int  * fcode_backward,
143                                                    int * intra_dc_threshold)
144  {  {
145          int nbits;          int startcode_bits = NUMBITS_VP_RESYNC_MARKER + addbits;
146            int mbnum_bits = log2bin(dec->mb_width *  dec->mb_height - 1);
147          int mbnum;          int mbnum;
148          int hec;          int hec = 0;
   
         nbits = NUMBITS_VP_RESYNC_MARKER + addbits;  
149    
150          BitstreamSkip(bs, BitstreamNumBitsToByteAlign(bs));          BitstreamSkip(bs, BitstreamNumBitsToByteAlign(bs));
151          BitstreamSkip(bs, nbits);          BitstreamSkip(bs, startcode_bits);
152    
153          DPRINTF(DPRINTF_STARTCODE, "<video_packet_header>");          DPRINTF(DPRINTF_STARTCODE, "<video_packet_header>");
154    
155          // if (dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR) {          if (dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR)
156                  // hec          {
157                  // vop_width                  hec = BitstreamGetBit(bs);              /* header_extension_code */
158                  // marker_bit                  if (hec && !(dec->sprite_enable == SPRITE_STATIC /* && current_coding_type = I_VOP */))
159                  // vop_height                  {
160                  // marker_bit                          BitstreamSkip(bs, 13);                  /* vop_width */
161                            READ_MARKER();
162          //}                          BitstreamSkip(bs, 13);                  /* vop_height */
163                            READ_MARKER();
164                            BitstreamSkip(bs, 13);                  /* vop_horizontal_mc_spatial_ref */
165                            READ_MARKER();
166                            BitstreamSkip(bs, 13);                  /* vop_vertical_mc_spatial_ref */
167                            READ_MARKER();
168                    }
169            }
170    
171          mbnum = BitstreamGetBits(bs, 9);          mbnum = BitstreamGetBits(bs, mbnum_bits);               /* macroblock_number */
172          DPRINTF(DPRINTF_HEADER, "mbnum %i", mbnum);          DPRINTF(DPRINTF_HEADER, "mbnum %i", mbnum);
173    
174          // if (dec->shape != VIDOBJLAY_SHAPE_BINARYONLY)          if (dec->shape != VIDOBJLAY_SHAPE_BINARY_ONLY)
175          *quant = BitstreamGetBits(bs, 5);          {
176                    *quant = BitstreamGetBits(bs, dec->quant_bits); /* quant_scale */
177          DPRINTF(DPRINTF_HEADER, "quant %i", *quant);          DPRINTF(DPRINTF_HEADER, "quant %i", *quant);
178            }
179    
180            if (dec->shape == VIDOBJLAY_SHAPE_RECTANGULAR)
181                    hec = BitstreamGetBit(bs);              /* header_extension_code */
182    
183    
         // if (dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR)  
         hec = BitstreamGetBit(bs);  
184          DPRINTF(DPRINTF_HEADER, "header_extension_code %i", hec);          DPRINTF(DPRINTF_HEADER, "header_extension_code %i", hec);
185          // if (hec)          if (hec)
186          //   .. decoder hec-header ...          {
187                    int time_base;
188                    int time_increment;
189                    int coding_type;
190    
191                    for (time_base=0; BitstreamGetBit(bs)!=0; time_base++);         /* modulo_time_base */
192                    READ_MARKER();
193                    if (dec->time_inc_bits)
194                            time_increment = (BitstreamGetBits(bs, dec->time_inc_bits));    /* vop_time_increment */
195                    READ_MARKER();
196                    DPRINTF(DPRINTF_HEADER,"time %i:%i", time_base, time_increment);
197    
198                    coding_type = BitstreamGetBits(bs, 2);
199                    DPRINTF(DPRINTF_HEADER,"coding_type %i", coding_type);
200    
201                    if (dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR)
202                    {
203                            BitstreamSkip(bs, 1);   /* change_conv_ratio_disable */
204                            if (coding_type != I_VOP)
205                                    BitstreamSkip(bs, 1);   /* vop_shape_coding_type */
206                    }
207    
208                    if (dec->shape != VIDOBJLAY_SHAPE_BINARY_ONLY)
209                    {
210                            *intra_dc_threshold = intra_dc_threshold_table[BitstreamGetBits(bs, 3)];
211    
212                            if (dec->sprite_enable == SPRITE_GMC && coding_type == S_VOP &&
213                                    dec->sprite_warping_points > 0)
214                            {
215                                    // TODO: sprite trajectory
216                            }
217                            if (dec->reduced_resolution_enable &&
218                                    dec->shape == VIDOBJLAY_SHAPE_RECTANGULAR &&
219                                    (coding_type == P_VOP || coding_type == I_VOP))
220                            {
221                                    BitstreamSkip(bs, 1); /* XXX: vop_reduced_resolution */
222                            }
223    
224                            if (coding_type != I_VOP && fcode_forward)
225                            {
226                                    *fcode_forward = BitstreamGetBits(bs, 3);
227                                    DPRINTF(DPRINTF_HEADER,"fcode_forward %i", *fcode_forward);
228                            }
229    
230                            if (coding_type == B_VOP && fcode_backward)
231                            {
232                                    *fcode_backward = BitstreamGetBits(bs, 3);
233                                    DPRINTF(DPRINTF_HEADER,"fcode_backward %i", fcode_backward);
234                            }
235                    }
236    
237            }
238    
239            if (dec->newpred_enable)
240            {
241                    int vop_id;
242                    int vop_id_for_prediction;
243    
244                    vop_id = BitstreamGetBits(bs, MIN(dec->time_inc_bits + 3, 15));
245                    DPRINTF(DPRINTF_HEADER, "vop_id %i", vop_id);
246                    if (BitstreamGetBit(bs))        /* vop_id_for_prediction_indication */
247                    {
248                            vop_id_for_prediction = BitstreamGetBits(bs, MIN(dec->time_inc_bits + 3, 15));
249                            DPRINTF(DPRINTF_HEADER, "vop_id_for_prediction %i", vop_id_for_prediction);
250                    }
251                    READ_MARKER();
252            }
253    
254          return mbnum;          return mbnum;
255  }  }
256    
257    
258    
259    
260    /* vol estimation header */
261    static void
262    read_vol_complexity_estimation_header(Bitstream * bs, DECODER * dec)
263    {
264            ESTIMATION * e = &dec->estimation;
265    
266            e->method = BitstreamGetBits(bs, 2);    /* estimation_method */
267            DPRINTF(DPRINTF_HEADER,"+ complexity_estimation_header; method=%i", e->method);
268    
269            if (e->method == 0 || e->method == 1)
270            {
271                    if (!BitstreamGetBit(bs))               /* shape_complexity_estimation_disable */
272                    {
273                            e->opaque = BitstreamGetBit(bs);                /* opaque */
274                            e->transparent = BitstreamGetBit(bs);           /* transparent */
275                            e->intra_cae = BitstreamGetBit(bs);             /* intra_cae */
276                            e->inter_cae = BitstreamGetBit(bs);             /* inter_cae */
277                            e->no_update = BitstreamGetBit(bs);             /* no_update */
278                            e->upsampling = BitstreamGetBit(bs);            /* upsampling */
279                    }
280    
281                    if (!BitstreamGetBit(bs))       /* texture_complexity_estimation_set_1_disable */
282                    {
283                            e->intra_blocks = BitstreamGetBit(bs);          /* intra_blocks */
284                            e->inter_blocks = BitstreamGetBit(bs);          /* inter_blocks */
285                            e->inter4v_blocks = BitstreamGetBit(bs);                /* inter4v_blocks */
286                            e->not_coded_blocks = BitstreamGetBit(bs);              /* not_coded_blocks */
287                    }
288            }
289    
290            READ_MARKER();
291    
292            if (!BitstreamGetBit(bs))               /* texture_complexity_estimation_set_2_disable */
293            {
294                    e->dct_coefs = BitstreamGetBit(bs);             /* dct_coefs */
295                    e->dct_lines = BitstreamGetBit(bs);             /* dct_lines */
296                    e->vlc_symbols = BitstreamGetBit(bs);           /* vlc_symbols */
297                    e->vlc_bits = BitstreamGetBit(bs);              /* vlc_bits */
298            }
299    
300            if (!BitstreamGetBit(bs))               /* motion_compensation_complexity_disable */
301            {
302                    e->apm = BitstreamGetBit(bs);           /* apm */
303                    e->npm = BitstreamGetBit(bs);           /* npm */
304                    e->interpolate_mc_q = BitstreamGetBit(bs);              /* interpolate_mc_q */
305                    e->forw_back_mc_q = BitstreamGetBit(bs);                /* forw_back_mc_q */
306                    e->halfpel2 = BitstreamGetBit(bs);              /* halfpel2 */
307                    e->halfpel4 = BitstreamGetBit(bs);              /* halfpel4 */
308            }
309    
310            READ_MARKER();
311    
312            if (e->method == 1)
313            {
314                    if (!BitstreamGetBit(bs))       /* version2_complexity_estimation_disable */
315                    {
316                            e->sadct = BitstreamGetBit(bs);         /* sadct */
317                            e->quarterpel = BitstreamGetBit(bs);            /* quarterpel */
318                    }
319            }
320    }
321    
322    
323    /* vop estimation header */
324    static void
325    read_vop_complexity_estimation_header(Bitstream * bs, DECODER * dec, int coding_type)
326    {
327            ESTIMATION * e = &dec->estimation;
328    
329            if (e->method == 0 || e->method == 1)
330            {
331                    if (coding_type == I_VOP) {
332                            if (e->opaque)          BitstreamSkip(bs, 8);   /* dcecs_opaque */
333                            if (e->transparent) BitstreamSkip(bs, 8);       /* */
334                            if (e->intra_cae)       BitstreamSkip(bs, 8);   /* */
335                            if (e->inter_cae)       BitstreamSkip(bs, 8);   /* */
336                            if (e->no_update)       BitstreamSkip(bs, 8);   /* */
337                            if (e->upsampling)      BitstreamSkip(bs, 8);   /* */
338                            if (e->intra_blocks) BitstreamSkip(bs, 8);      /* */
339                            if (e->not_coded_blocks) BitstreamSkip(bs, 8);  /* */
340                            if (e->dct_coefs)       BitstreamSkip(bs, 8);   /* */
341                            if (e->dct_lines)       BitstreamSkip(bs, 8);   /* */
342                            if (e->vlc_symbols) BitstreamSkip(bs, 8);       /* */
343                            if (e->vlc_bits)        BitstreamSkip(bs, 8);   /* */
344                            if (e->sadct)           BitstreamSkip(bs, 8);   /* */
345                    }
346    
347                    if (coding_type == P_VOP) {
348                            if (e->opaque) BitstreamSkip(bs, 8);            /* */
349                            if (e->transparent) BitstreamSkip(bs, 8);       /* */
350                            if (e->intra_cae)       BitstreamSkip(bs, 8);   /* */
351                            if (e->inter_cae)       BitstreamSkip(bs, 8);   /* */
352                            if (e->no_update)       BitstreamSkip(bs, 8);   /* */
353                            if (e->upsampling) BitstreamSkip(bs, 8);        /* */
354                            if (e->intra_blocks) BitstreamSkip(bs, 8);      /* */
355                            if (e->not_coded_blocks)        BitstreamSkip(bs, 8);   /* */
356                            if (e->dct_coefs)       BitstreamSkip(bs, 8);   /* */
357                            if (e->dct_lines)       BitstreamSkip(bs, 8);   /* */
358                            if (e->vlc_symbols) BitstreamSkip(bs, 8);       /* */
359                            if (e->vlc_bits)        BitstreamSkip(bs, 8);   /* */
360                            if (e->inter_blocks) BitstreamSkip(bs, 8);      /* */
361                            if (e->inter4v_blocks) BitstreamSkip(bs, 8);    /* */
362                            if (e->apm)                     BitstreamSkip(bs, 8);   /* */
363                            if (e->npm)                     BitstreamSkip(bs, 8);   /* */
364                            if (e->forw_back_mc_q) BitstreamSkip(bs, 8);    /* */
365                            if (e->halfpel2)        BitstreamSkip(bs, 8);   /* */
366                            if (e->halfpel4)        BitstreamSkip(bs, 8);   /* */
367                            if (e->sadct)           BitstreamSkip(bs, 8);   /* */
368                            if (e->quarterpel)      BitstreamSkip(bs, 8);   /* */
369                    }
370                    if (coding_type == B_VOP) {
371                            if (e->opaque)          BitstreamSkip(bs, 8);   /* */
372                            if (e->transparent)     BitstreamSkip(bs, 8);   /* */
373                            if (e->intra_cae)       BitstreamSkip(bs, 8);   /* */
374                            if (e->inter_cae)       BitstreamSkip(bs, 8);   /* */
375                            if (e->no_update)       BitstreamSkip(bs, 8);   /* */
376                            if (e->upsampling)      BitstreamSkip(bs, 8);   /* */
377                            if (e->intra_blocks) BitstreamSkip(bs, 8);      /* */
378                            if (e->not_coded_blocks) BitstreamSkip(bs, 8);  /* */
379                            if (e->dct_coefs)       BitstreamSkip(bs, 8);   /* */
380                            if (e->dct_lines)       BitstreamSkip(bs, 8);   /* */
381                            if (e->vlc_symbols)     BitstreamSkip(bs, 8);   /* */
382                            if (e->vlc_bits)        BitstreamSkip(bs, 8);   /* */
383                            if (e->inter_blocks) BitstreamSkip(bs, 8);      /* */
384                            if (e->inter4v_blocks) BitstreamSkip(bs, 8);    /* */
385                            if (e->apm)                     BitstreamSkip(bs, 8);   /* */
386                            if (e->npm)                     BitstreamSkip(bs, 8);   /* */
387                            if (e->forw_back_mc_q) BitstreamSkip(bs, 8);    /* */
388                            if (e->halfpel2)        BitstreamSkip(bs, 8);   /* */
389                            if (e->halfpel4)        BitstreamSkip(bs, 8);   /* */
390                            if (e->interpolate_mc_q) BitstreamSkip(bs, 8);  /* */
391                            if (e->sadct)           BitstreamSkip(bs, 8);   /* */
392                            if (e->quarterpel)      BitstreamSkip(bs, 8);   /* */
393                    }
394    
395                    if (coding_type == S_VOP && dec->sprite_enable == SPRITE_STATIC) {
396                            if (e->intra_blocks) BitstreamSkip(bs, 8);      /* */
397                            if (e->not_coded_blocks) BitstreamSkip(bs, 8);  /* */
398                            if (e->dct_coefs)       BitstreamSkip(bs, 8);   /* */
399                            if (e->dct_lines)       BitstreamSkip(bs, 8);   /* */
400                            if (e->vlc_symbols)     BitstreamSkip(bs, 8);   /* */
401                            if (e->vlc_bits)        BitstreamSkip(bs, 8);   /* */
402                            if (e->inter_blocks) BitstreamSkip(bs, 8);      /* */
403                            if (e->inter4v_blocks)  BitstreamSkip(bs, 8);   /* */
404                            if (e->apm)                     BitstreamSkip(bs, 8);   /* */
405                            if (e->npm)                     BitstreamSkip(bs, 8);   /* */
406                            if (e->forw_back_mc_q)  BitstreamSkip(bs, 8);   /* */
407                            if (e->halfpel2)        BitstreamSkip(bs, 8);   /* */
408                            if (e->halfpel4)        BitstreamSkip(bs, 8);   /* */
409                            if (e->interpolate_mc_q) BitstreamSkip(bs, 8);  /* */
410                    }
411            }
412    }
413    
414    
415    
416    
417    
418  /*  /*
419  decode headers  decode headers
420  returns coding_type, or -1 if error  returns coding_type, or -1 if error
# Line 180  Line 427 
427  BitstreamReadHeaders(Bitstream * bs,  BitstreamReadHeaders(Bitstream * bs,
428                                           DECODER * dec,                                           DECODER * dec,
429                                           uint32_t * rounding,                                           uint32_t * rounding,
430                                             uint32_t * reduced_resolution,
431                                           uint32_t * quant,                                           uint32_t * quant,
432                                           uint32_t * fcode_forward,                                           uint32_t * fcode_forward,
433                                           uint32_t * fcode_backward,                                           uint32_t * fcode_backward,
434                                           uint32_t * intra_dc_threshold)                                           uint32_t * intra_dc_threshold,
435                                             VECTOR * gmc_mv)
436  {  {
437          uint32_t vol_ver_id;          uint32_t vol_ver_id;
         static uint32_t time_increment_resolution;  
438          uint32_t coding_type;          uint32_t coding_type;
439          uint32_t start_code;          uint32_t start_code;
440          uint32_t time_incr = 0;          uint32_t time_incr = 0;
441          int32_t time_increment;          int32_t time_increment;
442            int resize = 0;
443    
444          do {          do {
445    
446                  BitstreamByteAlign(bs);                  BitstreamByteAlign(bs);
447                  start_code = BitstreamShowBits(bs, 32);                  start_code = BitstreamShowBits(bs, 32);
448    
# Line 266  Line 516 
516                          BitstreamSkip(bs, 1);   // random_accessible_vol                          BitstreamSkip(bs, 1);   // random_accessible_vol
517    
518                          // video_object_type_indication                          // video_object_type_indication
519                          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                          if (BitstreamShowBits(bs, 8) != VIDOBJLAY_TYPE_SIMPLE &&
520                                    BitstreamShowBits(bs, 8) != VIDOBJLAY_TYPE_CORE &&
521                                    BitstreamShowBits(bs, 8) != VIDOBJLAY_TYPE_MAIN &&
522                                    BitstreamShowBits(bs, 8) != VIDOBJLAY_TYPE_ACE &&
523                                    BitstreamShowBits(bs, 8) != VIDOBJLAY_TYPE_ART_SIMPLE &&
524                                    BitstreamShowBits(bs, 8) != 0)  // BUGGY DIVX
525                          {                          {
526                                  DPRINTF(DPRINTF_ERROR,"video_object_type_indication %i not supported ",                                  DPRINTF(DPRINTF_ERROR,"video_object_type_indication %i not supported ",
527                                          BitstreamShowBits(bs, 8));                                          BitstreamShowBits(bs, 8));
# Line 285  Line 540 
540                                  vol_ver_id = 1;                                  vol_ver_id = 1;
541                          }                          }
542    
543                          if (BitstreamGetBits(bs, 4) == VIDOBJLAY_AR_EXTPAR)     // aspect_ratio_info                          dec->aspect_ratio = BitstreamGetBits(bs, 4);
544    
545                            if (dec->aspect_ratio == VIDOBJLAY_AR_EXTPAR)   // aspect_ratio_info
546                          {                          {
547                                  DPRINTF(DPRINTF_HEADER, "+ aspect_ratio_info");                                  DPRINTF(DPRINTF_HEADER, "+ aspect_ratio_info");
548                                  BitstreamSkip(bs, 8);   // par_width                                  dec->par_width = BitstreamGetBits(bs, 8);       // par_width
549                                  BitstreamSkip(bs, 8);   // par_height                                  dec->par_height = BitstreamGetBits(bs, 8);      // par_height
550                          }                          }
551    
552                          if (BitstreamGetBit(bs))        // vol_control_parameters                          if (BitstreamGetBit(bs))        // vol_control_parameters
# Line 312  Line 569 
569                                          READ_MARKER();                                          READ_MARKER();
570                                          BitstreamSkip(bs, 15);  // latter_half_vbv_occupancy                                          BitstreamSkip(bs, 15);  // latter_half_vbv_occupancy
571                                          READ_MARKER();                                          READ_MARKER();
   
572                                  }                                  }
573                            }else{
574                                    dec->low_delay = dec->low_delay_default;
575                          }                          }
576    
577                          dec->shape = BitstreamGetBits(bs, 2);   // video_object_layer_shape                          dec->shape = BitstreamGetBits(bs, 2);   // video_object_layer_shape
578    
579                          DPRINTF(DPRINTF_HEADER, "shape %i", dec->shape);                          DPRINTF(DPRINTF_HEADER, "shape %i", dec->shape);
580                            if (dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR)
581                            {
582                                    DPRINTF(DPRINTF_ERROR,"non-rectangular shapes are not supported");
583                            }
584    
585                          if (dec->shape == VIDOBJLAY_SHAPE_GRAYSCALE && vol_ver_id != 1) {                          if (dec->shape == VIDOBJLAY_SHAPE_GRAYSCALE && vol_ver_id != 1) {
586                                  BitstreamSkip(bs, 4);   // video_object_layer_shape_extension                                  BitstreamSkip(bs, 4);   // video_object_layer_shape_extension
# Line 326  Line 589 
589                          READ_MARKER();                          READ_MARKER();
590    
591  // *************************** for decode B-frame time ***********************  // *************************** for decode B-frame time ***********************
592                          time_increment_resolution = BitstreamGetBits(bs, 16);   // vop_time_increment_resolution                          dec->time_inc_resolution = BitstreamGetBits(bs, 16);    // vop_time_increment_resolution
593                            DPRINTF(DPRINTF_HEADER,"vop_time_increment_resolution %i", dec->time_inc_resolution);
                         DPRINTF(DPRINTF_HEADER,"vop_time_increment_resolution %i", time_increment_resolution);  
594    
595  //                      time_increment_resolution--;  //                      dec->time_inc_resolution--;
596    
597                          if (time_increment_resolution > 0) {                          if (dec->time_inc_resolution > 0) {
598                                  dec->time_inc_bits = log2bin(time_increment_resolution-1);                                  dec->time_inc_bits = log2bin(dec->time_inc_resolution-1);
599                          } else {                          } else {
600                                  // dec->time_inc_bits = 0;                                  // dec->time_inc_bits = 0;
601                                  // for "old" xvid compatibility, set time_inc_bits = 1                                  // for "old" xvid compatibility, set time_inc_bits = 1
# Line 362  Line 624 
624                                          DPRINTF(DPRINTF_HEADER, "width %i", width);                                          DPRINTF(DPRINTF_HEADER, "width %i", width);
625                                          DPRINTF(DPRINTF_HEADER, "height %i", height);                                          DPRINTF(DPRINTF_HEADER, "height %i", height);
626    
627                                          // for auto set width & height                                          if (dec->width != width || dec->height != height)
628                                          if (dec->width == 0)                                          {
629                                                  dec->width = width;                                                  if (dec->fixed_dimensions)
630                                          if (dec->height == 0)                                                  {
                                                 dec->height = height;  
   
                                         if (width != dec->width || height != dec->height) {  
631                                                  DPRINTF(DPRINTF_ERROR, "XVID_DEC_PARAM width/height does not match bitstream");                                                  DPRINTF(DPRINTF_ERROR, "XVID_DEC_PARAM width/height does not match bitstream");
632                                                  return -1;                                                  return -1;
633                                          }                                          }
634                                                    resize = 1;
635                                                    dec->width = width;
636                                                    dec->height = height;
637                                            }
638                                  }                                  }
639    
640                                  dec->interlacing = BitstreamGetBit(bs);                                  dec->interlacing = BitstreamGetBit(bs);
641                                  DPRINTF(DPRINTF_HEADER, "interlace", dec->interlacing);                                  DPRINTF(DPRINTF_HEADER, "interlacing %i", dec->interlacing);
642    
643                                  if (!BitstreamGetBit(bs))       // obmc_disable                                  if (!BitstreamGetBit(bs))       // obmc_disable
644                                  {                                  {
# Line 385  Line 647 
647                                          // fucking divx4.02 has this enabled                                          // fucking divx4.02 has this enabled
648                                  }                                  }
649    
650                                  if (BitstreamGetBits(bs, (vol_ver_id == 1 ? 1 : 2)))    // sprite_enable                                  dec->sprite_enable = BitstreamGetBits(bs, (vol_ver_id == 1 ? 1 : 2));   // sprite_enable
651    
652                                    if (dec->sprite_enable == SPRITE_STATIC || dec->sprite_enable == SPRITE_GMC)
653                                  {                                  {
654                                          DPRINTF(DPRINTF_ERROR, "spriate_enabled not supported");                                          int low_latency_sprite_enable;
655                                          return -1;  
656                                            if (dec->sprite_enable != SPRITE_GMC)
657                                            {
658                                                    int sprite_width;
659                                                    int sprite_height;
660                                                    int sprite_left_coord;
661                                                    int sprite_top_coord;
662                                                    sprite_width = BitstreamGetBits(bs, 13);                // sprite_width
663                                                    READ_MARKER();
664                                                    sprite_height = BitstreamGetBits(bs, 13);       // sprite_height
665                                                    READ_MARKER();
666                                                    sprite_left_coord = BitstreamGetBits(bs, 13);   // sprite_left_coordinate
667                                                    READ_MARKER();
668                                                    sprite_top_coord = BitstreamGetBits(bs, 13);    // sprite_top_coordinate
669                                                    READ_MARKER();
670                                            }
671                                            dec->sprite_warping_points = BitstreamGetBits(bs, 6);           // no_of_sprite_warping_points
672                                            dec->sprite_warping_accuracy = BitstreamGetBits(bs, 2);         // sprite_warping_accuracy
673                                            dec->sprite_brightness_change = BitstreamGetBits(bs, 1);                // brightness_change
674                                            if (dec->sprite_enable != SPRITE_GMC)
675                                            {
676                                                    low_latency_sprite_enable = BitstreamGetBits(bs, 1);            // low_latency_sprite_enable
677                                            }
678                                  }                                  }
679    
680                                  if (vol_ver_id != 1 &&                                  if (vol_ver_id != 1 &&
# Line 446  Line 732 
732    
733    
734                                  if (vol_ver_id != 1) {                                  if (vol_ver_id != 1) {
                                         DEBUG("QUARTERPEL BITSTREAM");  
735                                          dec->quarterpel = BitstreamGetBit(bs);  // quarter_sample                                          dec->quarterpel = BitstreamGetBit(bs);  // quarter_sample
736                                            DPRINTF(DPRINTF_HEADER,"quarterpel %i", dec->quarterpel);
737                                  }                                  }
738                                  else                                  else
739                                          dec->quarterpel = 0;                                          dec->quarterpel = 0;
740    
741    
742                                  if (!BitstreamGetBit(bs))       // complexity_estimation_disable                                  dec->complexity_estimation_disable = BitstreamGetBit(bs);       /* complexity estimation disable */
743                                    if (!dec->complexity_estimation_disable)
744                                  {                                  {
745                                          DPRINTF(DPRINTF_ERROR, "complexity_estimation not supported");                                          read_vol_complexity_estimation_header(bs, dec);
                                         return -1;  
746                                  }                                  }
747    
748                                  BitstreamSkip(bs, 1);   // resync_marker_disable                                  BitstreamSkip(bs, 1);   // resync_marker_disable
# Line 468  Line 754 
754                                  }                                  }
755    
756                                  if (vol_ver_id != 1) {                                  if (vol_ver_id != 1) {
757                                          if (BitstreamGetBit(bs))        // newpred_enable                                          dec->newpred_enable = BitstreamGetBit(bs);
758                                            if (dec->newpred_enable)        // newpred_enable
759                                          {                                          {
760                                                  DPRINTF(DPRINTF_HEADER, "+ newpred_enable");                                                  DPRINTF(DPRINTF_HEADER, "+ newpred_enable");
761                                                  BitstreamSkip(bs, 2);   // requested_upstream_message_type                                                  BitstreamSkip(bs, 2);   // requested_upstream_message_type
762                                                  BitstreamSkip(bs, 1);   // newpred_segment_type                                                  BitstreamSkip(bs, 1);   // newpred_segment_type
763                                          }                                          }
764                                          if (BitstreamGetBit(bs))        // reduced_resolution_vop_enable                                          dec->reduced_resolution_enable = BitstreamGetBit(bs);   /* reduced_resolution_vop_enable */
765                                          {                                          DPRINTF(DPRINTF_HEADER, "reduced_resolution_enable %i", dec->reduced_resolution_enable);
                                                 DPRINTF(DPRINTF_ERROR, "reduced_resolution_vop not supported");  
                                                 return -1;  
766                                          }                                          }
767                                    else
768                                    {
769                                            dec->newpred_enable = 0;
770                                            dec->reduced_resolution_enable = 0;
771                                  }                                  }
772    
773                                  if ((dec->scalability = BitstreamGetBit(bs)))   // scalability                                  dec->scalability = BitstreamGetBit(bs); /* scalability */
774                                    if (dec->scalability)
775                                  {                                  {
776                                          DPRINTF(DPRINTF_ERROR, "scalability not supported");                                          DPRINTF(DPRINTF_ERROR, "scalability not supported");
777                                            BitstreamSkip(bs, 1);   /* hierarchy_type */
778                                            BitstreamSkip(bs, 4);   /* ref_layer_id */
779                                            BitstreamSkip(bs, 1);   /* ref_layer_sampling_direc */
780                                            BitstreamSkip(bs, 5);   /* hor_sampling_factor_n */
781                                            BitstreamSkip(bs, 5);   /* hor_sampling_factor_m */
782                                            BitstreamSkip(bs, 5);   /* vert_sampling_factor_n */
783                                            BitstreamSkip(bs, 5);   /* vert_sampling_factor_m */
784                                            BitstreamSkip(bs, 1);   /* enhancement_type */
785                                            if(dec->shape == VIDOBJLAY_SHAPE_BINARY /* && hierarchy_type==0 */) {
786                                                    BitstreamSkip(bs, 1);   /* use_ref_shape */
787                                                    BitstreamSkip(bs, 1);   /* use_ref_texture */
788                                                    BitstreamSkip(bs, 5);   /* shape_hor_sampling_factor_n */
789                                                    BitstreamSkip(bs, 5);   /* shape_hor_sampling_factor_m */
790                                                    BitstreamSkip(bs, 5);   /* shape_vert_sampling_factor_n */
791                                                    BitstreamSkip(bs, 5);   /* shape_vert_sampling_factor_m */
792                                            }
793                                          return -1;                                          return -1;
794                                  }                                  }
795                          } else                          // dec->shape == BINARY_ONLY                          } else                          // dec->shape == BINARY_ONLY
796                          {                          {
797                                  if (vol_ver_id != 1) {                                  if (vol_ver_id != 1) {
798                                          if (BitstreamGetBit(bs))        // scalability                                          dec->scalability = BitstreamGetBit(bs); /* scalability */
799                                            if (dec->scalability)
800                                          {                                          {
801                                          DPRINTF(DPRINTF_ERROR, "scalability not supported");                                          DPRINTF(DPRINTF_ERROR, "scalability not supported");
802                                                    BitstreamSkip(bs, 4);   /* ref_layer_id */
803                                                    BitstreamSkip(bs, 5);   /* hor_sampling_factor_n */
804                                                    BitstreamSkip(bs, 5);   /* hor_sampling_factor_m */
805                                                    BitstreamSkip(bs, 5);   /* vert_sampling_factor_n */
806                                                    BitstreamSkip(bs, 5);   /* vert_sampling_factor_m */
807                                                  return -1;                                                  return -1;
808                                          }                                          }
809                                  }                                  }
# Line 499  Line 811 
811    
812                          }                          }
813    
814                            return (resize ? -3 : -2 );     /* VOL */
815    
816                  } else if (start_code == GRPOFVOP_START_CODE) {                  } else if (start_code == GRPOFVOP_START_CODE) {
817    
818                          DPRINTF(DPRINTF_STARTCODE, "<group_of_vop>");                          DPRINTF(DPRINTF_STARTCODE, "<group_of_vop>");
# Line 540  Line 854 
854                          DPRINTF(DPRINTF_HEADER, "time_increment %i", time_increment);                          DPRINTF(DPRINTF_HEADER, "time_increment %i", time_increment);
855    
856                          DPRINTF(DPRINTF_TIMECODE, "%c %i:%i",                          DPRINTF(DPRINTF_TIMECODE, "%c %i:%i",
857                                  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',
858                                  time_incr, time_increment);                                  time_incr, time_increment);
859    
860                          if (coding_type != B_VOP) {                          if (coding_type != B_VOP) {
# Line 548  Line 862 
862                                  dec->time_base += time_incr;                                  dec->time_base += time_incr;
863                                  dec->time = time_increment;                                  dec->time = time_increment;
864    
865  /*                                      dec->time_base * time_increment_resolution +  /*                                      dec->time_base * dec->time_inc_resolution +
866                                          time_increment;                                          time_increment;
867  */                              dec->time_pp = (uint32_t)  */                              dec->time_pp = (uint32_t)
868                                          (time_increment_resolution + dec->time - dec->last_non_b_time)%time_increment_resolution;                                          (dec->time_inc_resolution + dec->time - dec->last_non_b_time)%dec->time_inc_resolution;
869                                  dec->last_non_b_time = dec->time;                                  dec->last_non_b_time = dec->time;
870                          } else {                          } else {
871                                  dec->time = time_increment;                                  dec->time = time_increment;
872  /*  /*
873                                          (dec->last_time_base +                                          (dec->last_time_base +
874                                           time_incr) * time_increment_resolution + time_increment;                                           time_incr) * dec->time_inc_resolution + time_increment;
875  */  */
876                                  dec->time_bp = (uint32_t)                                  dec->time_bp = (uint32_t)
877                                          (time_increment_resolution + dec->last_non_b_time - dec->time)%time_increment_resolution;                                          (dec->time_inc_resolution + dec->last_non_b_time - dec->time)%dec->time_inc_resolution;
878                          }                          }
879                            DPRINTF(DPRINTF_HEADER,"time_pp=%i", dec->time_pp);
880                            DPRINTF(DPRINTF_HEADER,"time_bp=%i", dec->time_bp);
881    
882                          READ_MARKER();                          READ_MARKER();
883    
# Line 571  Line 887 
887                                  return N_VOP;                                  return N_VOP;
888                          }                          }
889    
890                          /* if (newpred_enable)                          if (dec->newpred_enable)
891                            {
892                                    int vop_id;
893                                    int vop_id_for_prediction;
894    
895                                    vop_id = BitstreamGetBits(bs, MIN(dec->time_inc_bits + 3, 15));
896                                    DPRINTF(DPRINTF_HEADER, "vop_id %i", vop_id);
897                                    if (BitstreamGetBit(bs))        /* vop_id_for_prediction_indication */
898                             {                             {
899                                            vop_id_for_prediction = BitstreamGetBits(bs, MIN(dec->time_inc_bits + 3, 15));
900                                            DPRINTF(DPRINTF_HEADER, "vop_id_for_prediction %i", vop_id_for_prediction);
901                                    }
902                                    READ_MARKER();
903                             }                             }
904                           */  
905    
906    
907                          // fix a little bug by MinChen <chenm002@163.com>                          // fix a little bug by MinChen <chenm002@163.com>
908                          if ((dec->shape != VIDOBJLAY_SHAPE_BINARY_ONLY) &&                          if ((dec->shape != VIDOBJLAY_SHAPE_BINARY_ONLY) &&
909                                  (coding_type == P_VOP)) {                                  ( (coding_type == P_VOP) || (coding_type == S_VOP && dec->sprite_enable == SPRITE_GMC) ) ) {
910                                  *rounding = BitstreamGetBit(bs);        // rounding_type                                  *rounding = BitstreamGetBit(bs);        // rounding_type
911                                  DPRINTF(DPRINTF_HEADER, "rounding %i", *rounding);                                  DPRINTF(DPRINTF_HEADER, "rounding %i", *rounding);
912                          }                          }
913    
914                          /* if (reduced_resolution_enable)                          if (dec->reduced_resolution_enable &&
915                                    dec->shape == VIDOBJLAY_SHAPE_RECTANGULAR &&
916                                    (coding_type == P_VOP || coding_type == I_VOP)) {
917    
918                                    *reduced_resolution = BitstreamGetBit(bs);
919                                    DPRINTF(DPRINTF_HEADER, "reduced_resolution %i", *reduced_resolution);
920                            }
921                            else
922                             {                             {
923                                    *reduced_resolution = 0;
924                             }                             }
                          */  
925    
926                          if (dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR) {                          if (dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR) {
927                                    if(!(dec->sprite_enable == SPRITE_STATIC && coding_type == I_VOP)) {
928    
929                                  uint32_t width, height;                                  uint32_t width, height;
930                                  uint32_t horiz_mc_ref, vert_mc_ref;                                  uint32_t horiz_mc_ref, vert_mc_ref;
931    
# Line 605  Line 942 
942                                  DPRINTF(DPRINTF_HEADER, "height %i", height);                                  DPRINTF(DPRINTF_HEADER, "height %i", height);
943                                  DPRINTF(DPRINTF_HEADER, "horiz_mc_ref %i", horiz_mc_ref);                                  DPRINTF(DPRINTF_HEADER, "horiz_mc_ref %i", horiz_mc_ref);
944                                  DPRINTF(DPRINTF_HEADER, "vert_mc_ref %i", vert_mc_ref);                                  DPRINTF(DPRINTF_HEADER, "vert_mc_ref %i", vert_mc_ref);
945                                    }
946    
947                                  BitstreamSkip(bs, 1);   // change_conv_ratio_disable                                  BitstreamSkip(bs, 1);   // change_conv_ratio_disable
948                                  if (BitstreamGetBit(bs))        // vop_constant_alpha                                  if (BitstreamGetBit(bs))        // vop_constant_alpha
# Line 613  Line 951 
951                                  }                                  }
952                          }                          }
953    
   
954                          if (dec->shape != VIDOBJLAY_SHAPE_BINARY_ONLY) {                          if (dec->shape != VIDOBJLAY_SHAPE_BINARY_ONLY) {
955    
956                                    if (!dec->complexity_estimation_disable)
957                                    {
958                                            read_vop_complexity_estimation_header(bs, dec, coding_type);
959                                    }
960    
961                                  // intra_dc_vlc_threshold                                  // intra_dc_vlc_threshold
962                                  *intra_dc_threshold =                                  *intra_dc_threshold =
963                                          intra_dc_threshold_table[BitstreamGetBits(bs, 3)];                                          intra_dc_threshold_table[BitstreamGetBits(bs, 3)];
964    
965                                    dec->top_field_first = 0;
966                                    dec->alternate_vertical_scan = 0;
967    
968                                  if (dec->interlacing) {                                  if (dec->interlacing) {
969                                          dec->top_field_first = BitstreamGetBit(bs);                                          dec->top_field_first = BitstreamGetBit(bs);
970                                          DPRINTF(DPRINTF_HEADER, "interlace top_field_first %i", dec->top_field_first);                                          DPRINTF(DPRINTF_HEADER, "interlace top_field_first %i", dec->top_field_first);
# Line 628  Line 974 
974                                  }                                  }
975                          }                          }
976    
977                            if ((dec->sprite_enable == SPRITE_STATIC || dec->sprite_enable== SPRITE_GMC) && coding_type == S_VOP) {
978    
979                                    int i;
980    
981                                    for (i = 0 ; i < dec->sprite_warping_points; i++)
982                                    {
983                                            int length;
984                                            int x = 0, y = 0;
985    
986                                            /* sprite code borowed from ffmpeg; thx Michael Niedermayer <michaelni@gmx.at> */
987                                            length = bs_get_spritetrajectory(bs);
988                                            if(length){
989                                                    x= BitstreamGetBits(bs, length);
990                                                    if ((x >> (length - 1)) == 0) /* if MSB not set it is negative*/
991                                                            x = - (x ^ ((1 << length) - 1));
992                                            }
993                                            READ_MARKER();
994    
995                                            length = bs_get_spritetrajectory(bs);
996                                            if(length){
997                                                    y = BitstreamGetBits(bs, length);
998                                                    if ((y >> (length - 1)) == 0) /* if MSB not set it is negative*/
999                                                            y = - (y ^ ((1 << length) - 1));
1000                                            }
1001                                            READ_MARKER();
1002    
1003                                            gmc_mv[i].x = x;
1004                                            gmc_mv[i].y = y;
1005    
1006                                            DPRINTF(DPRINTF_HEADER,"sprite_warping_point[%i] xy=(%i,%i)", i, x, y);
1007                                    }
1008    
1009                                    if (dec->sprite_brightness_change)
1010                                    {
1011                                            // XXX: brightness_change_factor()
1012                                    }
1013                                    if (dec->sprite_enable == SPRITE_STATIC)
1014                                    {
1015                                            // XXX: todo
1016                                    }
1017    
1018                            }
1019    
1020                          if ((*quant = BitstreamGetBits(bs, dec->quant_bits)) < 1)       // vop_quant                          if ((*quant = BitstreamGetBits(bs, dec->quant_bits)) < 1)       // vop_quant
1021                                  *quant = 1;                                  *quant = 1;
   
1022                          DPRINTF(DPRINTF_HEADER, "quant %i", *quant);                          DPRINTF(DPRINTF_HEADER, "quant %i", *quant);
1023    
1024                          if (coding_type != I_VOP) {                          if (coding_type != I_VOP) {
# Line 651  Line 1039 
1039                          return coding_type;                          return coding_type;
1040    
1041                  } else if (start_code == USERDATA_START_CODE) {                  } else if (start_code == USERDATA_START_CODE) {
1042                            char tmp[256];
1043                          DPRINTF(DPRINTF_STARTCODE, "<user_data>");                      int i, version, build;
1044                            char packed;
1045    
1046                          BitstreamSkip(bs, 32);  // user_data_start_code                          BitstreamSkip(bs, 32);  // user_data_start_code
1047    
1048                            tmp[0] = BitstreamShowBits(bs, 8);
1049    
1050                            for(i = 1; i < 256; i++){
1051                                    tmp[i] = (BitstreamShowBits(bs, 16) & 0xFF);
1052    
1053                                    if(tmp[i] == 0)
1054                                            break;
1055    
1056                                    BitstreamSkip(bs, 8);
1057                            }
1058    
1059                            DPRINTF(DPRINTF_STARTCODE, "<user_data>: %s\n", tmp);
1060    
1061                        /* divx detection */
1062                            i = sscanf(tmp, "DivX%dBuild%d%c", &version, &build, &packed);
1063                            if (i < 2)
1064                                    i = sscanf(tmp, "DivX%db%d%c", &version, &build, &packed);
1065    
1066                            if (i >= 2)
1067                            {
1068                                    dec->packed_mode = (i == 3 && packed == 'p');
1069                                    DPRINTF(DPRINTF_HEADER, "divx version=%i, build=%i packed=%i",
1070                                                    version, build, dec->packed_mode);
1071                            }
1072    
1073                  } else                                  // start_code == ?                  } else                                  // start_code == ?
1074                  {                  {
1075                          if (BitstreamShowBits(bs, 24) == 0x000001) {                          if (BitstreamShowBits(bs, 24) == 0x000001) {
# Line 698  Line 1112 
1112  void  void
1113  BitstreamWriteVolHeader(Bitstream * const bs,  BitstreamWriteVolHeader(Bitstream * const bs,
1114                                                  const MBParam * pParam,                                                  const MBParam * pParam,
1115                                                  const FRAMEINFO * frame)                                                  const FRAMEINFO * const frame)
1116  {  {
1117            static const vo_id = 0;
1118            static const vol_id = 0;
1119            int vol_ver_id=1;
1120    
1121            if ( pParam->m_quarterpel ||  (frame->global_flags & XVID_GMC) ||
1122                     (pParam->global & XVID_GLOBAL_REDUCED))
1123                    vol_ver_id = 2;
1124    
1125          // video object_start_code & vo_id          // video object_start_code & vo_id
1126          BitstreamPad(bs);          BitstreamPad(bs);
1127          BitstreamPutBits(bs, VO_START_CODE, 27);          BitstreamPutBits(bs, VIDOBJ_START_CODE|(vo_id&0x5), 32);
         BitstreamPutBits(bs, 0, 5);  
1128    
1129          // video_object_layer_start_code & vol_id          // video_object_layer_start_code & vol_id
1130          BitstreamPutBits(bs, VOL_START_CODE, 28);          BitstreamPutBits(bs, VIDOBJLAY_START_CODE|(vol_id&0x4), 32);
         BitstreamPutBits(bs, 0, 4);  
1131    
1132          BitstreamPutBit(bs, 0);         // random_accessible_vol          BitstreamPutBit(bs, 0);         // random_accessible_vol
1133          BitstreamPutBits(bs, 0, 8);     // video_object_type_indication          BitstreamPutBits(bs, 0, 8);     // video_object_type_indication
1134    
1135            if (vol_ver_id == 1)
1136            {
1137          BitstreamPutBit(bs, 0);         // is_object_layer_identified (0=not given)          BitstreamPutBit(bs, 0);         // is_object_layer_identified (0=not given)
1138            }
1139            else
1140            {
1141                    BitstreamPutBit(bs, 1);         // is_object_layer_identified
1142                    BitstreamPutBits(bs, vol_ver_id, 4);    // vol_ver_id == 2
1143                    BitstreamPutBits(bs, 4, 3); // vol_ver_priority (1==lowest, 7==highest) ??
1144            }
1145    
1146          BitstreamPutBits(bs, 1, 4);     // aspect_ratio_info (1=1:1)          BitstreamPutBits(bs, 1, 4);     // aspect_ratio_info (1=1:1)
1147    
1148          BitstreamPutBit(bs, 1); // vol_control_parameters          BitstreamPutBit(bs, 1); // vol_control_parameters
1149          BitstreamPutBits(bs, 1, 2);     // chroma_format 1="4:2:0"          BitstreamPutBits(bs, 1, 2);     // chroma_format 1="4:2:0"
1150    
 #ifdef BFRAMES  
1151          if (pParam->max_bframes > 0) {          if (pParam->max_bframes > 0) {
1152                  BitstreamPutBit(bs, 0); // low_delay                  BitstreamPutBit(bs, 0); // low_delay
1153          } else          } else
 #endif  
1154          {          {
1155                  BitstreamPutBit(bs, 1); // low_delay                  BitstreamPutBit(bs, 1); // low_delay
1156          }          }
# Line 731  Line 1160 
1160    
1161          WRITE_MARKER();          WRITE_MARKER();
1162    
1163          /* time_increment_resolution; ignored by current decore versions          /* time_inc_resolution; ignored by current decore versions
1164             eg. 2fps     res=2       inc=1             eg. 2fps     res=2       inc=1
1165             25fps        res=25      inc=1             25fps        res=25      inc=1
1166             29.97fps res=30000   inc=1001             29.97fps res=30000   inc=1001
1167           */           */
 #ifdef BFRAMES  
         BitstreamPutBits(bs, pParam->fbase, 16);  
 #else  
1168          BitstreamPutBits(bs, pParam->fbase, 16);          BitstreamPutBits(bs, pParam->fbase, 16);
 #endif  
1169    
1170          WRITE_MARKER();          WRITE_MARKER();
1171    
 #ifdef BFRAMES  
         BitstreamPutBit(bs, 1);         // fixed_vop_rate = 1  
         BitstreamPutBits(bs, pParam->fincr, log2bin(pParam->fbase));    // fixed_vop_time_increment  
 #else  
1172          BitstreamPutBit(bs, 1);         // fixed_vop_rate = 1          BitstreamPutBit(bs, 1);         // fixed_vop_rate = 1
1173          BitstreamPutBits(bs, pParam->fincr, log2bin(pParam->fbase));    // fixed_vop_time_increment          BitstreamPutBits(bs, pParam->fincr, log2bin(pParam->fbase));    // fixed_vop_time_increment
 #endif  
1174    
1175          WRITE_MARKER();          WRITE_MARKER();
1176          BitstreamPutBits(bs, pParam->width, 13);        // width          BitstreamPutBits(bs, pParam->width, 13);        // width
# Line 760  Line 1180 
1180    
1181          BitstreamPutBit(bs, frame->global_flags & XVID_INTERLACING);    // interlace          BitstreamPutBit(bs, frame->global_flags & XVID_INTERLACING);    // interlace
1182          BitstreamPutBit(bs, 1);         // obmc_disable (overlapped block motion compensation)          BitstreamPutBit(bs, 1);         // obmc_disable (overlapped block motion compensation)
1183          BitstreamPutBit(bs, 0);         // sprite_enable  
1184          BitstreamPutBit(bs, 0);         // not_in_bit          if (vol_ver_id != 1)
1185            {       if (frame->global_flags & XVID_GMC)
1186                    {       BitstreamPutBits(bs, 2, 2);             // sprite_enable=='GMC'
1187                            BitstreamPutBits(bs, 2, 6);             // no_of_sprite_warping_points
1188                            BitstreamPutBits(bs, 3, 2);             // sprite_warping_accuracy 0==1/2, 1=1/4, 2=1/8, 3=1/16
1189                            BitstreamPutBit(bs, 0);                 // sprite_brightness_change (not supported)
1190    
1191    /* currently we use no_of_sprite_warping_points==2, sprite_warping_accuracy==3
1192       for DivX5 compatability */
1193    
1194                    } else
1195                            BitstreamPutBits(bs, 0, 2);             // sprite_enable==off
1196            }
1197            else
1198                    BitstreamPutBit(bs, 0);         // sprite_enable==off
1199    
1200            BitstreamPutBit(bs, 0);         // not_8_bit
1201    
1202          // quant_type   0=h.263  1=mpeg4(quantizer tables)          // quant_type   0=h.263  1=mpeg4(quantizer tables)
1203          BitstreamPutBit(bs, pParam->m_quant_type);          BitstreamPutBit(bs, pParam->m_quant_type);
# Line 779  Line 1215 
1215    
1216          }          }
1217    
1218            if (vol_ver_id != 1) {
1219                    if (pParam->m_quarterpel)
1220                            BitstreamPutBit(bs, 1);         //  quarterpel
1221                    else
1222                            BitstreamPutBit(bs, 0);         // no quarterpel
1223            }
1224    
1225          BitstreamPutBit(bs, 1);         // complexity_estimation_disable          BitstreamPutBit(bs, 1);         // complexity_estimation_disable
1226          BitstreamPutBit(bs, 1);         // resync_marker_disable          BitstreamPutBit(bs, 1);         // resync_marker_disable
1227          BitstreamPutBit(bs, 0);         // data_partitioned          BitstreamPutBit(bs, 0);         // data_partitioned
1228    
1229            if (vol_ver_id != 1)
1230            {
1231                    BitstreamPutBit(bs, 0);         // newpred_enable
1232    
1233                    BitstreamPutBit(bs, (pParam->global & XVID_GLOBAL_REDUCED)?1:0);
1234                                                                            /* reduced_resolution_vop_enabled */
1235            }
1236    
1237          BitstreamPutBit(bs, 0);         // scalability          BitstreamPutBit(bs, 0);         // scalability
1238    
1239  }  }
1240    
1241    
1242  /*  /*
1243    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)  
1244  */  */
1245  void  void
1246  BitstreamWriteVopHeader(Bitstream * const bs,  BitstreamWriteVopHeader(
1247                                                    Bitstream * const bs,
1248                                                  const MBParam * pParam,                                                  const MBParam * pParam,
1249                                                  const FRAMEINFO * frame,                                                  const FRAMEINFO * const frame,
1250                                                  int vop_coded)                                                  int vop_coded)
1251  {  {
1252          uint32_t i;          uint32_t i;
# Line 806  Line 1255 
1255          BitstreamPutBits(bs, VOP_START_CODE, 32);          BitstreamPutBits(bs, VOP_START_CODE, 32);
1256    
1257          BitstreamPutBits(bs, frame->coding_type, 2);          BitstreamPutBits(bs, frame->coding_type, 2);
1258            DPRINTF(DPRINTF_HEADER, "coding_type = %i", frame->coding_type);
1259    
         // time_base = 0  write n x PutBit(1), PutBit(0)  
 #ifdef BFRAMES  
1260          for (i = 0; i < frame->seconds; i++) {          for (i = 0; i < frame->seconds; i++) {
1261                  BitstreamPutBit(bs, 1);                  BitstreamPutBit(bs, 1);
1262          }          }
1263          BitstreamPutBit(bs, 0);          BitstreamPutBit(bs, 0);
 #else  
         for (i = 0; i < frame->seconds; i++) {  
                 BitstreamPutBit(bs, 1);  
         }  
         BitstreamPutBit(bs, 0);  
 //      BitstreamPutBits(bs, 0, 1);  
 #endif  
1264    
1265          WRITE_MARKER();          WRITE_MARKER();
1266    
1267          // time_increment: value=nth_of_sec, nbits = log2(resolution)          // time_increment: value=nth_of_sec, nbits = log2(resolution)
1268  #ifdef BFRAMES  
1269          BitstreamPutBits(bs, frame->ticks, log2bin(pParam->fbase));          BitstreamPutBits(bs, frame->ticks, log2bin(pParam->fbase));
1270          /*DPRINTF("[%i:%i] %c\n", frame->seconds, frame->ticks,          /*DPRINTF("[%i:%i] %c", frame->seconds, frame->ticks,
1271                          frame->coding_type == I_VOP ? 'I' : frame->coding_type ==                          frame->coding_type == I_VOP ? 'I' : frame->coding_type ==
1272                          P_VOP ? 'P' : 'B');*/                          P_VOP ? 'P' : 'B');*/
 #else  
         BitstreamPutBits(bs, frame->ticks, log2bin(pParam->fbase));  
 //      BitstreamPutBits(bs, 1, 1);  
 #endif  
1273    
1274          WRITE_MARKER();          WRITE_MARKER();
1275    
# Line 843  Line 1280 
1280    
1281          BitstreamPutBits(bs, 1, 1);     // vop_coded          BitstreamPutBits(bs, 1, 1);     // vop_coded
1282    
1283          if (frame->coding_type == P_VOP)          if ( (frame->coding_type == P_VOP) || (frame->coding_type == S_VOP) )
1284                  BitstreamPutBits(bs, frame->rounding_type, 1);                  BitstreamPutBits(bs, frame->rounding_type, 1);
1285    
1286            if ((pParam->global & XVID_GLOBAL_REDUCED))
1287                    BitstreamPutBit(bs, (frame->global_flags & XVID_REDUCED)?1:0);
1288    
1289          BitstreamPutBits(bs, 0, 3);     // intra_dc_vlc_threshold          BitstreamPutBits(bs, 0, 3);     // intra_dc_vlc_threshold
1290    
1291          if (frame->global_flags & XVID_INTERLACING) {          if (frame->global_flags & XVID_INTERLACING) {
1292                  BitstreamPutBit(bs, 1); // top field first                  BitstreamPutBit(bs, (frame->global_flags & XVID_TOPFIELDFIRST));
1293                  BitstreamPutBit(bs, 0); // alternate vertical scan                  BitstreamPutBit(bs, (frame->global_flags & XVID_ALTERNATESCAN));
1294            }
1295    
1296            if (frame->coding_type == S_VOP) {
1297                    if (1)  {               // no_of_sprite_warping_points>=1
1298                            if (pParam->m_quarterpel)
1299                                    bs_put_spritetrajectory(bs, frame->GMC_MV.x/2 ); // du[0]
1300                            else
1301                                    bs_put_spritetrajectory(bs, frame->GMC_MV.x ); // du[0]
1302                            WRITE_MARKER();
1303    
1304                            if (pParam->m_quarterpel)
1305                                    bs_put_spritetrajectory(bs, frame->GMC_MV.y/2 ); // dv[0]
1306                            else
1307                                    bs_put_spritetrajectory(bs, frame->GMC_MV.y ); // dv[0]
1308                            WRITE_MARKER();
1309    
1310    
1311                            if (pParam->m_quarterpel)
1312                            {
1313                                    DPRINTF(DPRINTF_HEADER,"sprite_warping_point[%i] xy=(%i,%i) *QPEL*", 0, frame->GMC_MV.x/2, frame->GMC_MV.y/2);
1314                            }
1315                            else
1316                            {
1317                                    DPRINTF(DPRINTF_HEADER,"sprite_warping_point[%i] xy=(%i,%i)", 0, frame->GMC_MV.x, frame->GMC_MV.y);
1318                            }
1319    
1320          }          }
1321    /* GMC is halfpel in bitstream, even though GMC_MV was pseudo-qpel (2*halfpel) */
1322    
1323                    if (2) {                // no_of_sprite_warping_points>=2 (for DivX5 compat)
1324                            bs_put_spritetrajectory(bs, 0 );
1325                            WRITE_MARKER();
1326                            bs_put_spritetrajectory(bs, 0 );
1327                            WRITE_MARKER();
1328                    }
1329                    // no support for brightness_change!
1330            }
1331    
1332    
1333            DPRINTF(DPRINTF_HEADER, "quant = %i", frame->quant);
1334    
1335          BitstreamPutBits(bs, frame->quant, 5);  // quantizer          BitstreamPutBits(bs, frame->quant, 5);  // quantizer
1336    
# Line 863  Line 1342 
1342    
1343  }  }
1344    
   
1345  void  void
1346  BitstreamWriteUserData(Bitstream * const bs,  BitstreamWriteUserData(Bitstream * const bs,
1347                                                  uint8_t * data,                                                  uint8_t * data,

Legend:
Removed from v.1.28  
changed lines
  Added in v.1.28.2.12

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