[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.39.2.3, Sat Mar 15 17:03:17 2003 UTC revision 1.40, Mon Jun 9 17:07:57 2003 UTC
# Line 640  Line 640 
640                                          {                                          {
641                                                  if (dec->fixed_dimensions)                                                  if (dec->fixed_dimensions)
642                                                  {                                                  {
643                                                          DPRINTF(DPRINTF_ERROR, "decoder width/height does not match bitstream");                                                          DPRINTF(DPRINTF_ERROR, "XVID_DEC_PARAM width/height does not match bitstream");
644                                                          return -1;                                                          return -1;
645                                                  }                                                  }
646                                                  resize = 1;                                                  resize = 1;
# Line 1068  Line 1068 
1068                                  BitstreamSkip(bs, 8);                                  BitstreamSkip(bs, 8);
1069                          }                          }
1070    
1071                          DPRINTF(DPRINTF_STARTCODE, "<user_data>: %s", tmp);                          DPRINTF(DPRINTF_STARTCODE, "<user_data>: %s\n", tmp);
1072    
1073                            /* read xvid bitstream version */
1074                            if(strncmp(tmp, "XviD", 4) == 0) {
1075                                    sscanf(tmp, "XviD%d", &dec->bs_version);
1076                                    DPRINTF(DPRINTF_HEADER, "xvid bitstream version=%i", dec->bs_version);
1077                            }
1078    
1079                      /* divx detection */                      /* divx detection */
1080                          i = sscanf(tmp, "DivX%dBuild%d%c", &version, &build, &packed);                          i = sscanf(tmp, "DivX%dBuild%d%c", &version, &build, &packed);
# Line 1123  Line 1129 
1129  */  */
1130  void  void
1131  BitstreamWriteVolHeader(Bitstream * const bs,  BitstreamWriteVolHeader(Bitstream * const bs,
1132                                                  const MBParam * pParam)                                                  const MBParam * pParam,
1133                                                    const FRAMEINFO * const frame)
1134  {  {
1135          static const unsigned int vo_id = 0;          static const unsigned int vo_id = 0;
1136          static const unsigned int vol_id = 0;          static const unsigned int vol_id = 0;
1137          int vol_ver_id=1;          int vol_ver_id=1;
1138          int profile = 0x03;     /* simple profile/level 3 */          int profile = 0x03;     /* simple profile/level 3 */
1139    
1140          if ( (pParam->vol_flags & XVID_QUARTERPEL) ||          if ( pParam->m_quarterpel ||  (frame->global_flags & XVID_GMC) ||
1141           (pParam->vol_flags & XVID_GMC) ||                   (pParam->global & XVID_GLOBAL_REDUCED))
                  (pParam->vol_flags & XVID_REDUCED_ENABLE))  
1142                  vol_ver_id = 2;                  vol_ver_id = 2;
1143    
1144          if ((pParam->vol_flags & XVID_REDUCED_ENABLE))          if ((pParam->global & XVID_GLOBAL_REDUCED))
1145                  profile = 0x93; /* advanced realtime simple profile/level 3 */                  profile = 0x93; /* advanced realtime simple profile/level 3 */
1146    
1147          if ((pParam->vol_flags & XVID_QUARTERPEL) ||          if (pParam->m_quarterpel ||  (frame->global_flags & XVID_GMC))
         (pParam->vol_flags & XVID_GMC))  
1148                  profile = 0xf3; /* advanced simple profile/level 2 */                  profile = 0xf3; /* advanced simple profile/level 2 */
1149    
1150          // visual_object_sequence_start_code          // visual_object_sequence_start_code
# Line 1204  Line 1209 
1209    
1210          WRITE_MARKER();          WRITE_MARKER();
1211    
     if (pParam->fincr>0) {  
1212              BitstreamPutBit(bs, 1);             // fixed_vop_rate = 1              BitstreamPutBit(bs, 1);             // fixed_vop_rate = 1
1213              BitstreamPutBits(bs, pParam->fincr, log2bin(pParam->fbase));        // fixed_vop_time_increment              BitstreamPutBits(bs, pParam->fincr, log2bin(pParam->fbase));        // fixed_vop_time_increment
     }else{  
         BitstreamPutBit(bs, 0);         // fixed_vop_rate = 0  
     }  
1214    
1215          WRITE_MARKER();          WRITE_MARKER();
1216          BitstreamPutBits(bs, pParam->width, 13);        // width          BitstreamPutBits(bs, pParam->width, 13);        // width
# Line 1217  Line 1218 
1218          BitstreamPutBits(bs, pParam->height, 13);       // height          BitstreamPutBits(bs, pParam->height, 13);       // height
1219          WRITE_MARKER();          WRITE_MARKER();
1220    
1221          BitstreamPutBit(bs, pParam->vol_flags & XVID_INTERLACING);      // interlace          BitstreamPutBit(bs, frame->global_flags & XVID_INTERLACING);    // interlace
1222          BitstreamPutBit(bs, 1);         // obmc_disable (overlapped block motion compensation)          BitstreamPutBit(bs, 1);         // obmc_disable (overlapped block motion compensation)
1223    
1224          if (vol_ver_id != 1)          if (vol_ver_id != 1)
1225          {       if ((pParam->vol_flags & XVID_GMC))          {       if (frame->global_flags & XVID_GMC)
1226                  {       BitstreamPutBits(bs, 2, 2);             // sprite_enable=='GMC'                  {       BitstreamPutBits(bs, 2, 2);             // sprite_enable=='GMC'
1227                          BitstreamPutBits(bs, 2, 6);             // no_of_sprite_warping_points                          BitstreamPutBits(bs, 2, 6);             // no_of_sprite_warping_points
1228                          BitstreamPutBits(bs, 3, 2);             // sprite_warping_accuracy 0==1/2, 1=1/4, 2=1/8, 3=1/16                          BitstreamPutBits(bs, 3, 2);             // sprite_warping_accuracy 0==1/2, 1=1/4, 2=1/8, 3=1/16
# Line 1239  Line 1240 
1240          BitstreamPutBit(bs, 0);         // not_8_bit          BitstreamPutBit(bs, 0);         // not_8_bit
1241    
1242          // quant_type   0=h.263  1=mpeg4(quantizer tables)          // quant_type   0=h.263  1=mpeg4(quantizer tables)
1243          BitstreamPutBit(bs, pParam->vol_flags & XVID_MPEGQUANT);          BitstreamPutBit(bs, pParam->m_quant_type);
1244    
1245          if ((pParam->vol_flags & XVID_MPEGQUANT)) {          if (pParam->m_quant_type) {
1246                  BitstreamPutBit(bs, get_intra_matrix_status()); // load_intra_quant_mat                  BitstreamPutBit(bs, get_intra_matrix_status()); // load_intra_quant_mat
1247                  if (get_intra_matrix_status()) {                  if (get_intra_matrix_status()) {
1248                          bs_put_matrix(bs, get_intra_matrix());                          bs_put_matrix(bs, get_intra_matrix());
# Line 1255  Line 1256 
1256          }          }
1257    
1258          if (vol_ver_id != 1) {          if (vol_ver_id != 1) {
1259                  if ((pParam->vol_flags & XVID_QUARTERPEL))                  if (pParam->m_quarterpel)
1260                          BitstreamPutBit(bs, 1);         //  quarterpel                          BitstreamPutBit(bs, 1);         //  quarterpel
1261                  else                  else
1262                          BitstreamPutBit(bs, 0);         // no quarterpel                          BitstreamPutBit(bs, 0);         // no quarterpel
# Line 1269  Line 1270 
1270          {          {
1271                  BitstreamPutBit(bs, 0);         // newpred_enable                  BitstreamPutBit(bs, 0);         // newpred_enable
1272    
1273                  BitstreamPutBit(bs, (pParam->vol_flags & XVID_REDUCED_ENABLE)?1:0);                  BitstreamPutBit(bs, (pParam->global & XVID_GLOBAL_REDUCED)?1:0);
1274                                                                          /* reduced_resolution_vop_enabled */                                                                          /* reduced_resolution_vop_enabled */
1275          }          }
1276    
1277          BitstreamPutBit(bs, 0);         // scalability          BitstreamPutBit(bs, 0);         // scalability
1278    
1279          /* fake divx5 id, to ensure compatibility with divx5 decoder */          /* fake divx5 id, to ensure compatibility with divx5 decoder */
1280  #define DIVX5_ID "DivX000b000p"  #define DIVX5_ID "DivX501b481p"
1281          if (pParam->max_bframes > 0 && (pParam->global_flags & XVID_PACKED)) {          if (pParam->max_bframes > 0 && (pParam->global & XVID_GLOBAL_PACKED)) {
1282                  BitstreamWriteUserData(bs, DIVX5_ID, strlen(DIVX5_ID));                  BitstreamWriteUserData(bs, DIVX5_ID, strlen(DIVX5_ID));
1283          }          }
1284    
# Line 1334  Line 1335 
1335          if ( (frame->coding_type == P_VOP) || (frame->coding_type == S_VOP) )          if ( (frame->coding_type == P_VOP) || (frame->coding_type == S_VOP) )
1336                  BitstreamPutBits(bs, frame->rounding_type, 1);                  BitstreamPutBits(bs, frame->rounding_type, 1);
1337    
1338          if ((frame->vol_flags & XVID_REDUCED_ENABLE))          if ((pParam->global & XVID_GLOBAL_REDUCED))
1339                  BitstreamPutBit(bs, (frame->vop_flags & XVID_REDUCED)?1:0);                  BitstreamPutBit(bs, (frame->global_flags & XVID_REDUCED)?1:0);
1340    
1341          BitstreamPutBits(bs, 0, 3);     // intra_dc_vlc_threshold          BitstreamPutBits(bs, 0, 3);     // intra_dc_vlc_threshold
1342    
1343          if ((frame->vol_flags & XVID_INTERLACING)) {          if (frame->global_flags & XVID_INTERLACING) {
1344                  BitstreamPutBit(bs, (frame->vop_flags & XVID_TOPFIELDFIRST));                  BitstreamPutBit(bs, (frame->global_flags & XVID_TOPFIELDFIRST));
1345                  BitstreamPutBit(bs, (frame->vop_flags & XVID_ALTERNATESCAN));                  BitstreamPutBit(bs, (frame->global_flags & XVID_ALTERNATESCAN));
1346          }          }
1347    
1348          if (frame->coding_type == S_VOP) {          if (frame->coding_type == S_VOP) {
# Line 1355  Line 1356 
1356                                  bs_put_spritetrajectory(bs, frame->warp.duv[k].y ); // dv[k]                                  bs_put_spritetrajectory(bs, frame->warp.duv[k].y ); // dv[k]
1357                                  WRITE_MARKER();                                  WRITE_MARKER();
1358    
1359                          if ((frame->vol_flags & XVID_QUARTERPEL))                          if (pParam->m_quarterpel)
1360                          {                          {
1361                                  DPRINTF(DPRINTF_HEADER,"sprite_warping_point[%i] xy=(%i,%i) *QPEL*", k, frame->warp.duv[k].x/2, frame->warp.duv[k].y/2);                                  DPRINTF(DPRINTF_HEADER,"sprite_warping_point[%i] xy=(%i,%i) *QPEL*", k, frame->warp.duv[k].x/2, frame->warp.duv[k].y/2);
1362                          }                          }

Legend:
Removed from v.1.39.2.3  
changed lines
  Added in v.1.40

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