[svn] / branches / dev-api-4 / xvidcore / src / motion / motion_est.c Repository:
ViewVC logotype

Diff of /branches/dev-api-4/xvidcore/src/motion/motion_est.c

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

revision 886, Fri Feb 21 14:49:29 2003 UTC revision 963, Sat Mar 29 12:01:36 2003 UTC
# Line 249  Line 249 
249          ref1 = GetReferenceB(halfpel_x, halfpel_y, dir, data);          ref1 = GetReferenceB(halfpel_x, halfpel_y, dir, data);
250          ref1 += 8 * (block&1) + 8 * (block>>1) * iEdgedWidth;          ref1 += 8 * (block&1) + 8 * (block>>1) * iEdgedWidth;
251          switch( ((x&1)<<1) + (y&1) ) {          switch( ((x&1)<<1) + (y&1) ) {
252          case 0: // pure halfpel position          case 3: // x and y in qpel resolution - the "corners" (top left/right and
253                  return (uint8_t *) ref1;                          // bottom left/right) during qpel refinement
254                    ref2 = GetReferenceB(halfpel_x, y - halfpel_y, dir, data);
255                    ref3 = GetReferenceB(x - halfpel_x, halfpel_y, dir, data);
256                    ref4 = GetReferenceB(x - halfpel_x, y - halfpel_y, dir, data);
257                    ref2 += 8 * (block&1) + 8 * (block>>1) * iEdgedWidth;
258                    ref3 += 8 * (block&1) + 8 * (block>>1) * iEdgedWidth;
259                    ref4 += 8 * (block&1) + 8 * (block>>1) * iEdgedWidth;
260                    interpolate8x8_avg4(Reference, ref1, ref2, ref3, ref4, iEdgedWidth, rounding);
261                  break;                  break;
262    
263          case 1: // x halfpel, y qpel - top or bottom during qpel refinement          case 1: // x halfpel, y qpel - top or bottom during qpel refinement
# Line 265  Line 272 
272                  interpolate8x8_avg2(Reference, ref1, ref2, iEdgedWidth, rounding, 8);                  interpolate8x8_avg2(Reference, ref1, ref2, iEdgedWidth, rounding, 8);
273                  break;                  break;
274    
275          default: // x and y in qpel resolution - the "corners" (top left/right and          default: // pure halfpel position
276                           // bottom left/right) during qpel refinement                  return (uint8_t *) ref1;
277                  ref2 = GetReferenceB(halfpel_x, y - halfpel_y, dir, data);  
                 ref3 = GetReferenceB(x - halfpel_x, halfpel_y, dir, data);  
                 ref4 = GetReferenceB(x - halfpel_x, y - halfpel_y, dir, data);  
                 ref2 += 8 * (block&1) + 8 * (block>>1) * iEdgedWidth;  
                 ref3 += 8 * (block&1) + 8 * (block>>1) * iEdgedWidth;  
                 ref4 += 8 * (block&1) + 8 * (block>>1) * iEdgedWidth;  
                 interpolate8x8_avg4(Reference, ref1, ref2, ref3, ref4, iEdgedWidth, rounding);  
                 break;  
278          }          }
279          return Reference;          return Reference;
280  }  }
# Line 319  Line 319 
319                  interpolate8x8_avg2(Reference+8*iEdgedWidth+8, ref1+8*iEdgedWidth+8, ref2+8*iEdgedWidth+8, iEdgedWidth, rounding, 8);                  interpolate8x8_avg2(Reference+8*iEdgedWidth+8, ref1+8*iEdgedWidth+8, ref2+8*iEdgedWidth+8, iEdgedWidth, rounding, 8);
320                  break;                  break;
321    
322          case 0: // pure halfpel position          default: // pure halfpel position
323                  return (uint8_t *) ref1;                  return (uint8_t *) ref1;
324          }          }
325          return Reference;          return Reference;
# Line 405  Line 405 
405          uint32_t t;          uint32_t t;
406          const uint8_t * Reference;          const uint8_t * Reference;
407    
408          if ( (!(x&1) && x !=0) || (!(y&1) && y !=0) || //non-zero integer value          if ( (!(x&1) && x !=0) || (!(y&1) && y !=0) || //non-zero even value
409                  (x > data->max_dx) || (x < data->min_dx)                  (x > data->max_dx) || (x < data->min_dx)
410                  || (y > data->max_dy) || (y < data->min_dy) ) return;                  || (y > data->max_dy) || (y < data->min_dy) ) return;
411    
# Line 440  Line 440 
440          uint32_t t;          uint32_t t;
441          VECTOR * current;          VECTOR * current;
442    
443          if ( (x > data->max_dx) | ( x < data->min_dx)          if ( (x > data->max_dx) || ( x < data->min_dx)
444                  | (y > data->max_dy) | (y < data->min_dy) ) return;                  || (y > data->max_dy) || (y < data->min_dy) ) return;
445    
446          if (data->rrv && (!(x&1) && x !=0) | (!(y&1) && y !=0) ) return; //non-zero even value          if (data->rrv && (!(x&1) && x !=0) | (!(y&1) && y !=0) ) return; //non-zero even value
447    
# Line 506  Line 506 
506          const uint8_t *ReferenceF, *ReferenceB;          const uint8_t *ReferenceF, *ReferenceB;
507          VECTOR *current;          VECTOR *current;
508    
509          if ( (xf > data->max_dx) | (xf < data->min_dx)          if ((xf > data->max_dx) || (xf < data->min_dx) ||
510                  | (yf > data->max_dy) | (yf < data->min_dy) ) return;                  (yf > data->max_dy) || (yf < data->min_dy))
511                    return;
512    
513          if (!data->qpel_precision) {          if (!data->qpel_precision) {
514                  ReferenceF = GetReference(xf, yf, data);                  ReferenceF = GetReference(xf, yf, data);
# Line 552  Line 553 
553          const uint8_t *ReferenceB;          const uint8_t *ReferenceB;
554          VECTOR mvs, b_mvs;          VECTOR mvs, b_mvs;
555    
556          if (( x > 31) | ( x < -32) | ( y > 31) | (y < -32)) return;          if (( x > 31) || ( x < -32) || ( y > 31) || (y < -32)) return;
557    
558          for (k = 0; k < 4; k++) {          for (k = 0; k < 4; k++) {
559                  mvs.x = data->directmvF[k].x + x;                  mvs.x = data->directmvF[k].x + x;
# Line 565  Line 566 
566                          data->directmvB[k].y                          data->directmvB[k].y
567                          : mvs.y - data->referencemv[k].y);                          : mvs.y - data->referencemv[k].y);
568    
569                  if ( (mvs.x > data->max_dx) | (mvs.x < data->min_dx)                  if ((mvs.x > data->max_dx)   || (mvs.x < data->min_dx)   ||
570                          | (mvs.y > data->max_dy) | (mvs.y < data->min_dy)                          (mvs.y > data->max_dy)   || (mvs.y < data->min_dy)   ||
571                          | (b_mvs.x > data->max_dx) | (b_mvs.x < data->min_dx)                          (b_mvs.x > data->max_dx) || (b_mvs.x < data->min_dx) ||
572                          | (b_mvs.y > data->max_dy) | (b_mvs.y < data->min_dy) ) return;                          (b_mvs.y > data->max_dy) || (b_mvs.y < data->min_dy) )
573                            return;
574    
575                  if (data->qpel) {                  if (data->qpel) {
576                          xcf += mvs.x/2; ycf += mvs.y/2;                          xcf += mvs.x/2; ycf += mvs.y/2;
# Line 610  Line 612 
612          const uint8_t *ReferenceB;          const uint8_t *ReferenceB;
613          VECTOR mvs, b_mvs;          VECTOR mvs, b_mvs;
614    
615          if (( x > 31) | ( x < -32) | ( y > 31) | (y < -32)) return;          if (( x > 31) || ( x < -32) || ( y > 31) || (y < -32)) return;
616    
617          mvs.x = data->directmvF[0].x + x;          mvs.x = data->directmvF[0].x + x;
618          b_mvs.x = ((x == 0) ?          b_mvs.x = ((x == 0) ?
# Line 622  Line 624 
624                  data->directmvB[0].y                  data->directmvB[0].y
625                  : mvs.y - data->referencemv[0].y);                  : mvs.y - data->referencemv[0].y);
626    
627          if ( (mvs.x > data->max_dx) | (mvs.x < data->min_dx)          if ( (mvs.x > data->max_dx) || (mvs.x < data->min_dx)
628                  | (mvs.y > data->max_dy) | (mvs.y < data->min_dy)                  || (mvs.y > data->max_dy) || (mvs.y < data->min_dy)
629                  | (b_mvs.x > data->max_dx) | (b_mvs.x < data->min_dx)                  || (b_mvs.x > data->max_dx) || (b_mvs.x < data->min_dx)
630                  | (b_mvs.y > data->max_dy) | (b_mvs.y < data->min_dy) ) return;                  || (b_mvs.y > data->max_dy) || (b_mvs.y < data->min_dy) ) return;
631    
632          if (data->qpel) {          if (data->qpel) {
633                  xcf = 4*(mvs.x/2); ycf = 4*(mvs.y/2);                  xcf = 4*(mvs.x/2); ycf = 4*(mvs.y/2);
# Line 659  Line 661 
661  CheckCandidateBits16(const int x, const int y, const int Direction, int * const dir, const SearchData * const data)  CheckCandidateBits16(const int x, const int y, const int Direction, int * const dir, const SearchData * const data)
662  {  {
663    
664          static int16_t in[64], coeff[64];          int16_t *in = data->dctSpace, *coeff = data->dctSpace + 64;
665          int32_t bits = 0, sum;          int32_t bits = 0, sum;
666          VECTOR * current;          VECTOR * current;
667          const uint8_t * ptr;          const uint8_t * ptr;
# Line 721  Line 723 
723                  }                  }
724          }          }
725    
726          bits += cbpy_tab[15-(cbp>>2)].len;          bits += xvid_cbpy_tab[15-(cbp>>2)].len;
727          bits += mcbpc_inter_tab[(MODE_INTER & 7) | ((cbp & 3) << 3)].len;          bits += mcbpc_inter_tab[(MODE_INTER & 7) | ((cbp & 3) << 3)].len;
728    
729          if (bits < data->iMinSAD[0]) {          if (bits < data->iMinSAD[0]) {
# Line 744  Line 746 
746  CheckCandidateBits8(const int x, const int y, const int Direction, int * const dir, const SearchData * const data)  CheckCandidateBits8(const int x, const int y, const int Direction, int * const dir, const SearchData * const data)
747  {  {
748    
749          static int16_t in[64], coeff[64];          int16_t *in = data->dctSpace, *coeff = data->dctSpace + 64;
750          int32_t sum, bits;          int32_t sum, bits;
751          VECTOR * current;          VECTOR * current;
752          const uint8_t * ptr;          const uint8_t * ptr;
# Line 950  Line 952 
952                                                          const uint32_t stride, const uint32_t iQuant, int rrv)                                                          const uint32_t stride, const uint32_t iQuant, int rrv)
953    
954  {  {
955            int offset = (x + y*stride)*8;
956          if(!rrv) {          if(!rrv) {
957                  uint32_t sadC = sad8(current->u + x*8 + y*stride*8,                  uint32_t sadC = sad8(current->u + offset,
958                                                  reference->u + x*8 + y*stride*8, stride);                                                  reference->u + offset, stride);
959                  if (sadC > iQuant * MAX_CHROMA_SAD_FOR_SKIP) return 0;                  if (sadC > iQuant * MAX_CHROMA_SAD_FOR_SKIP) return 0;
960                  sadC += sad8(current->v + (x + y*stride)*8,                  sadC += sad8(current->v + offset,
961                                                  reference->v + (x + y*stride)*8, stride);                                                  reference->v + offset, stride);
962                  if (sadC > iQuant * MAX_CHROMA_SAD_FOR_SKIP) return 0;                  if (sadC > iQuant * MAX_CHROMA_SAD_FOR_SKIP) return 0;
963                  return 1;                  return 1;
964    
965          } else {          } else {
966                  uint32_t sadC = sad16(current->u + x*16 + y*stride*16,                  uint32_t sadC = sad16(current->u + 2*offset,
967                                                  reference->u + x*16 + y*stride*16, stride, 256*4096);                                                  reference->u + 2*offset, stride, 256*4096);
968                  if (sadC > iQuant * MAX_CHROMA_SAD_FOR_SKIP*4) return 0;                  if (sadC > iQuant * MAX_CHROMA_SAD_FOR_SKIP*4) return 0;
969                  sadC += sad16(current->v + (x + y*stride)*16,                  sadC += sad16(current->v + 2*offset,
970                                                  reference->v + (x + y*stride)*16, stride, 256*4096);                                                  reference->v + 2*offset, stride, 256*4096);
971                  if (sadC > iQuant * MAX_CHROMA_SAD_FOR_SKIP*4) return 0;                  if (sadC > iQuant * MAX_CHROMA_SAD_FOR_SKIP*4) return 0;
972                  return 1;                  return 1;
973          }          }
# Line 995  Line 998 
998          uint32_t mb_width = pParam->mb_width;          uint32_t mb_width = pParam->mb_width;
999          uint32_t mb_height = pParam->mb_height;          uint32_t mb_height = pParam->mb_height;
1000          const uint32_t iEdgedWidth = pParam->edged_width;          const uint32_t iEdgedWidth = pParam->edged_width;
1001          const uint32_t MotionFlags = MakeGoodMotionFlags(current->motion_flags, current->global_flags);          const uint32_t MotionFlags = MakeGoodMotionFlags(current->motion_flags, current->vop_flags, current->vol_flags);
1002    
1003          uint32_t x, y;          uint32_t x, y;
1004          uint32_t iIntra = 0;          uint32_t iIntra = 0;
1005          int32_t quant = current->quant, sad00;          int32_t quant = current->quant, sad00;
1006            int skip_thresh = \
1007                    INITIAL_SKIP_THRESH * \
1008                    (current->vop_flags & XVID_VOP_REDUCED ? 4:1) * \
1009                    (current->vop_flags & XVID_VOP_MODEDECISION_BITS ? 2:1);
1010    
1011          // some pre-initialized thingies for SearchP          // some pre-initialized thingies for SearchP
1012          int32_t temp[8];          int32_t temp[8];
1013          VECTOR currentMV[5];          VECTOR currentMV[5];
1014          VECTOR currentQMV[5];          VECTOR currentQMV[5];
1015          int32_t iMinSAD[5];          int32_t iMinSAD[5];
1016            DECLARE_ALIGNED_MATRIX(dct_space, 2, 64, int16_t, CACHE_LINE);
1017          SearchData Data;          SearchData Data;
1018          memset(&Data, 0, sizeof(SearchData));          memset(&Data, 0, sizeof(SearchData));
1019          Data.iEdgedWidth = iEdgedWidth;          Data.iEdgedWidth = iEdgedWidth;
# Line 1015  Line 1023 
1023          Data.temp = temp;          Data.temp = temp;
1024          Data.iFcode = current->fcode;          Data.iFcode = current->fcode;
1025          Data.rounding = pParam->m_rounding_type;          Data.rounding = pParam->m_rounding_type;
1026          Data.qpel = pParam->m_quarterpel;          Data.qpel = (current->vol_flags & XVID_VOL_QUARTERPEL ? 1:0);
1027          Data.chroma = MotionFlags & PMV_CHROMA16;          Data.chroma = MotionFlags & XVID_ME_CHROMA16;
1028          Data.rrv = current->global_flags & XVID_REDUCED;          Data.rrv = (current->vop_flags & XVID_VOP_REDUCED ? 1:0);
1029            Data.dctSpace = dct_space;
1030    
1031          if ((current->global_flags & XVID_REDUCED)) {          if ((current->vop_flags & XVID_VOP_REDUCED)) {
1032                  mb_width = (pParam->width + 31) / 32;                  mb_width = (pParam->width + 31) / 32;
1033                  mb_height = (pParam->height + 31) / 32;                  mb_height = (pParam->height + 31) / 32;
1034                  Data.qpel = 0;                  Data.qpel = 0;
# Line 1052  Line 1061 
1061    
1062                          sad00 = pMB->sad16;                          sad00 = pMB->sad16;
1063    
1064                          if (!(current->global_flags & XVID_LUMIMASKING)) {                          if (pMB->dquant != 0) {
                                 pMB->dquant = NO_CHANGE;  
                         } else {  
                                 if (pMB->dquant != NO_CHANGE) {  
1065                                          quant += DQtab[pMB->dquant];                                          quant += DQtab[pMB->dquant];
1066                                          if (quant > 31) quant = 31;                                          if (quant > 31) quant = 31;
1067                                          else if (quant < 1) quant = 1;                                          else if (quant < 1) quant = 1;
1068                                  }                                  }
1069                          }  
1070                          pMB->quant = current->quant;                          pMB->quant = current->quant;
1071    
1072  //initial skip decision  //initial skip decision
1073  /* no early skip for GMC (global vector = skip vector is unknown!)  */  /* no early skip for GMC (global vector = skip vector is unknown!)  */
1074                          if (!(current->global_flags & XVID_GMC))        { /* no fast SKIP for S(GMC)-VOPs */                          if (!(current->vol_flags & XVID_VOL_GMC))       { /* no fast SKIP for S(GMC)-VOPs */
1075                                  if (pMB->dquant == NO_CHANGE && sad00 < pMB->quant * INITIAL_SKIP_THRESH * (Data.rrv ? 4:1) )                                  if (pMB->dquant == 0 && sad00 < pMB->quant * skip_thresh)
1076                                          if (Data.chroma || SkipDecisionP(pCurrent, pRef, x, y, iEdgedWidth/2, pMB->quant, Data.rrv)) {                                          if (Data.chroma || SkipDecisionP(pCurrent, pRef, x, y, iEdgedWidth/2, pMB->quant, Data.rrv)) {
1077                                                  SkipMacroblockP(pMB, sad00);                                                  SkipMacroblockP(pMB, sad00);
1078                                                  continue;                                                  continue;
# Line 1074  Line 1080 
1080                          }                          }
1081    
1082                          SearchP(pRef, pRefH->y, pRefV->y, pRefHV->y, pCurrent, x,                          SearchP(pRef, pRefH->y, pRefV->y, pRefHV->y, pCurrent, x,
1083                                                  y, MotionFlags, current->global_flags, pMB->quant,                                                  y, MotionFlags, current->vol_flags, pMB->quant,
1084                                                  &Data, pParam, pMBs, reference->mbs,                                                  &Data, pParam, pMBs, reference->mbs,
1085                                                  current->global_flags & XVID_INTER4V, pMB);                                                  current->vop_flags & XVID_VOP_INTER4V, pMB);
1086    
1087  /* final skip decision, a.k.a. "the vector you found, really that good?" */  /* final skip decision, a.k.a. "the vector you found, really that good?" */
1088                          if (!(current->global_flags & XVID_GMC))        {                          if (!(current->vol_flags & XVID_VOL_GMC || current->vop_flags & XVID_VOP_MODEDECISION_BITS)) {
1089                                  if ( pMB->dquant == NO_CHANGE && sad00 < pMB->quant * MAX_SAD00_FOR_SKIP) {                                  if ( pMB->dquant == 0 && sad00 < pMB->quant * MAX_SAD00_FOR_SKIP) {
                                         if (!(current->global_flags & XVID_MODEDECISION_BITS)) {  
1090                                                  if ( (100*pMB->sad16)/(sad00+1) > FINAL_SKIP_THRESH * (Data.rrv ? 4:1) )                                                  if ( (100*pMB->sad16)/(sad00+1) > FINAL_SKIP_THRESH * (Data.rrv ? 4:1) )
1091                                                          if (Data.chroma || SkipDecisionP(pCurrent, pRef, x, y, iEdgedWidth/2, pMB->quant, Data.rrv))                                                          if (Data.chroma || SkipDecisionP(pCurrent, pRef, x, y, iEdgedWidth/2, pMB->quant, Data.rrv))
1092                                                                  SkipMacroblockP(pMB, sad00);                                                                  SkipMacroblockP(pMB, sad00);
                                         } else { // BITS mode decision  
                                                 if (pMB->sad16 > 10)  
                                                         SkipMacroblockP(pMB, sad00);  // more than 10 bits would be used for this MB - skip  
   
                                         }  
1093                                  }                                  }
1094                          }                          }
1095                          if (pMB->mode == MODE_INTRA)                          if (pMB->mode == MODE_INTRA)
# Line 1097  Line 1097 
1097                  }                  }
1098          }          }
1099    
1100          if (current->global_flags & XVID_GMC )  /* GMC only for S(GMC)-VOPs */          if (current->vol_flags & XVID_VOL_GMC ) /* GMC only for S(GMC)-VOPs */
         {  
1101                  current->warp = GlobalMotionEst( pMBs, pParam, current, reference, pRefH, pRefV, pRefHV);                  current->warp = GlobalMotionEst( pMBs, pParam, current, reference, pRefH, pRefV, pRefHV);
1102          }  
1103          return 0;          return 0;
1104  }  }
1105    
# Line 1172  Line 1171 
1171                  const int x, const int y,                  const int x, const int y,
1172                  const MBParam * const pParam,                  const MBParam * const pParam,
1173                  const uint32_t MotionFlags,                  const uint32_t MotionFlags,
1174                  const uint32_t GlobalFlags)                  const uint32_t VopFlags)
1175  {  {
1176    
1177          int mode = MODE_INTER;          int mode = MODE_INTER;
1178    
1179          if (!(GlobalFlags & XVID_MODEDECISION_BITS)) { //normal, fast, SAD-based mode decision          if (!(VopFlags & XVID_VOP_MODEDECISION_BITS)) { //normal, fast, SAD-based mode decision
 //              int intra = 0;  
1180                  int sad;                  int sad;
1181                  int InterBias = MV16_INTER_BIAS;                  int InterBias = MV16_INTER_BIAS;
1182                  if (inter4v == 0 || Data->iMinSAD[0] < Data->iMinSAD[1] + Data->iMinSAD[2] +                  if (inter4v == 0 || Data->iMinSAD[0] < Data->iMinSAD[1] + Data->iMinSAD[2] +
1183                          Data->iMinSAD[3] + Data->iMinSAD[4] + IMV16X16 * (int32_t)iQuant) {                          Data->iMinSAD[3] + Data->iMinSAD[4] + IMV16X16 * (int32_t)iQuant) {
1184                                  mode = 0; //inter                          mode = MODE_INTER;
1185                                  sad = Data->iMinSAD[0];                                  sad = Data->iMinSAD[0];
1186                  } else {                  } else {
1187                          mode = MODE_INTER4V;                          mode = MODE_INTER4V;
# Line 1211  Line 1209 
1209                                  dev16(Data->Cur + 8*Data->iEdgedWidth, Data->iEdgedWidth) +                                  dev16(Data->Cur + 8*Data->iEdgedWidth, Data->iEdgedWidth) +
1210                                  dev16(Data->Cur+8+8*Data->iEdgedWidth, Data->iEdgedWidth);                                  dev16(Data->Cur+8+8*Data->iEdgedWidth, Data->iEdgedWidth);
1211    
1212                          if (deviation < (sad - InterBias))  return MODE_INTRA;// intra                          if (deviation < (sad - InterBias)) return MODE_INTRA;
1213                  }                  }
1214                  return mode;                  return mode;
1215    
# Line 1220  Line 1218 
1218                  int bits, intra, i;                  int bits, intra, i;
1219                  VECTOR backup[5], *v;                  VECTOR backup[5], *v;
1220                  Data->lambda16 = iQuant;                  Data->lambda16 = iQuant;
1221                  Data->lambda8 = pParam->m_quant_type;          Data->lambda8 = (pParam->vol_flags & XVID_VOL_MPEGQUANT)?1:0;
1222    
1223                  v = Data->qpel ? Data->currentQMV : Data->currentMV;                  v = Data->qpel ? Data->currentQMV : Data->currentMV;
1224                  for (i = 0; i < 5; i++) {                  for (i = 0; i < 5; i++) {
# Line 1232  Line 1230 
1230                  if (bits == 0) return MODE_INTER; // quick stop                  if (bits == 0) return MODE_INTER; // quick stop
1231    
1232                  if (inter4v) {                  if (inter4v) {
1233                          int inter4v = CountMBBitsInter4v(Data, pMB, pMBs, x, y, pParam, MotionFlags, backup);                          int bits_inter4v = CountMBBitsInter4v(Data, pMB, pMBs, x, y, pParam, MotionFlags, backup);
1234                          if (inter4v < bits) { Data->iMinSAD[0] = bits = inter4v; mode = MODE_INTER4V; }                          if (bits_inter4v < bits) { Data->iMinSAD[0] = bits = bits_inter4v; mode = MODE_INTER4V; }
1235                  }                  }
1236    
1237    
# Line 1254  Line 1252 
1252                  const int x,                  const int x,
1253                  const int y,                  const int y,
1254                  const uint32_t MotionFlags,                  const uint32_t MotionFlags,
1255                  const uint32_t GlobalFlags,                  const uint32_t VopFlags,
1256                  const uint32_t iQuant,                  const uint32_t iQuant,
1257                  SearchData * const Data,                  SearchData * const Data,
1258                  const MBParam * const pParam,                  const MBParam * const pParam,
# Line 1289  Line 1287 
1287          Data->lambda8 = lambda_vec8[iQuant];          Data->lambda8 = lambda_vec8[iQuant];
1288          Data->qpel_precision = 0;          Data->qpel_precision = 0;
1289    
1290          if (pMB->dquant != NO_CHANGE) inter4v = 0;          if (pMB->dquant != 0) inter4v = 0;
1291    
1292          for(i = 0; i < 5; i++)          memset(Data->currentMV, 0, 5*sizeof(VECTOR));
                 Data->currentMV[i].x = Data->currentMV[i].y = 0;  
1293    
1294          if (Data->qpel) Data->predMV = get_qpmv2(pMBs, pParam->mb_width, 0, x, y, 0);          if (Data->qpel) Data->predMV = get_qpmv2(pMBs, pParam->mb_width, 0, x, y, 0);
1295          else Data->predMV = pmv[0];          else Data->predMV = pmv[0];
# Line 1304  Line 1301 
1301          Data->iMinSAD[3] = pMB->sad8[2];          Data->iMinSAD[3] = pMB->sad8[2];
1302          Data->iMinSAD[4] = pMB->sad8[3];          Data->iMinSAD[4] = pMB->sad8[3];
1303    
1304          if ((!(GlobalFlags & XVID_MODEDECISION_BITS)) || (x | y)) {          if ((!(VopFlags & XVID_VOP_MODEDECISION_BITS)) || (x | y)) {
1305                  threshA = Data->temp[0]; // that's where we keep this SAD atm                  threshA = Data->temp[0]; // that's where we keep this SAD atm
1306                  if (threshA < 512) threshA = 512;                  if (threshA < 512) threshA = 512;
1307                  else if (threshA > 1024) threshA = 1024;                  else if (threshA > 1024) threshA = 1024;
# Line 1330  Line 1327 
1327          if ((Data->iMinSAD[0] <= threshA) ||          if ((Data->iMinSAD[0] <= threshA) ||
1328                          (MVequal(Data->currentMV[0], (prevMBs+x+y*pParam->mb_width)->mvs[0]) &&                          (MVequal(Data->currentMV[0], (prevMBs+x+y*pParam->mb_width)->mvs[0]) &&
1329                          (Data->iMinSAD[0] < (prevMBs+x+y*pParam->mb_width)->sad16))) {                          (Data->iMinSAD[0] < (prevMBs+x+y*pParam->mb_width)->sad16))) {
1330                  if (!(GlobalFlags & XVID_MODEDECISION_BITS)) inter4v = 0;       }                  if (!(VopFlags & XVID_VOP_MODEDECISION_BITS)) inter4v = 0;      }
1331          else {          else {
1332    
1333                  MainSearchFunc * MainSearchPtr;                  MainSearchFunc * MainSearchPtr;
1334                  if (MotionFlags & PMV_USESQUARES16) MainSearchPtr = SquareSearch;                  if (MotionFlags & XVID_ME_USESQUARES16) MainSearchPtr = SquareSearch;
1335                  else if (MotionFlags & PMV_ADVANCEDDIAMOND16) MainSearchPtr = AdvDiamondSearch;                  else if (MotionFlags & XVID_ME_ADVANCEDDIAMOND16) MainSearchPtr = AdvDiamondSearch;
1336                          else MainSearchPtr = DiamondSearch;                          else MainSearchPtr = DiamondSearch;
1337    
1338                  MainSearchPtr(Data->currentMV->x, Data->currentMV->y, Data, iDirection);                  MainSearchPtr(Data->currentMV->x, Data->currentMV->y, Data, iDirection);
# Line 1344  Line 1341 
1341          note that this search is/might be done in halfpel positions,          note that this search is/might be done in halfpel positions,
1342          which makes it more different than the diamond above */          which makes it more different than the diamond above */
1343    
1344                  if (MotionFlags & PMV_EXTSEARCH16) {                  if (MotionFlags & XVID_ME_EXTSEARCH16) {
1345                          int32_t bSAD;                          int32_t bSAD;
1346                          VECTOR startMV = Data->predMV, backupMV = Data->currentMV[0];                          VECTOR startMV = Data->predMV, backupMV = Data->currentMV[0];
1347                          if (Data->rrv) {                          if (Data->rrv) {
# Line 1375  Line 1372 
1372                  }                  }
1373          }          }
1374    
1375          if (MotionFlags & PMV_HALFPELREFINE16)          if (MotionFlags & XVID_ME_HALFPELREFINE16)
1376                  if ((!(MotionFlags & HALFPELREFINE16_BITS)) || Data->iMinSAD[0] < 200*(int)iQuant)                  if ((!(MotionFlags & XVID_ME_HALFPELREFINE16_BITS)) || Data->iMinSAD[0] < 200*(int)iQuant)
1377                          SubpelRefine(Data);                          SubpelRefine(Data);
1378    
1379          for(i = 0; i < 5; i++) {          for(i = 0; i < 5; i++) {
# Line 1384  Line 1381 
1381                  Data->currentQMV[i].y = 2 * Data->currentMV[i].y;                  Data->currentQMV[i].y = 2 * Data->currentMV[i].y;
1382          }          }
1383    
1384          if (MotionFlags & PMV_QUARTERPELREFINE16)          if (MotionFlags & XVID_ME_QUARTERPELREFINE16) {
1385                  if ((!(MotionFlags & QUARTERPELREFINE16_BITS)) || (Data->iMinSAD[0] < 200*(int)iQuant)) {  
                         Data->qpel_precision = 1;  
1386                          get_range(&Data->min_dx, &Data->max_dx, &Data->min_dy, &Data->max_dy, x, y, 16,                          get_range(&Data->min_dx, &Data->max_dx, &Data->min_dy, &Data->max_dy, x, y, 16,
1387                                          pParam->width, pParam->height, Data->iFcode, 1, 0);                                          pParam->width, pParam->height, Data->iFcode, 1, 0);
1388    
1389                    if ((!(MotionFlags & XVID_ME_QUARTERPELREFINE16_BITS)) || (Data->iMinSAD[0] < 200*(int)iQuant)) {
1390                            Data->qpel_precision = 1;
1391                          SubpelRefine(Data);                          SubpelRefine(Data);
1392                  }                  }
1393            }
1394    
1395          if ((!(GlobalFlags & XVID_MODEDECISION_BITS)) && (Data->iMinSAD[0] < (int32_t)iQuant * 30)) inter4v = 0;          if ((!(VopFlags & XVID_VOP_MODEDECISION_BITS)) && (Data->iMinSAD[0] < (int32_t)iQuant * 30)) inter4v = 0;
1396    
1397          if (inter4v && (!(GlobalFlags & XVID_MODEDECISION_BITS) ||          if (inter4v && (!(VopFlags & XVID_VOP_MODEDECISION_BITS) ||
1398                          (!(MotionFlags & QUARTERPELREFINE8_BITS)) || (!(MotionFlags & HALFPELREFINE8_BITS)) ||                          (!(MotionFlags & XVID_ME_QUARTERPELREFINE8_BITS)) || (!(MotionFlags & XVID_ME_HALFPELREFINE8_BITS)) ||
1399                          ((!(MotionFlags & EXTSEARCH_BITS)) && (!(MotionFlags&PMV_EXTSEARCH8)) ))) {                          ((!(MotionFlags & XVID_ME_EXTSEARCH_BITS)) && (!(MotionFlags&XVID_ME_EXTSEARCH8)) ))) {
1400                  // if decision is BITS-based and all refinement steps will be done in BITS domain, there is no reason to call this loop                  // if decision is BITS-based and all refinement steps will be done in BITS domain, there is no reason to call this loop
1401    
1402                  SearchData Data8;                  SearchData Data8;
# Line 1408  Line 1407 
1407                  Search8(Data, 2*x, 2*y + 1, MotionFlags, pParam, pMB, pMBs, 2, &Data8);                  Search8(Data, 2*x, 2*y + 1, MotionFlags, pParam, pMB, pMBs, 2, &Data8);
1408                  Search8(Data, 2*x + 1, 2*y + 1, MotionFlags, pParam, pMB, pMBs, 3, &Data8);                  Search8(Data, 2*x + 1, 2*y + 1, MotionFlags, pParam, pMB, pMBs, 3, &Data8);
1409    
1410                  if ((Data->chroma) && (!(GlobalFlags & XVID_MODEDECISION_BITS))) {                  if ((Data->chroma) && (!(VopFlags & XVID_VOP_MODEDECISION_BITS))) {
1411                          // chroma is only used for comparsion to INTER. if the comparsion will be done in BITS domain, there is no reason to compute it                          // chroma is only used for comparsion to INTER. if the comparsion will be done in BITS domain, there is no reason to compute it
1412                          int sumx = 0, sumy = 0;                          int sumx = 0, sumy = 0;
1413                          const int div = 1 + Data->qpel;                          const int div = 1 + Data->qpel;
# Line 1424  Line 1423 
1423                  }                  }
1424          }          }
1425    
1426          inter4v = ModeDecision(iQuant, Data, inter4v, pMB, pMBs, x, y, pParam, MotionFlags, GlobalFlags);          inter4v = ModeDecision(iQuant, Data, inter4v, pMB, pMBs, x, y, pParam, MotionFlags, VopFlags);
1427    
1428          if (Data->rrv) {          if (Data->rrv) {
1429                          Data->currentMV[0].x = RRV_MV_SCALEDOWN(Data->currentMV[0].x);                          Data->currentMV[0].x = RRV_MV_SCALEDOWN(Data->currentMV[0].x);
# Line 1483  Line 1482 
1482    
1483          *(Data->iMinSAD) += (Data->lambda8 * i * (*Data->iMinSAD + NEIGH_8X8_BIAS))>>10;          *(Data->iMinSAD) += (Data->lambda8 * i * (*Data->iMinSAD + NEIGH_8X8_BIAS))>>10;
1484    
1485          if (MotionFlags & (PMV_EXTSEARCH8|PMV_HALFPELREFINE8|PMV_QUARTERPELREFINE8)) {          if (MotionFlags & (XVID_ME_EXTSEARCH8|XVID_ME_HALFPELREFINE8|XVID_ME_QUARTERPELREFINE8)) {
1486                  if (Data->rrv) i = 2; else i = 1;                  if (Data->rrv) i = 2; else i = 1;
1487    
1488                  Data->Ref = OldData->Ref + i * 8 * ((block&1) + Data->iEdgedWidth*(block>>1));                  Data->Ref = OldData->Ref + i * 8 * ((block&1) + Data->iEdgedWidth*(block>>1));
# Line 1500  Line 1499 
1499                  if (!Data->rrv) CheckCandidate = CheckCandidate8;                  if (!Data->rrv) CheckCandidate = CheckCandidate8;
1500                  else CheckCandidate = CheckCandidate16no4v;                  else CheckCandidate = CheckCandidate16no4v;
1501    
1502                  if (MotionFlags & PMV_EXTSEARCH8 && (!(MotionFlags & EXTSEARCH_BITS))) {                  if (MotionFlags & XVID_ME_EXTSEARCH8 && (!(MotionFlags & XVID_ME_EXTSEARCH_BITS))) {
1503                          int32_t temp_sad = *(Data->iMinSAD); // store current MinSAD                          int32_t temp_sad = *(Data->iMinSAD); // store current MinSAD
1504    
1505                          MainSearchFunc *MainSearchPtr;                          MainSearchFunc *MainSearchPtr;
1506                          if (MotionFlags & PMV_USESQUARES8) MainSearchPtr = SquareSearch;                          if (MotionFlags & XVID_ME_USESQUARES8) MainSearchPtr = SquareSearch;
1507                                  else if (MotionFlags & PMV_ADVANCEDDIAMOND8) MainSearchPtr = AdvDiamondSearch;                                  else if (MotionFlags & XVID_ME_ADVANCEDDIAMOND8) MainSearchPtr = AdvDiamondSearch;
1508                                          else MainSearchPtr = DiamondSearch;                                          else MainSearchPtr = DiamondSearch;
1509    
1510                          MainSearchPtr(Data->currentMV->x, Data->currentMV->y, Data, 255);                          MainSearchPtr(Data->currentMV->x, Data->currentMV->y, Data, 255);
# Line 1516  Line 1515 
1515                          }                          }
1516                  }                  }
1517    
1518                  if (MotionFlags & PMV_HALFPELREFINE8) {                  if (MotionFlags & XVID_ME_HALFPELREFINE8) {
1519                          int32_t temp_sad = *(Data->iMinSAD); // store current MinSAD                          int32_t temp_sad = *(Data->iMinSAD); // store current MinSAD
1520    
1521                          SubpelRefine(Data); // perform halfpel refine of current best vector                          SubpelRefine(Data); // perform halfpel refine of current best vector
# Line 1527  Line 1526 
1526                          }                          }
1527                  }                  }
1528    
1529                  if (Data->qpel && MotionFlags & PMV_QUARTERPELREFINE8) {                  if (Data->qpel && MotionFlags & XVID_ME_QUARTERPELREFINE8) {
1530                                  Data->qpel_precision = 1;                                  Data->qpel_precision = 1;
1531                                  get_range(&Data->min_dx, &Data->max_dx, &Data->min_dy, &Data->max_dy, x, y, 8,                                  get_range(&Data->min_dx, &Data->max_dx, &Data->min_dy, &Data->max_dy, x, y, 8,
1532                                          pParam->width, pParam->height, Data->iFcode, 1, 0);                                          pParam->width, pParam->height, Data->iFcode, 1, 0);
# Line 1651  Line 1650 
1650                  CheckCandidate16no4v(pmv[i].x, pmv[i].y, mask, &iDirection, Data);                  CheckCandidate16no4v(pmv[i].x, pmv[i].y, mask, &iDirection, Data);
1651          }          }
1652    
1653          if (MotionFlags & PMV_USESQUARES16) MainSearchPtr = SquareSearch;          if (MotionFlags & XVID_ME_USESQUARES16) MainSearchPtr = SquareSearch;
1654          else if (MotionFlags & PMV_ADVANCEDDIAMOND16) MainSearchPtr = AdvDiamondSearch;          else if (MotionFlags & XVID_ME_ADVANCEDDIAMOND16) MainSearchPtr = AdvDiamondSearch;
1655                  else MainSearchPtr = DiamondSearch;                  else MainSearchPtr = DiamondSearch;
1656    
1657          MainSearchPtr(Data->currentMV->x, Data->currentMV->y, Data, iDirection);          MainSearchPtr(Data->currentMV->x, Data->currentMV->y, Data, iDirection);
# Line 1712  Line 1711 
1711    
1712          for (k = 0; k < 4; k++) {          for (k = 0; k < 4; k++) {
1713                  dy += Data->directmvF[k].y / div;                  dy += Data->directmvF[k].y / div;
1714                  dx += Data->directmvF[0].x / div;                  dx += Data->directmvF[k].x / div;
1715                  b_dy += Data->directmvB[0].y / div;                  b_dy += Data->directmvB[k].y / div;
1716                  b_dx += Data->directmvB[0].x / div;                  b_dx += Data->directmvB[k].x / div;
1717          }          }
1718    
1719          dy = (dy >> 3) + roundtab_76[dy & 0xf];          dy = (dy >> 3) + roundtab_76[dy & 0xf];
# Line 1734  Line 1733 
1733                                          b_Ref->v + (y*8 + b_dy/2) * stride + x*8 + b_dx/2,                                          b_Ref->v + (y*8 + b_dy/2) * stride + x*8 + b_dx/2,
1734                                          stride);                                          stride);
1735    
1736          if (sum < 2 * MAX_CHROMA_SAD_FOR_SKIP * pMB->quant) pMB->mode = MODE_DIRECT_NONE_MV; //skipped          if (sum < 2 * MAX_CHROMA_SAD_FOR_SKIP * pMB->quant) {
1737                    pMB->mode = MODE_DIRECT_NONE_MV; //skipped
1738                    for (k = 0; k < 4; k++) {
1739                            pMB->qmvs[k] = pMB->mvs[k];
1740                            pMB->b_qmvs[k] = pMB->b_mvs[k];
1741                    }
1742            }
1743  }  }
1744    
1745  static __inline uint32_t  static __inline uint32_t
# Line 1823  Line 1828 
1828                  }                  }
1829          }          }
1830    
1831            *Data->iMinSAD += Data->lambda16;
1832          skip_sad = *Data->iMinSAD;          skip_sad = *Data->iMinSAD;
1833    
1834  //      DIRECT MODE DELTA VECTOR SEARCH.  //      DIRECT MODE DELTA VECTOR SEARCH.
1835  //      This has to be made more effective, but at the moment I'm happy it's running at all  //      This has to be made more effective, but at the moment I'm happy it's running at all
1836    
1837          if (MotionFlags & PMV_USESQUARES16) MainSearchPtr = SquareSearch;          if (MotionFlags & XVID_ME_USESQUARES16) MainSearchPtr = SquareSearch;
1838                  else if (MotionFlags & PMV_ADVANCEDDIAMOND16) MainSearchPtr = AdvDiamondSearch;                  else if (MotionFlags & XVID_ME_ADVANCEDDIAMOND16) MainSearchPtr = AdvDiamondSearch;
1839                          else MainSearchPtr = DiamondSearch;                          else MainSearchPtr = DiamondSearch;
1840    
1841          MainSearchPtr(0, 0, Data, 255);          MainSearchPtr(0, 0, Data, 255);
# Line 2038  Line 2044 
2044          Data.currentMV = currentMV; Data.currentQMV = currentQMV;          Data.currentMV = currentMV; Data.currentQMV = currentQMV;
2045          Data.iMinSAD = &iMinSAD;          Data.iMinSAD = &iMinSAD;
2046          Data.lambda16 = lambda_vec16[frame->quant];          Data.lambda16 = lambda_vec16[frame->quant];
2047          Data.qpel = pParam->m_quarterpel;          Data.qpel = pParam->vol_flags & XVID_VOL_QUARTERPEL;
2048          Data.rounding = 0;          Data.rounding = 0;
2049          Data.chroma = frame->motion_flags & PMV_CHROMA8;          Data.chroma = frame->motion_flags & XVID_ME_CHROMA8;
2050          Data.temp = temp;          Data.temp = temp;
2051    
2052          Data.RefQ = f_refV->u; // a good place, also used in MC (for similar purpose)          Data.RefQ = f_refV->u; // a good place, also used in MC (for similar purpose)
# Line 2148  Line 2154 
2154  {  {
2155    
2156          int i, mask;          int i, mask;
2157            int quarterpel = (pParam->vol_flags & XVID_VOL_QUARTERPEL)? 1: 0;
2158          VECTOR pmv[3];          VECTOR pmv[3];
2159          MACROBLOCK * pMB = &pMBs[x + y * pParam->mb_width];          MACROBLOCK * const pMB = &pMBs[x + y * pParam->mb_width];
2160    
2161          for (i = 0; i < 5; i++) Data->iMinSAD[i] = MV_MAX_ERROR;          for (i = 0; i < 5; i++) Data->iMinSAD[i] = MV_MAX_ERROR;
2162    
# Line 2163  Line 2170 
2170                          else Data->predMV = get_pmv2(pMBs, pParam->mb_width, 0, x, y, 0); //else median                          else Data->predMV = get_pmv2(pMBs, pParam->mb_width, 0, x, y, 0); //else median
2171    
2172          get_range(&Data->min_dx, &Data->max_dx, &Data->min_dy, &Data->max_dy, x, y, 16,          get_range(&Data->min_dx, &Data->max_dx, &Data->min_dy, &Data->max_dy, x, y, 16,
2173                                  pParam->width, pParam->height, Data->iFcode - pParam->m_quarterpel, 0, Data->rrv);          pParam->width, pParam->height, Data->iFcode - quarterpel, 0, 0);
2174    
2175          Data->Cur = pCur + (x + y * pParam->edged_width) * 16;          Data->Cur = pCur + (x + y * pParam->edged_width) * 16;
2176          Data->Ref = pRef + (x + y * pParam->edged_width) * 16;          Data->Ref = pRef + (x + y * pParam->edged_width) * 16;
# Line 2175  Line 2182 
2182          pmv[0].x = pmv[0].y = 0;          pmv[0].x = pmv[0].y = 0;
2183    
2184          CheckCandidate32I(0, 0, 255, &i, Data);          CheckCandidate32I(0, 0, 255, &i, Data);
2185            Data->iMinSAD[1] -= 50;
2186            Data->iMinSAD[2] -= 50;
2187            Data->iMinSAD[3] -= 50;
2188            Data->iMinSAD[4] -= 50;
2189    
2190          if (*Data->iMinSAD > 4 * MAX_SAD00_FOR_SKIP * 4) {          if (*Data->iMinSAD > 4 * MAX_SAD00_FOR_SKIP) {
2191    
2192                  if (!(mask = make_mask(pmv, 1)))                  if (!(mask = make_mask(pmv, 1)))
2193                          CheckCandidate32I(pmv[1].x, pmv[1].y, mask, &i, Data);                          CheckCandidate32I(pmv[1].x, pmv[1].y, mask, &i, Data);
2194                  if (!(mask = make_mask(pmv, 2)))                  if (!(mask = make_mask(pmv, 2)))
2195                          CheckCandidate32I(pmv[2].x, pmv[2].y, mask, &i, Data);                          CheckCandidate32I(pmv[2].x, pmv[2].y, mask, &i, Data);
2196    
2197                  if (*Data->iMinSAD > 4 * MAX_SAD00_FOR_SKIP * 4) // diamond only if needed                  if (*Data->iMinSAD > 4 * MAX_SAD00_FOR_SKIP) // diamond only if needed
2198                          DiamondSearch(Data->currentMV->x, Data->currentMV->y, Data, i);                          DiamondSearch(Data->currentMV->x, Data->currentMV->y, Data, i);
2199            }
2200    
2201                  for (i = 0; i < 4; i++) {                  for (i = 0; i < 4; i++) {
2202                          MACROBLOCK * MB = &pMBs[x + (i&1) + (y+(i>>1)) * pParam->mb_width];                          MACROBLOCK * MB = &pMBs[x + (i&1) + (y+(i>>1)) * pParam->mb_width];
# Line 2193  Line 2205 
2205                          MB->sad16 = Data->iMinSAD[i+1];                          MB->sad16 = Data->iMinSAD[i+1];
2206                  }                  }
2207          }          }
 }  
2208    
2209  #define INTRA_BIAS              2500  #define INTRA_THRESH    2400
2210  #define INTRA_THRESH    1500  #define INTER_THRESH    1100
 #define INTER_THRESH    1400  
2211    
2212  int  int
2213  MEanalysis(     const IMAGE * const pRef,  MEanalysis(     const IMAGE * const pRef,
2214                          FRAMEINFO * const Current,                          const FRAMEINFO * const Current,
2215                          MBParam * const pParam,                          const MBParam * const pParam,
2216                          int maxIntra, //maximum number if non-I frames                          const int maxIntra, //maximum number if non-I frames
2217                          int intraCount, //number of non-I frames after last I frame; 0 if we force P/B frame                          const int intraCount, //number of non-I frames after last I frame; 0 if we force P/B frame
2218                          int bCount) // number of B frames in a row                          const int bCount,  // number of B frames in a row
2219                            const int b_thresh)
2220  {  {
2221          uint32_t x, y, intra = 0;          uint32_t x, y, intra = 0;
2222          int sSAD = 0;          int sSAD = 0;
2223          MACROBLOCK * const pMBs = Current->mbs;          MACROBLOCK * const pMBs = Current->mbs;
2224          const IMAGE * const pCurrent = &Current->image;          const IMAGE * const pCurrent = &Current->image;
2225          int IntraThresh = INTRA_THRESH, InterThresh = INTER_THRESH;          int IntraThresh = INTRA_THRESH, InterThresh = INTER_THRESH + 10*b_thresh;
2226            int s = 0, blocks = 0;
2227    
2228          int32_t iMinSAD[5], temp[5];          int32_t iMinSAD[5], temp[5];
2229          VECTOR currentMV[5];          VECTOR currentMV[5];
# Line 2220  Line 2232 
2232          Data.currentMV = currentMV;          Data.currentMV = currentMV;
2233          Data.iMinSAD = iMinSAD;          Data.iMinSAD = iMinSAD;
2234          Data.iFcode = Current->fcode;          Data.iFcode = Current->fcode;
         Data.rrv = Current->global_flags & XVID_REDUCED;  
2235          Data.temp = temp;          Data.temp = temp;
2236          CheckCandidate = CheckCandidate32I;          CheckCandidate = CheckCandidate32I;
2237    
2238          if (intraCount != 0 && intraCount < 10) // we're right after an I frame          if (intraCount != 0 && intraCount < 10) // we're right after an I frame
2239                  IntraThresh += 4 * (intraCount - 10) * (intraCount - 10);                  IntraThresh += 8 * (intraCount - 10) * (intraCount - 10);
2240          else          else
2241                  if ( 5*(maxIntra - intraCount) < maxIntra) // we're close to maximum. 2 sec when max is 10 sec                  if ( 5*(maxIntra - intraCount) < maxIntra) // we're close to maximum. 2 sec when max is 10 sec
2242                          IntraThresh -= (IntraThresh * (maxIntra - 5*(maxIntra - intraCount)))/maxIntra;                          IntraThresh -= (IntraThresh * (maxIntra - 5*(maxIntra - intraCount)))/maxIntra;
2243    
2244          InterThresh += 400 * (1 - bCount);          InterThresh -= (350 - 8*b_thresh) * bCount;
2245          if (InterThresh < 300) InterThresh = 300;          if (InterThresh < 300 + 5*b_thresh) InterThresh = 300 + 5*b_thresh;
2246    
2247          if (sadInit) (*sadInit) ();          if (sadInit) (*sadInit) ();
2248    
2249          for (y = 1; y < pParam->mb_height-1; y += 2) {          for (y = 1; y < pParam->mb_height-1; y += 2) {
2250                  for (x = 1; x < pParam->mb_width-1; x += 2) {                  for (x = 1; x < pParam->mb_width-1; x += 2) {
2251                          int i;                          int i;
2252                            blocks += 4;
2253    
2254                          if (bCount == 0) pMBs[x + y * pParam->mb_width].mvs[0] = zeroMV;                          if (bCount == 0) pMBs[x + y * pParam->mb_width].mvs[0] = zeroMV;
2255                            else { //extrapolation of the vector found for last frame
2256                                    pMBs[x + y * pParam->mb_width].mvs[0].x =
2257                                            (pMBs[x + y * pParam->mb_width].mvs[0].x * (bCount+1) ) / bCount;
2258                                    pMBs[x + y * pParam->mb_width].mvs[0].y =
2259                                            (pMBs[x + y * pParam->mb_width].mvs[0].y * (bCount+1) ) / bCount;
2260                            }
2261    
2262                          MEanalyzeMB(pRef->y, pCurrent->y, x, y, pParam, pMBs, &Data);                          MEanalyzeMB(pRef->y, pCurrent->y, x, y, pParam, pMBs, &Data);
2263    
# Line 2251  Line 2269 
2269                                                                          pParam->edged_width);                                                                          pParam->edged_width);
2270                                          if (dev + IntraThresh < pMB->sad16) {                                          if (dev + IntraThresh < pMB->sad16) {
2271                                                  pMB->mode = MODE_INTRA;                                                  pMB->mode = MODE_INTRA;
2272                                                  if (++intra > (pParam->mb_height-2)*(pParam->mb_width-2)/2) return I_VOP;                                                  if (++intra > ((pParam->mb_height-2)*(pParam->mb_width-2))/2) return I_VOP;
2273                                          }                                          }
2274                                  }                                  }
2275                                    if (pMB->mvs[0].x == 0 && pMB->mvs[0].y == 0) s++;
2276    
2277                                  sSAD += pMB->sad16;                                  sSAD += pMB->sad16;
2278                          }                          }
2279                  }                  }
2280          }          }
2281          sSAD /= (pParam->mb_height-2)*(pParam->mb_width-2);  
2282  //      if (sSAD > IntraThresh + INTRA_BIAS) return I_VOP;          sSAD /= blocks;
2283            s = (10*s) / blocks;
2284    
2285            if (s > 5) sSAD += (s - 4) * (180 - 2*b_thresh); //static block - looks bad when in bframe...
2286    
2287          if (sSAD > InterThresh ) return P_VOP;          if (sSAD > InterThresh ) return P_VOP;
2288          emms();          emms();
2289          return B_VOP;          return B_VOP;
   
2290  }  }
2291    
2292    
# Line 2474  Line 2497 
2497                  if (Data->temp[0] == 0 && Data->temp[1] == 0 && Data->temp[2] == 0 && Data->temp[3] == 0)                  if (Data->temp[0] == 0 && Data->temp[1] == 0 && Data->temp[2] == 0 && Data->temp[3] == 0)
2498                          return 0; //quick stop                          return 0; //quick stop
2499    
2500                  if (MotionFlags & (HALFPELREFINE16_BITS | EXTSEARCH_BITS)) { //we have to prepare for halfpixel-precision search                  if (MotionFlags & (XVID_ME_HALFPELREFINE16_BITS | XVID_ME_EXTSEARCH_BITS)) { //we have to prepare for halfpixel-precision search
2501                          for(i = 0; i < 5; i++) bsad[i] = Data->iMinSAD[i];                          for(i = 0; i < 5; i++) bsad[i] = Data->iMinSAD[i];
2502                          get_range(&Data->min_dx, &Data->max_dx, &Data->min_dy, &Data->max_dy, x, y, 16,                          get_range(&Data->min_dx, &Data->max_dx, &Data->min_dy, &Data->max_dy, x, y, 16,
2503                                                  pParam->width, pParam->height, Data->iFcode - Data->qpel, 0, Data->rrv);                                                  pParam->width, pParam->height, Data->iFcode - Data->qpel, 0, Data->rrv);
# Line 2492  Line 2515 
2515                  }                  }
2516          }          }
2517    
2518          if (MotionFlags&EXTSEARCH_BITS) SquareSearch(Data->currentMV->x, Data->currentMV->y, Data, iDirection);          if (MotionFlags&XVID_ME_EXTSEARCH_BITS) SquareSearch(Data->currentMV->x, Data->currentMV->y, Data, iDirection);
2519    
2520          if (MotionFlags&HALFPELREFINE16_BITS) SubpelRefine(Data);          if (MotionFlags&XVID_ME_HALFPELREFINE16_BITS) SubpelRefine(Data);
2521    
2522          if (Data->qpel) {          if (Data->qpel) {
2523                  if (MotionFlags&(EXTSEARCH_BITS | HALFPELREFINE16_BITS)) { // there was halfpel-precision search                  if (MotionFlags&(XVID_ME_EXTSEARCH_BITS | XVID_ME_HALFPELREFINE16_BITS)) { // there was halfpel-precision search
2524                          for(i = 0; i < 5; i++) if (bsad[i] > Data->iMinSAD[i]) {                          for(i = 0; i < 5; i++) if (bsad[i] > Data->iMinSAD[i]) {
2525                                  Data->currentQMV[i].x = 2 * Data->currentMV[i].x; // we have found a better match                                  Data->currentQMV[i].x = 2 * Data->currentMV[i].x; // we have found a better match
2526                                  Data->currentQMV[i].y = 2 * Data->currentMV[i].y;                                  Data->currentQMV[i].y = 2 * Data->currentMV[i].y;
# Line 2508  Line 2531 
2531                          get_range(&Data->min_dx, &Data->max_dx, &Data->min_dy, &Data->max_dy, x, y, 16,                          get_range(&Data->min_dx, &Data->max_dx, &Data->min_dy, &Data->max_dy, x, y, 16,
2532                                          pParam->width, pParam->height, Data->iFcode, 1, 0);                                          pParam->width, pParam->height, Data->iFcode, 1, 0);
2533                  }                  }
2534                  if (MotionFlags&QUARTERPELREFINE16_BITS) SubpelRefine(Data);                  if (MotionFlags&XVID_ME_QUARTERPELREFINE16_BITS) SubpelRefine(Data);
2535          }          }
2536    
2537          if (MotionFlags&CHECKPREDICTION_BITS) { //let's check vector equal to prediction          if (MotionFlags&XVID_ME_CHECKPREDICTION_BITS) { //let's check vector equal to prediction
2538                  VECTOR * v = Data->qpel ? Data->currentQMV : Data->currentMV;                  VECTOR * v = Data->qpel ? Data->currentQMV : Data->currentMV;
2539                  if (!(Data->predMV.x == v->x && Data->predMV.y == v->y))                  if (!(Data->predMV.x == v->x && Data->predMV.y == v->y))
2540                          CheckCandidateBits16(Data->predMV.x, Data->predMV.y, 255, &iDirection, Data);                          CheckCandidateBits16(Data->predMV.x, Data->predMV.y, 255, &iDirection, Data);
# Line 2531  Line 2554 
2554          int cbp = 0, bits = 0, t = 0, i, iDirection;          int cbp = 0, bits = 0, t = 0, i, iDirection;
2555          SearchData Data2, *Data8 = &Data2;          SearchData Data2, *Data8 = &Data2;
2556          int sumx = 0, sumy = 0;          int sumx = 0, sumy = 0;
2557          int16_t in[64], coeff[64];          int16_t *in = Data->dctSpace, *coeff = Data->dctSpace + 64;
2558    
2559          memcpy(Data8, Data, sizeof(SearchData));          memcpy(Data8, Data, sizeof(SearchData));
2560          CheckCandidate = CheckCandidateBits8;          CheckCandidate = CheckCandidateBits8;
# Line 2572  Line 2595 
2595                  }                  }
2596    
2597                  if (Data8->qpel) {                  if (Data8->qpel) {
2598                          if (MotionFlags&HALFPELREFINE8_BITS || (MotionFlags&PMV_EXTSEARCH8 && MotionFlags&EXTSEARCH_BITS)) { // halfpixel motion search follows                          if (MotionFlags&XVID_ME_HALFPELREFINE8_BITS || (MotionFlags&XVID_ME_EXTSEARCH8 && MotionFlags&XVID_ME_EXTSEARCH_BITS)) { // halfpixel motion search follows
2599                                  int32_t s = *Data8->iMinSAD;                                  int32_t s = *Data8->iMinSAD;
2600                                  Data8->currentMV->x = Data8->currentQMV->x/2;                                  Data8->currentMV->x = Data8->currentQMV->x/2;
2601                                  Data8->currentMV->y = Data8->currentQMV->y/2;                                  Data8->currentMV->y = Data8->currentQMV->y/2;
# Line 2583  Line 2606 
2606                                  if (Data8->currentQMV->x & 1 || Data8->currentQMV->y & 1)                                  if (Data8->currentQMV->x & 1 || Data8->currentQMV->y & 1)
2607                                          CheckCandidateBits8(Data8->currentMV->x, Data8->currentMV->y, 255, &iDirection, Data8);                                          CheckCandidateBits8(Data8->currentMV->x, Data8->currentMV->y, 255, &iDirection, Data8);
2608    
2609                                  if (MotionFlags & PMV_EXTSEARCH8 && MotionFlags & EXTSEARCH_BITS)                                  if (MotionFlags & XVID_ME_EXTSEARCH8 && MotionFlags & XVID_ME_EXTSEARCH_BITS)
2610                                          SquareSearch(Data8->currentMV->x, Data8->currentMV->x, Data8, 255);                                          SquareSearch(Data8->currentMV->x, Data8->currentMV->x, Data8, 255);
2611    
2612                                  if (MotionFlags & HALFPELREFINE8_BITS) SubpelRefine(Data8);                                  if (MotionFlags & XVID_ME_HALFPELREFINE8_BITS) SubpelRefine(Data8);
2613    
2614                                  if(s > *Data8->iMinSAD) { //we have found a better match                                  if(s > *Data8->iMinSAD) { //we have found a better match
2615                                          Data8->currentQMV->x = 2*Data8->currentMV->x;                                          Data8->currentQMV->x = 2*Data8->currentMV->x;
# Line 2598  Line 2621 
2621                                                          pParam->width, pParam->height, Data8->iFcode, 1, 0);                                                          pParam->width, pParam->height, Data8->iFcode, 1, 0);
2622    
2623                          }                          }
2624                          if (MotionFlags & QUARTERPELREFINE8_BITS) SubpelRefine(Data8);                          if (MotionFlags & XVID_ME_QUARTERPELREFINE8_BITS) SubpelRefine(Data8);
2625    
2626                  } else // not qpel                  } else // not qpel
2627                          if (MotionFlags & HALFPELREFINE8_BITS) SubpelRefine(Data8); //halfpel mode, halfpel refinement                          if (MotionFlags & XVID_ME_HALFPELREFINE8_BITS) SubpelRefine(Data8); //halfpel mode, halfpel refinement
2628    
2629                  //checking vector equal to predicion                  //checking vector equal to predicion
2630                  if (i != 0 && MotionFlags & CHECKPREDICTION_BITS) {                  if (i != 0 && MotionFlags & XVID_ME_CHECKPREDICTION_BITS) {
2631                          const VECTOR * v = Data->qpel ? Data8->currentQMV : Data8->currentMV;                          const VECTOR * v = Data->qpel ? Data8->currentQMV : Data8->currentMV;
2632                          if (!(Data8->predMV.x == v->x && Data8->predMV.y == v->y))                          if (!(Data8->predMV.x == v->x && Data8->predMV.y == v->y))
2633                                  CheckCandidateBits8(Data8->predMV.x, Data8->predMV.y, 255, &iDirection, Data8);                                  CheckCandidateBits8(Data8->predMV.x, Data8->predMV.y, 255, &iDirection, Data8);
# Line 2658  Line 2681 
2681                                  bits += CodeCoeffInter_CalcBits(coeff, scan_tables[0]);                                  bits += CodeCoeffInter_CalcBits(coeff, scan_tables[0]);
2682                                  cbp |= 1 << (5 - 5);                                  cbp |= 1 << (5 - 5);
2683                          }                          }
2684                          bits += cbpy_tab[15-(cbp>>2)].len;                          bits += xvid_cbpy_tab[15-(cbp>>2)].len;
2685                          bits += mcbpc_inter_tab[(MODE_INTER4V & 7) | ((cbp & 3) << 3)].len;                          bits += mcbpc_inter_tab[(MODE_INTER4V & 7) | ((cbp & 3) << 3)].len;
2686                  }                  }
2687          }          }
# Line 2673  Line 2696 
2696          int bits = 1; //this one is ac/dc prediction flag. always 1.          int bits = 1; //this one is ac/dc prediction flag. always 1.
2697          int cbp = 0, i, t, dc = 0, b_dc = 1024;          int cbp = 0, i, t, dc = 0, b_dc = 1024;
2698          const uint32_t iQuant = Data->lambda16;          const uint32_t iQuant = Data->lambda16;
2699          int16_t in[64], coeff[64];          int16_t *in = Data->dctSpace, * coeff = Data->dctSpace + 64;
2700    
2701          for(i = 0; i < 4; i++) {          for(i = 0; i < 4; i++) {
2702                  uint32_t iDcScaler = get_dc_scaler(iQuant, 1);                  uint32_t iDcScaler = get_dc_scaler(iQuant, 1);
# Line 2708  Line 2731 
2731    
2732                  bits += t = CodeCoeffIntra_CalcBits(coeff, scan_tables[0]) + dcc_tab[coeff[0] + 255].len;                  bits += t = CodeCoeffIntra_CalcBits(coeff, scan_tables[0]) + dcc_tab[coeff[0] + 255].len;
2733                  if (t != 0) cbp |= 1 << (5 - 4);                  if (t != 0) cbp |= 1 << (5 - 4);
                 Data->temp[4] = t;  
2734    
2735                  if (bits < Data->iMinSAD[0]) {                  if (bits < Data->iMinSAD[0]) {
2736                            iDcScaler = get_dc_scaler(iQuant, 1);
2737                          //chroma V                          //chroma V
2738                          transfer_8to16copy(in, Data->CurV, Data->iEdgedWidth/2);                          transfer_8to16copy(in, Data->CurV, Data->iEdgedWidth/2);
2739                          fdct(in);                          fdct(in);
# Line 2721  Line 2744 
2744                          bits += t = CodeCoeffIntra_CalcBits(coeff, scan_tables[0]) + dcc_tab[coeff[0] + 255].len;                          bits += t = CodeCoeffIntra_CalcBits(coeff, scan_tables[0]) + dcc_tab[coeff[0] + 255].len;
2745                          if (t != 0) cbp |= 1 << (5 - 5);                          if (t != 0) cbp |= 1 << (5 - 5);
2746    
2747                          Data->temp[5] = t;                          bits += xvid_cbpy_tab[cbp>>2].len;
2748                            bits += mcbpc_inter_tab[(MODE_INTRA & 7) | ((cbp & 3) << 3)].len;
                         bits += t = cbpy_tab[cbp>>2].len;  
                         Data->temp[6] = t;  
   
                         bits += t = mcbpc_inter_tab[(MODE_INTRA & 7) | ((cbp & 3) << 3)].len;  
                         Data->temp[7] = t;  
   
2749                  }                  }
2750          }          }
   
2751          return bits;          return bits;
2752  }  }

Legend:
Removed from v.886  
changed lines
  Added in v.963

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