[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.2.6, Tue Nov 12 15:53:23 2002 UTC revision 1.28.2.11, Sat Dec 14 09:39:42 2002 UTC
# Line 67  Line 67 
67    
68    
69  #include <string.h>  #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"
# Line 77  Line 79 
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 216  Line 218 
218                                  dec->shape == VIDOBJLAY_SHAPE_RECTANGULAR &&                                  dec->shape == VIDOBJLAY_SHAPE_RECTANGULAR &&
219                                  (coding_type == P_VOP || coding_type == I_VOP))                                  (coding_type == P_VOP || coding_type == I_VOP))
220                          {                          {
221                                  BitstreamSkip(bs, 1); /* vop_reduced_resolution */                                  BitstreamSkip(bs, 1); /* XXX: vop_reduced_resolution */
222                          }                          }
223    
224                          if (coding_type != I_VOP && fcode_forward)                          if (coding_type != I_VOP && fcode_forward)
# Line 254  Line 256 
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)
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 409  Line 570 
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
# Line 576  Line 739 
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 598  Line 761 
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                                          dec->reduced_resolution_enable = BitstreamGetBit(bs);                                          dec->reduced_resolution_enable = BitstreamGetBit(bs);   /* reduced_resolution_vop_enable */
765                                          if (dec->reduced_resolution_enable)     // reduced_resolution_vop_enable                                          DPRINTF(DPRINTF_HEADER, "reduced_resolution_enable %i", dec->reduced_resolution_enable);
                                         {  
                                                 DPRINTF(DPRINTF_ERROR, "reduced_resolution_vop not supported");  
                                                 //return -1;  
                                         }  
766                                  }                                  }
767                                  else                                  else
768                                  {                                  {
# Line 611  Line 770 
770                                          dec->reduced_resolution_enable = 0;                                          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 694  Line 876 
876                                  dec->time_bp = (uint32_t)                                  dec->time_bp = (uint32_t)
877                                          (dec->time_inc_resolution + dec->last_non_b_time - dec->time)%dec->time_inc_resolution;                                          (dec->time_inc_resolution + dec->last_non_b_time - dec->time)%dec->time_inc_resolution;
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 732  Line 916 
916                                  (coding_type == P_VOP || coding_type == I_VOP)) {                                  (coding_type == P_VOP || coding_type == I_VOP)) {
917    
918                                  *reduced_resolution = BitstreamGetBit(bs);                                  *reduced_resolution = BitstreamGetBit(bs);
919                                    DPRINTF(DPRINTF_HEADER, "reduced_resolution %i", *reduced_resolution);
920                          }                          }
921                          else                          else
922                          {                          {
# Line 767  Line 952 
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)];
# Line 849  Line 1040 
1040    
1041                  } else if (start_code == USERDATA_START_CODE) {                  } else if (start_code == USERDATA_START_CODE) {
1042                          char tmp[256];                          char tmp[256];
1043                      int i;                      int i, version, build;
1044                            char packed;
1045    
1046                          BitstreamSkip(bs, 32);  // user_data_start_code                          BitstreamSkip(bs, 32);  // user_data_start_code
1047    
# Line 866  Line 1058 
1058    
1059                          DPRINTF(DPRINTF_STARTCODE, "<user_data>: %s\n", tmp);                          DPRINTF(DPRINTF_STARTCODE, "<user_data>: %s\n", tmp);
1060    
1061                          if(strncmp(tmp, "DivX501b481p", 12) == 0) {                      /* divx detection */
1062                                  dec->packed_mode = 1;                          i = sscanf(tmp, "DivX%dBuild%d%c", &version, &build, &packed);
1063                                  DPRINTF(DPRINTF_STARTCODE, "packed_mode = %d\n", dec->packed_mode);                          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 917  Line 1116 
1116  {  {
1117          int vol_ver_id=1;          int vol_ver_id=1;
1118    
1119          if ( (pParam->m_quarterpel) || (frame->global_flags & XVID_GMC) )          if ( pParam->m_quarterpel ||  (frame->global_flags & XVID_GMC) ||
1120                     (pParam->global & XVID_GLOBAL_REDUCED))
1121                  vol_ver_id = 2;                  vol_ver_id = 2;
1122    
1123          // video object_start_code & vo_id          // video object_start_code & vo_id
# Line 1029  Line 1229 
1229          if (vol_ver_id != 1)          if (vol_ver_id != 1)
1230          {          {
1231                  BitstreamPutBit(bs, 0);         // newpred_enable                  BitstreamPutBit(bs, 0);         // newpred_enable
1232                  BitstreamPutBit(bs, 0);         // reduced_resolution_vop_enabled  
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
# Line 1041  Line 1243 
1243    write vop header    write vop header
1244  */  */
1245  void  void
1246  BitstreamWriteVopHeader(Bitstream * const bs,  BitstreamWriteVopHeader(
1247                                                    Bitstream * const bs,
1248                                                  const MBParam * pParam,                                                  const MBParam * pParam,
1249                                                  const FRAMEINFO * const frame,                                                  const FRAMEINFO * const frame,
1250                                                  int vop_coded)                                                  int vop_coded)
# Line 1080  Line 1283 
1283          if ( (frame->coding_type == P_VOP) || (frame->coding_type == S_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) {
# Line 1123  Line 1329 
1329                  // no support for brightness_change!                  // 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    
1337          if (frame->coding_type != I_VOP)          if (frame->coding_type != I_VOP)

Legend:
Removed from v.1.28.2.6  
changed lines
  Added in v.1.28.2.11

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