[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.8, Sun Dec 8 06:43:34 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 568  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 872  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 1110  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 1222  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 1234  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 1273  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) {

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

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