[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 1077, Sat Jun 28 15:54:16 2003 UTC revision 1107, Sat Aug 2 15:08:48 2003 UTC
# Line 21  Line 21 
21   *  along with this program ; if not, write to the Free Software   *  along with this program ; if not, write to the Free Software
22   *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA   *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
23   *   *
24   * $Id: motion_est.c,v 1.58.2.20 2003-06-28 15:52:10 chl Exp $   * $Id: motion_est.c,v 1.58.2.24 2003-08-02 15:08:39 edgomez Exp $
25   *   *
26   ****************************************************************************/   ****************************************************************************/
27    
# Line 72  Line 72 
72  #define CHECK_CANDIDATE(X,Y,D) { \  #define CHECK_CANDIDATE(X,Y,D) { \
73  CheckCandidate((X),(Y), (D), &iDirection, data ); }  CheckCandidate((X),(Y), (D), &iDirection, data ); }
74    
75    
76  /*****************************************************************************  /*****************************************************************************
77   * Code   * Code
78   ****************************************************************************/   ****************************************************************************/
# Line 335  Line 336 
336          sad += (data->lambda16 * t * sad)>>10;          sad += (data->lambda16 * t * sad)>>10;
337          data->temp[1] += (data->lambda8 * t * (data->temp[1] + NEIGH_8X8_BIAS))>>10;          data->temp[1] += (data->lambda8 * t * (data->temp[1] + NEIGH_8X8_BIAS))>>10;
338    
339          if (data->chroma) sad += ChromaSAD((xc >> 1) + roundtab_79[xc & 0x3],          if (data->chroma && sad < data->iMinSAD[0])
340                    sad += ChromaSAD((xc >> 1) + roundtab_79[xc & 0x3],
341                                                                             (yc >> 1) + roundtab_79[yc & 0x3], data);                                                                             (yc >> 1) + roundtab_79[yc & 0x3], data);
342    
343          if (sad < data->iMinSAD[0]) {          if (sad < data->iMinSAD[0]) {
# Line 445  Line 447 
447          sad = sad16(data->Cur, Reference, data->iEdgedWidth, 256*4096);          sad = sad16(data->Cur, Reference, data->iEdgedWidth, 256*4096);
448          sad += (data->lambda16 * t * sad)>>10;          sad += (data->lambda16 * t * sad)>>10;
449    
450          if (data->chroma) sad += ChromaSAD((xc >> 1) + roundtab_79[xc & 0x3],          if (data->chroma && sad < *data->iMinSAD)
451                    sad += ChromaSAD((xc >> 1) + roundtab_79[xc & 0x3],
452                                                                                  (yc >> 1) + roundtab_79[yc & 0x3], data);                                                                                  (yc >> 1) + roundtab_79[yc & 0x3], data);
453    
454          if (sad < *(data->iMinSAD)) {          if (sad < *(data->iMinSAD)) {
# Line 492  Line 495 
495          if ( (x > data->max_dx) || (x < data->min_dx)          if ( (x > data->max_dx) || (x < data->min_dx)
496                  || (y > data->max_dy) || (y < data->min_dy) ) return;                  || (y > data->max_dy) || (y < data->min_dy) ) return;
497    
498          sad = sad32v_c(data->Cur, data->RefP[0] + (x>>1) + (y>>1)*(data->iEdgedWidth),          sad = sad32v_c(data->Cur, data->RefP[0] + (x>>1) + (y>>1)*((int)data->iEdgedWidth),
499                                          data->iEdgedWidth, data->temp+1);                                          data->iEdgedWidth, data->temp+1);
500    
501          if (sad < *(data->iMinSAD)) {          if (sad < *(data->iMinSAD)) {
# Line 545  Line 548 
548          sad = sad16bi(data->Cur, ReferenceF, ReferenceB, data->iEdgedWidth);          sad = sad16bi(data->Cur, ReferenceF, ReferenceB, data->iEdgedWidth);
549          sad += (data->lambda16 * t * sad)>>10;          sad += (data->lambda16 * t * sad)>>10;
550    
551          if (data->chroma) sad += ChromaSAD2((xcf >> 1) + roundtab_79[xcf & 0x3],          if (data->chroma && sad < *data->iMinSAD)
552                    sad += ChromaSAD2((xcf >> 1) + roundtab_79[xcf & 0x3],
553                                                                                  (ycf >> 1) + roundtab_79[ycf & 0x3],                                                                                  (ycf >> 1) + roundtab_79[ycf & 0x3],
554                                                                                  (xcb >> 1) + roundtab_79[xcb & 0x3],                                                                                  (xcb >> 1) + roundtab_79[xcb & 0x3],
555                                                                                  (ycb >> 1) + roundtab_79[ycb & 0x3], data);                                                                                  (ycb >> 1) + roundtab_79[ycb & 0x3], data);
# Line 605  Line 609 
609    
610          sad += (data->lambda16 * d_mv_bits(x, y, zeroMV, 1, 0, 0) * sad)>>10;          sad += (data->lambda16 * d_mv_bits(x, y, zeroMV, 1, 0, 0) * sad)>>10;
611    
612          if (data->chroma) sad += ChromaSAD2((xcf >> 3) + roundtab_76[xcf & 0xf],          if (data->chroma && sad < *data->iMinSAD)
613                    sad += ChromaSAD2((xcf >> 3) + roundtab_76[xcf & 0xf],
614                                                                                  (ycf >> 3) + roundtab_76[ycf & 0xf],                                                                                  (ycf >> 3) + roundtab_76[ycf & 0xf],
615                                                                                  (xcb >> 3) + roundtab_76[xcb & 0xf],                                                                                  (xcb >> 3) + roundtab_76[xcb & 0xf],
616                                                                                  (ycb >> 3) + roundtab_76[ycb & 0xf], data);                                                                                  (ycb >> 3) + roundtab_76[ycb & 0xf], data);
# Line 657  Line 662 
662          sad = sad16bi(data->Cur, ReferenceF, ReferenceB, data->iEdgedWidth);          sad = sad16bi(data->Cur, ReferenceF, ReferenceB, data->iEdgedWidth);
663          sad += (data->lambda16 * d_mv_bits(x, y, zeroMV, 1, 0, 0) * sad)>>10;          sad += (data->lambda16 * d_mv_bits(x, y, zeroMV, 1, 0, 0) * sad)>>10;
664    
665          if (data->chroma) sad += ChromaSAD2((xcf >> 3) + roundtab_76[xcf & 0xf],          if (data->chroma && sad < *data->iMinSAD)
666                    sad += ChromaSAD2((xcf >> 3) + roundtab_76[xcf & 0xf],
667                                                                                  (ycf >> 3) + roundtab_76[ycf & 0xf],                                                                                  (ycf >> 3) + roundtab_76[ycf & 0xf],
668                                                                                  (xcb >> 3) + roundtab_76[xcb & 0xf],                                                                                  (xcb >> 3) + roundtab_76[xcb & 0xf],
669                                                                                  (ycb >> 3) + roundtab_76[ycb & 0xf], data);                                                                                  (ycb >> 3) + roundtab_76[ycb & 0xf], data);
# Line 702  Line 708 
708          bits += t = BITS_MULT*d_mv_bits(x, y, data->predMV, data->iFcode, data->qpel^data->qpel_precision, 0);          bits += t = BITS_MULT*d_mv_bits(x, y, data->predMV, data->iFcode, data->qpel^data->qpel_precision, 0);
709    
710          if (data->temp[0] + t < data->iMinSAD[1]) {          if (data->temp[0] + t < data->iMinSAD[1]) {
711                  data->iMinSAD[1] = data->temp[0] + t; current[1].x = x; current[1].y = y; }                  data->iMinSAD[1] = data->temp[0] + t; current[1].x = x; current[1].y = y; data->cbp[1] = (data->cbp[1]&~32) | cbp&32; }
712          if (data->temp[1] < data->iMinSAD[2]) {          if (data->temp[1] < data->iMinSAD[2]) {
713                  data->iMinSAD[2] = data->temp[1]; current[2].x = x; current[2].y = y; }                  data->iMinSAD[2] = data->temp[1]; current[2].x = x; current[2].y = y; data->cbp[1] = (data->cbp[1]&~16) | cbp&16; }
714          if (data->temp[2] < data->iMinSAD[3]) {          if (data->temp[2] < data->iMinSAD[3]) {
715                  data->iMinSAD[3] = data->temp[2]; current[3].x = x; current[3].y = y; }                  data->iMinSAD[3] = data->temp[2]; current[3].x = x; current[3].y = y; data->cbp[1] = (data->cbp[1]&~8) | cbp&8; }
716          if (data->temp[3] < data->iMinSAD[4]) {          if (data->temp[3] < data->iMinSAD[4]) {
717                  data->iMinSAD[4] = data->temp[3]; current[4].x = x; current[4].y = y; }                  data->iMinSAD[4] = data->temp[3]; current[4].x = x; current[4].y = y; data->cbp[1] = (data->cbp[1]&~4) | cbp&4; }
718    
719          bits += BITS_MULT*xvid_cbpy_tab[15-(cbp>>2)].len;          bits += BITS_MULT*xvid_cbpy_tab[15-(cbp>>2)].len;
720    
# Line 719  Line 725 
725          yc = (yc >> 1) + roundtab_79[yc & 0x3];          yc = (yc >> 1) + roundtab_79[yc & 0x3];
726    
727          /* chroma U */          /* chroma U */
728          ptr = interpolate8x8_switch2(data->RefQ + 64, data->RefP[4], 0, 0, xc, yc,  data->iEdgedWidth/2, data->rounding);          ptr = interpolate8x8_switch2(data->RefQ, data->RefP[4], 0, 0, xc, yc, data->iEdgedWidth/2, data->rounding);
729          transfer_8to16subro(in, ptr, data->CurU, data->iEdgedWidth/2);          transfer_8to16subro(in, data->CurU, ptr, data->iEdgedWidth/2);
730          bits += Block_CalcBits(coeff, in, data->dctSpace + 128, data->iQuant, data->quant_type, &cbp, 4);          bits += Block_CalcBits(coeff, in, data->dctSpace + 128, data->iQuant, data->quant_type, &cbp, 4);
731          if (bits >= data->iMinSAD[0]) return;          if (bits >= data->iMinSAD[0]) return;
732    
733          /* chroma V */          /* chroma V */
734          ptr = interpolate8x8_switch2(data->RefQ + 64, data->RefP[5], 0, 0, xc, yc,  data->iEdgedWidth/2, data->rounding);          ptr = interpolate8x8_switch2(data->RefQ, data->RefP[5], 0, 0, xc, yc, data->iEdgedWidth/2, data->rounding);
735          transfer_8to16subro(in, ptr, data->CurV, data->iEdgedWidth/2);          transfer_8to16subro(in, data->CurV, ptr, data->iEdgedWidth/2);
736          bits += Block_CalcBits(coeff, in, data->dctSpace + 128, data->iQuant, data->quant_type, &cbp, 5);          bits += Block_CalcBits(coeff, in, data->dctSpace + 128, data->iQuant, data->quant_type, &cbp, 5);
737    
738          bits += BITS_MULT*mcbpc_inter_tab[(MODE_INTER & 7) | ((cbp & 3) << 3)].len;          bits += BITS_MULT*mcbpc_inter_tab[(MODE_INTER & 7) | ((cbp & 3) << 3)].len;
# Line 735  Line 741 
741                  data->iMinSAD[0] = bits;                  data->iMinSAD[0] = bits;
742                  current[0].x = x; current[0].y = y;                  current[0].x = x; current[0].y = y;
743                  *dir = Direction;                  *dir = Direction;
744                    *data->cbp = cbp;
745          }          }
746  }  }
747    
# Line 764  Line 771 
771          bits += BITS_MULT*d_mv_bits(x, y, data->predMV, data->iFcode, data->qpel^data->qpel_precision, 0);          bits += BITS_MULT*d_mv_bits(x, y, data->predMV, data->iFcode, data->qpel^data->qpel_precision, 0);
772    
773          if (bits < data->iMinSAD[0]) {          if (bits < data->iMinSAD[0]) {
774                  data->temp[0] = cbp;                  *data->cbp = cbp;
775                  data->iMinSAD[0] = bits;                  data->iMinSAD[0] = bits;
776                  current[0].x = x; current[0].y = y;                  current[0].x = x; current[0].y = y;
777                  *dir = Direction;                  *dir = Direction;
# Line 972  Line 979 
979  }  }
980    
981  static __inline void  static __inline void
982    ZeroMacroblockP(MACROBLOCK *pMB, const int32_t sad)
983    {
984            pMB->mode = MODE_INTER;
985            pMB->mvs[0] = pMB->mvs[1] = pMB->mvs[2] = pMB->mvs[3] = zeroMV;
986            pMB->qmvs[0] = pMB->qmvs[1] = pMB->qmvs[2] = pMB->qmvs[3] = zeroMV;
987            pMB->sad16 = pMB->sad8[0] = pMB->sad8[1] = pMB->sad8[2] = pMB->sad8[3] = sad;
988    }
989    
990    static __inline void
991  ModeDecision(SearchData * const Data,  ModeDecision(SearchData * const Data,
992                          MACROBLOCK * const pMB,                          MACROBLOCK * const pMB,
993                          const MACROBLOCK * const pMBs,                          const MACROBLOCK * const pMBs,
# Line 981  Line 997 
997                          const uint32_t VopFlags,                          const uint32_t VopFlags,
998                          const uint32_t VolFlags,                          const uint32_t VolFlags,
999                          const IMAGE * const pCurrent,                          const IMAGE * const pCurrent,
1000                          const IMAGE * const pRef)                          const IMAGE * const pRef,
1001                            const IMAGE * const vGMC,
1002                            const int coding_type)
1003  {  {
1004          int mode = MODE_INTER;          int mode = MODE_INTER;
1005            int mcsel = 0;
1006          int inter4v = (VopFlags & XVID_VOP_INTER4V) && (pMB->dquant == 0);          int inter4v = (VopFlags & XVID_VOP_INTER4V) && (pMB->dquant == 0);
1007          const uint32_t iQuant = pMB->quant;          const uint32_t iQuant = pMB->quant;
1008    
1009          const int skip_possible = (!(VolFlags & XVID_VOL_GMC)) && (pMB->dquant == 0);          const int skip_possible = (coding_type == P_VOP) && (pMB->dquant == 0);
1010    
1011          if (!(VopFlags & XVID_VOP_MODEDECISION_BITS)) { /* normal, fast, SAD-based mode decision */          pMB->mcsel = 0;
1012    
1013            if (!(VopFlags & XVID_VOP_MODEDECISION_RD)) { /* normal, fast, SAD-based mode decision */
1014                  int sad;                  int sad;
1015                  int InterBias = MV16_INTER_BIAS;                  int InterBias = MV16_INTER_BIAS;
1016                  if (inter4v == 0 || Data->iMinSAD[0] < Data->iMinSAD[1] + Data->iMinSAD[2] +                  if (inter4v == 0 || Data->iMinSAD[0] < Data->iMinSAD[1] + Data->iMinSAD[2] +
# Line 1011  Line 1032 
1032                                          sad = 0;                                          sad = 0;
1033                                  }                                  }
1034    
1035                    /* mcsel */
1036                    if (coding_type == S_VOP) {
1037    
1038                            int32_t iSAD = sad16(Data->Cur,
1039                                    vGMC->y + 16*y*Data->iEdgedWidth + 16*x, Data->iEdgedWidth, 65536);
1040    
1041                            if (Data->chroma) {
1042                                    iSAD += sad8(Data->CurU, vGMC->u + 8*y*(Data->iEdgedWidth/2) + 8*x, Data->iEdgedWidth/2);
1043                                    iSAD += sad8(Data->CurV, vGMC->v + 8*y*(Data->iEdgedWidth/2) + 8*x, Data->iEdgedWidth/2);
1044                            }
1045    
1046                            if (iSAD <= sad) {              /* mode decision GMC */
1047                                    mode = MODE_INTER;
1048                                    mcsel = 1;
1049                                    sad = iSAD;
1050                            }
1051    
1052                    }
1053    
1054                  /* intra decision */                  /* intra decision */
1055    
1056                  if (iQuant > 8) InterBias += 100 * (iQuant - 8); /* to make high quants work */                  if (iQuant > 8) InterBias += 100 * (iQuant - 8); /* to make high quants work */
# Line 1019  Line 1059 
1059                  if (x != 0)                  if (x != 0)
1060                          if ((pMB - 1)->mode == MODE_INTRA ) InterBias -= 80;                          if ((pMB - 1)->mode == MODE_INTRA ) InterBias -= 80;
1061    
1062                  if (Data->chroma) InterBias += 50; /* dev8(chroma) ??? */                  if (Data->chroma) InterBias += 50; /* dev8(chroma) ??? <-- yes, we need dev8 (no big difference though) */
1063                  if (Data->rrv) InterBias *= 4;                  if (Data->rrv) InterBias *= 4;
1064    
1065                  if (InterBias < pMB->sad16) {                  if (InterBias < sad) {
1066                          int32_t deviation;                          int32_t deviation;
1067                          if (!Data->rrv) deviation = dev16(Data->Cur, Data->iEdgedWidth);                          if (!Data->rrv)
1068                          else deviation = dev16(Data->Cur, Data->iEdgedWidth) +                                  deviation = dev16(Data->Cur, Data->iEdgedWidth);
1069                            else
1070                                    deviation = dev16(Data->Cur, Data->iEdgedWidth) + /* dev32() */
1071                                  dev16(Data->Cur+16, Data->iEdgedWidth) +                                  dev16(Data->Cur+16, Data->iEdgedWidth) +
1072                                  dev16(Data->Cur + 16*Data->iEdgedWidth, Data->iEdgedWidth) +                                  dev16(Data->Cur + 16*Data->iEdgedWidth, Data->iEdgedWidth) +
1073                                  dev16(Data->Cur+16+16*Data->iEdgedWidth, Data->iEdgedWidth);                                  dev16(Data->Cur+16+16*Data->iEdgedWidth, Data->iEdgedWidth);
# Line 1033  Line 1075 
1075                          if (deviation < (sad - InterBias)) mode = MODE_INTRA;                          if (deviation < (sad - InterBias)) mode = MODE_INTRA;
1076                  }                  }
1077    
1078                    pMB->cbp = 63;
1079                    pMB->sad16 = pMB->sad8[0] = pMB->sad8[1] = pMB->sad8[2] = pMB->sad8[3] = sad;
1080    
1081          } else { /* BITS */          } else { /* BITS */
1082    
1083                  int bits, intra, i;                  int bits, intra, i, cbp, c[2] = {0, 0};
1084                  VECTOR backup[5], *v;                  VECTOR backup[5], *v;
1085                  Data->iQuant = iQuant;                  Data->iQuant = iQuant;
1086                    Data->cbp = c;
1087    
1088                  v = Data->qpel ? Data->currentQMV : Data->currentMV;                  v = Data->qpel ? Data->currentQMV : Data->currentMV;
1089                  for (i = 0; i < 5; i++) {                  for (i = 0; i < 5; i++) {
# Line 1046  Line 1092 
1092                  }                  }
1093    
1094                  bits = CountMBBitsInter(Data, pMBs, x, y, pParam, MotionFlags);                  bits = CountMBBitsInter(Data, pMBs, x, y, pParam, MotionFlags);
1095                  if (bits == 0)                  cbp = *Data->cbp;
1096                          mode = MODE_INTER; /* quick stop */  
1097                  else {                  if (coding_type == S_VOP) {
1098                            int bits_gmc;
1099                            *Data->iMinSAD = bits += BITS_MULT*1; /* mcsel */
1100                            bits_gmc = CountMBBitsGMC(Data, vGMC, x, y);
1101                            if (bits_gmc < bits) {
1102                                    mcsel = 1;
1103                                    *Data->iMinSAD = bits = bits_gmc;
1104                                    mode = MODE_INTER;
1105                                    cbp = *Data->cbp;
1106                            }
1107                    }
1108    
1109                          if (inter4v) {                          if (inter4v) {
1110                                  int bits_inter4v = CountMBBitsInter4v(Data, pMB, pMBs, x, y, pParam, MotionFlags, backup);                          int bits_4v;
1111                                  if (bits_inter4v < bits) { Data->iMinSAD[0] = bits = bits_inter4v; mode = MODE_INTER4V; }                          bits_4v = CountMBBitsInter4v(Data, pMB, pMBs, x, y, pParam, MotionFlags, backup);
1112                            if (bits_4v < bits) {
1113                                    Data->iMinSAD[0] = bits = bits_4v;
1114                                    mode = MODE_INTER4V;
1115                                    cbp = *Data->cbp;
1116                            }
1117                          }                          }
1118    
1119                          intra = CountMBBitsIntra(Data);                          intra = CountMBBitsIntra(Data);
1120                    if (intra < bits) {
1121                          if (intra < bits) { *Data->iMinSAD = bits = intra; mode = MODE_INTRA; }                          *Data->iMinSAD = bits = intra;
1122                            mode = MODE_INTRA;
1123                  }                  }
1124    
1125                    pMB->sad16 = pMB->sad8[0] = pMB->sad8[1] = pMB->sad8[2] = pMB->sad8[3] = 0;
1126                    pMB->cbp = cbp;
1127          }          }
1128    
1129          if (Data->rrv) {          if (Data->rrv) {
# Line 1065  Line 1131 
1131                          Data->currentMV[0].y = RRV_MV_SCALEDOWN(Data->currentMV[0].y);                          Data->currentMV[0].y = RRV_MV_SCALEDOWN(Data->currentMV[0].y);
1132          }          }
1133    
1134          if (mode == MODE_INTER) {          if (mode == MODE_INTER && mcsel == 0) {
1135                  pMB->mvs[0] = pMB->mvs[1] = pMB->mvs[2] = pMB->mvs[3] = Data->currentMV[0];                  pMB->mvs[0] = pMB->mvs[1] = pMB->mvs[2] = pMB->mvs[3] = Data->currentMV[0];
                 pMB->sad16 = pMB->sad8[0] = pMB->sad8[1] = pMB->sad8[2] = pMB->sad8[3] = Data->iMinSAD[0];  
1136    
1137                  if(Data->qpel) {                  if(Data->qpel) {
1138                          pMB->qmvs[0] = pMB->qmvs[1]                          pMB->qmvs[0] = pMB->qmvs[1]
# Line 1079  Line 1144 
1144                          pMB->pmvs[0].y = Data->currentMV[0].y - Data->predMV.y;                          pMB->pmvs[0].y = Data->currentMV[0].y - Data->predMV.y;
1145                  }                  }
1146    
1147          } else if (mode == MODE_INTER4V)          } else if (mode == MODE_INTER ) { // but mcsel == 1
1148                  pMB->sad16 = Data->iMinSAD[0];  
1149                    pMB->mcsel = 1;
1150                    if (Data->qpel) {
1151                            pMB->qmvs[0] = pMB->qmvs[1] = pMB->qmvs[2] = pMB->qmvs[3] = pMB->amv;
1152                            pMB->mvs[0].x = pMB->mvs[1].x = pMB->mvs[2].x = pMB->mvs[3].x = pMB->amv.x/2;
1153                            pMB->mvs[0].y = pMB->mvs[1].y = pMB->mvs[2].y = pMB->mvs[3].y = pMB->amv.y/2;
1154                    } else
1155                            pMB->mvs[0] = pMB->mvs[1] = pMB->mvs[2] = pMB->mvs[3] = pMB->amv;
1156    
1157            } else
1158                    if (mode == MODE_INTER4V) ; /* anything here? */
1159          else /* INTRA, NOT_CODED */          else /* INTRA, NOT_CODED */
1160                  SkipMacroblockP(pMB, 0);                  SkipMacroblockP(pMB, 0);
1161    
# Line 1111  Line 1186 
1186          int32_t quant = current->quant, sad00;          int32_t quant = current->quant, sad00;
1187          int skip_thresh = INITIAL_SKIP_THRESH * \          int skip_thresh = INITIAL_SKIP_THRESH * \
1188                  (current->vop_flags & XVID_VOP_REDUCED ? 4:1) * \                  (current->vop_flags & XVID_VOP_REDUCED ? 4:1) * \
1189                  (current->vop_flags & XVID_VOP_MODEDECISION_BITS ? 2:1);                  (current->vop_flags & XVID_VOP_MODEDECISION_RD ? 2:1);
1190    
1191          /* some pre-initialized thingies for SearchP */          /* some pre-initialized thingies for SearchP */
1192          int32_t temp[8];          int32_t temp[8];
# Line 1129  Line 1204 
1204          Data.iFcode = current->fcode;          Data.iFcode = current->fcode;
1205          Data.rounding = pParam->m_rounding_type;          Data.rounding = pParam->m_rounding_type;
1206          Data.qpel = (current->vol_flags & XVID_VOL_QUARTERPEL ? 1:0);          Data.qpel = (current->vol_flags & XVID_VOL_QUARTERPEL ? 1:0);
1207          Data.chroma = MotionFlags & XVID_ME_CHROMA16;          Data.chroma = MotionFlags & XVID_ME_CHROMA_PVOP;
1208          Data.rrv = (current->vop_flags & XVID_VOP_REDUCED) ? 1:0;          Data.rrv = (current->vop_flags & XVID_VOP_REDUCED) ? 1:0;
1209          Data.dctSpace = dct_space;          Data.dctSpace = dct_space;
1210          Data.quant_type = !(pParam->vol_flags & XVID_VOL_MPEGQUANT);          Data.quant_type = !(pParam->vol_flags & XVID_VOL_MPEGQUANT);
# Line 1176  Line 1251 
1251    
1252                          /* initial skip decision */                          /* initial skip decision */
1253                          /* no early skip for GMC (global vector = skip vector is unknown!)  */                          /* no early skip for GMC (global vector = skip vector is unknown!)  */
1254                          if (!(current->vol_flags & XVID_VOL_GMC))       { /* no fast SKIP for S(GMC)-VOPs */                          if (current->coding_type != S_VOP)      { /* no fast SKIP for S(GMC)-VOPs */
1255                                  if (pMB->dquant == 0 && sad00 < pMB->quant * skip_thresh)                                  if (pMB->dquant == 0 && sad00 < pMB->quant * skip_thresh)
1256                                          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)) {
1257                                                  SkipMacroblockP(pMB, sad00);                                                  SkipMacroblockP(pMB, sad00);
# Line 1184  Line 1259 
1259                                          }                                          }
1260                          }                          }
1261    
1262                            if ((current->vop_flags & XVID_VOP_CARTOON) &&
1263                                    (sad00 < pMB->quant * 4 * skip_thresh)) { /* favorize (0,0) vector for cartoons */
1264                                    ZeroMacroblockP(pMB, sad00);
1265                                    continue;
1266                            }
1267    
1268                          SearchP(pRef, pRefH->y, pRefV->y, pRefHV->y, pCurrent, x,                          SearchP(pRef, pRefH->y, pRefV->y, pRefHV->y, pCurrent, x,
1269                                          y, MotionFlags, current->vop_flags, current->vol_flags,                                          y, MotionFlags, current->vop_flags, current->vol_flags,
1270                                          &Data, pParam, pMBs, reference->mbs, pMB);                                          &Data, pParam, pMBs, reference->mbs, pMB);
1271    
1272                          ModeDecision(&Data, pMB, pMBs, x, y, pParam,                          ModeDecision(&Data, pMB, pMBs, x, y, pParam,
1273                                                   MotionFlags, current->vop_flags, current->vol_flags,                                                   MotionFlags, current->vop_flags, current->vol_flags,
1274                                                   pCurrent, pRef);                                                   pCurrent, pRef, pGMC, current->coding_type);
1275    
1276                          if (pMB->mode == MODE_INTRA)                          if (pMB->mode == MODE_INTRA)
1277                                  if (++iIntra > iLimit) return 1;                                  if (++iIntra > iLimit) return 1;
# Line 1319  Line 1400 
1400          Data->iMinSAD[3] = pMB->sad8[2];          Data->iMinSAD[3] = pMB->sad8[2];
1401          Data->iMinSAD[4] = pMB->sad8[3];          Data->iMinSAD[4] = pMB->sad8[3];
1402    
1403          if ((!(VopFlags & XVID_VOP_MODEDECISION_BITS)) && (x | y)) {          if ((!(VopFlags & XVID_VOP_MODEDECISION_RD)) && (x | y)) {
1404                  threshA = Data->temp[0]; /* that's where we keep this SAD atm */                  threshA = Data->temp[0]; /* that's where we keep this SAD atm */
1405                  if (threshA < 512) threshA = 512;                  if (threshA < 512) threshA = 512;
1406                  else if (threshA > 1024) threshA = 1024;                  else if (threshA > 1024) threshA = 1024;
# Line 1418  Line 1499 
1499                  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);
1500                  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);
1501    
1502                  if ((Data->chroma) && (!(VopFlags & XVID_VOP_MODEDECISION_BITS))) {                  if ((Data->chroma) && (!(VopFlags & XVID_VOP_MODEDECISION_RD))) {
1503                          /* chroma is only used for comparsion to INTER. if the comparsion will be done in BITS domain, it will not be used */                          /* chroma is only used for comparsion to INTER. if the comparsion will be done in BITS domain, it will not be used */
1504                          int sumx = 0, sumy = 0;                          int sumx = 0, sumy = 0;
1505    
# Line 1484  Line 1565 
1565                  if (!Data->rrv) CheckCandidate = CheckCandidate8;                  if (!Data->rrv) CheckCandidate = CheckCandidate8;
1566                  else CheckCandidate = CheckCandidate16no4v;                  else CheckCandidate = CheckCandidate16no4v;
1567    
1568                  if (MotionFlags & XVID_ME_EXTSEARCH8 && (!(MotionFlags & XVID_ME_EXTSEARCH_BITS))) {                  if (MotionFlags & XVID_ME_EXTSEARCH8 && (!(MotionFlags & XVID_ME_EXTSEARCH_RD))) {
1569                          int32_t temp_sad = *(Data->iMinSAD); /* store current MinSAD */                          int32_t temp_sad = *(Data->iMinSAD); /* store current MinSAD */
1570    
1571                          MainSearchFunc *MainSearchPtr;                          MainSearchFunc *MainSearchPtr;
# Line 2033  Line 2114 
2114          Data.lambda16 = lambda_vec16[frame->quant];          Data.lambda16 = lambda_vec16[frame->quant];
2115          Data.qpel = pParam->vol_flags & XVID_VOL_QUARTERPEL;          Data.qpel = pParam->vol_flags & XVID_VOL_QUARTERPEL;
2116          Data.rounding = 0;          Data.rounding = 0;
2117          Data.chroma = frame->motion_flags & XVID_ME_CHROMA8;          Data.chroma = frame->motion_flags & XVID_ME_CHROMA_BVOP;
2118          Data.temp = temp;          Data.temp = temp;
2119    
2120          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 2221  Line 2302 
2302          Data.temp = temp;          Data.temp = temp;
2303          CheckCandidate = CheckCandidate32I;          CheckCandidate = CheckCandidate32I;
2304    
   
2305          if (intraCount != 0) {          if (intraCount != 0) {
2306                  if (intraCount < 10) // we're right after an I frame                  if (intraCount < 10) // we're right after an I frame
2307                          IntraThresh += 15* (intraCount - 10) * (intraCount - 10);                          IntraThresh += 15* (intraCount - 10) * (intraCount - 10);
# Line 2302  Line 2382 
2382                  Data->qpel_precision = 1;                  Data->qpel_precision = 1;
2383                  CheckCandidateBits16(Data->currentQMV[0].x, Data->currentQMV[0].y, 255, &iDirection, Data);                  CheckCandidateBits16(Data->currentQMV[0].x, Data->currentQMV[0].y, 255, &iDirection, Data);
2384    
2385                  if (MotionFlags & (XVID_ME_HALFPELREFINE16_BITS | XVID_ME_EXTSEARCH_BITS)) { /* we have to prepare for halfpixel-precision search */                  if (MotionFlags & (XVID_ME_HALFPELREFINE16_RD | XVID_ME_EXTSEARCH_RD)) { /* we have to prepare for halfpixel-precision search */
2386                          for(i = 0; i < 5; i++) bsad[i] = Data->iMinSAD[i];                          for(i = 0; i < 5; i++) bsad[i] = Data->iMinSAD[i];
2387                          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,
2388                                                  pParam->width, pParam->height, Data->iFcode - Data->qpel, 0, Data->rrv);                                                  pParam->width, pParam->height, Data->iFcode - Data->qpel, 0, Data->rrv);
# Line 2316  Line 2396 
2396                  CheckCandidateBits16(Data->currentMV[0].x, Data->currentMV[0].y, 255, &iDirection, Data);                  CheckCandidateBits16(Data->currentMV[0].x, Data->currentMV[0].y, 255, &iDirection, Data);
2397          }          }
2398    
2399          if (MotionFlags&XVID_ME_EXTSEARCH_BITS) SquareSearch(Data->currentMV->x, Data->currentMV->y, Data, iDirection);          if (MotionFlags&XVID_ME_EXTSEARCH_RD) SquareSearch(Data->currentMV->x, Data->currentMV->y, Data, iDirection);
2400    
2401          if (MotionFlags&XVID_ME_HALFPELREFINE16_BITS) SubpelRefine(Data);          if (MotionFlags&XVID_ME_HALFPELREFINE16_RD) SubpelRefine(Data);
2402    
2403          if (Data->qpel) {          if (Data->qpel) {
2404                  if (MotionFlags&(XVID_ME_EXTSEARCH_BITS | XVID_ME_HALFPELREFINE16_BITS)) { /* there was halfpel-precision search */                  if (MotionFlags&(XVID_ME_EXTSEARCH_RD | XVID_ME_HALFPELREFINE16_RD)) { /* there was halfpel-precision search */
2405                          for(i = 0; i < 5; i++) if (bsad[i] > Data->iMinSAD[i]) {                          for(i = 0; i < 5; i++) if (bsad[i] > Data->iMinSAD[i]) {
2406                                  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 */
2407                                  Data->currentQMV[i].y = 2 * Data->currentMV[i].y;                                  Data->currentQMV[i].y = 2 * Data->currentMV[i].y;
# Line 2332  Line 2412 
2412                          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,
2413                                          pParam->width, pParam->height, Data->iFcode, 1, 0);                                          pParam->width, pParam->height, Data->iFcode, 1, 0);
2414                  }                  }
2415                  if (MotionFlags&XVID_ME_QUARTERPELREFINE16_BITS) SubpelRefine(Data);                  if (MotionFlags&XVID_ME_QUARTERPELREFINE16_RD) SubpelRefine(Data);
2416          }          }
2417    
2418          if (MotionFlags&XVID_ME_CHECKPREDICTION_BITS) { /* let's check vector equal to prediction */          if (MotionFlags&XVID_ME_CHECKPREDICTION_RD) { /* let's check vector equal to prediction */
2419                  VECTOR * v = Data->qpel ? Data->currentQMV : Data->currentMV;                  VECTOR * v = Data->qpel ? Data->currentQMV : Data->currentMV;
2420                  if (!(Data->predMV.x == v->x && Data->predMV.y == v->y))                  if (!(Data->predMV.x == v->x && Data->predMV.y == v->y))
2421                          CheckCandidateBits16(Data->predMV.x, Data->predMV.y, 255, &iDirection, Data);                          CheckCandidateBits16(Data->predMV.x, Data->predMV.y, 255, &iDirection, Data);
# Line 2370  Line 2450 
2450                  Data8->RefP[2] = Data->RefP[2] + 8*((i&1) + (i>>1)*Data->iEdgedWidth);                  Data8->RefP[2] = Data->RefP[2] + 8*((i&1) + (i>>1)*Data->iEdgedWidth);
2451                  Data8->RefP[1] = Data->RefP[1] + 8*((i&1) + (i>>1)*Data->iEdgedWidth);                  Data8->RefP[1] = Data->RefP[1] + 8*((i&1) + (i>>1)*Data->iEdgedWidth);
2452                  Data8->RefP[3] = Data->RefP[3] + 8*((i&1) + (i>>1)*Data->iEdgedWidth);                  Data8->RefP[3] = Data->RefP[3] + 8*((i&1) + (i>>1)*Data->iEdgedWidth);
2453                    *Data8->cbp = (Data->cbp[1] & (1<<(5-i))) ? 1:0; // copy corresponding cbp bit
2454    //              *Data8->cbp = 1;
2455    
2456                  if(Data->qpel) {                  if(Data->qpel) {
2457                          Data8->predMV = get_qpmv2(pMBs, pParam->mb_width, 0, x, y, i);                          Data8->predMV = get_qpmv2(pMBs, pParam->mb_width, 0, x, y, i);
# Line 2395  Line 2477 
2477                  }                  }
2478    
2479                  if (Data8->qpel) {                  if (Data8->qpel) {
2480                          if (MotionFlags&XVID_ME_HALFPELREFINE8_BITS || (MotionFlags&XVID_ME_EXTSEARCH8 && MotionFlags&XVID_ME_EXTSEARCH_BITS)) { /* halfpixel motion search follows */                          if (MotionFlags&XVID_ME_HALFPELREFINE8_RD || (MotionFlags&XVID_ME_EXTSEARCH8 && MotionFlags&XVID_ME_EXTSEARCH_RD)) { /* halfpixel motion search follows */
2481                                  int32_t s = *Data8->iMinSAD;                                  int32_t s = *Data8->iMinSAD;
2482                                  Data8->currentMV->x = Data8->currentQMV->x/2;                                  Data8->currentMV->x = Data8->currentQMV->x/2;
2483                                  Data8->currentMV->y = Data8->currentQMV->y/2;                                  Data8->currentMV->y = Data8->currentQMV->y/2;
# Line 2406  Line 2488 
2488                                  if (Data8->currentQMV->x & 1 || Data8->currentQMV->y & 1)                                  if (Data8->currentQMV->x & 1 || Data8->currentQMV->y & 1)
2489                                          CheckCandidateBits8(Data8->currentMV->x, Data8->currentMV->y, 255, &iDirection, Data8);                                          CheckCandidateBits8(Data8->currentMV->x, Data8->currentMV->y, 255, &iDirection, Data8);
2490    
2491                                  if (MotionFlags & XVID_ME_EXTSEARCH8 && MotionFlags & XVID_ME_EXTSEARCH_BITS)                                  if (MotionFlags & XVID_ME_EXTSEARCH8 && MotionFlags & XVID_ME_EXTSEARCH_RD)
2492                                          SquareSearch(Data8->currentMV->x, Data8->currentMV->x, Data8, 255);                                          SquareSearch(Data8->currentMV->x, Data8->currentMV->x, Data8, 255);
2493    
2494                                  if (MotionFlags & XVID_ME_HALFPELREFINE8_BITS)                                  if (MotionFlags & XVID_ME_HALFPELREFINE8_RD)
2495                                          SubpelRefine(Data8);                                          SubpelRefine(Data8);
2496    
2497                                  if(s > *Data8->iMinSAD) { /* we have found a better match */                                  if(s > *Data8->iMinSAD) { /* we have found a better match */
# Line 2422  Line 2504 
2504                                                          pParam->width, pParam->height, Data8->iFcode, 1, 0);                                                          pParam->width, pParam->height, Data8->iFcode, 1, 0);
2505    
2506                          }                          }
2507                          if (MotionFlags & XVID_ME_QUARTERPELREFINE8_BITS) SubpelRefine(Data8);                          if (MotionFlags & XVID_ME_QUARTERPELREFINE8_RD) SubpelRefine(Data8);
2508    
2509                  } else { /* not qpel */                  } else { /* not qpel */
2510    
2511                          if (MotionFlags & XVID_ME_EXTSEARCH8 && MotionFlags & XVID_ME_EXTSEARCH_BITS) /* extsearch */                          if (MotionFlags & XVID_ME_EXTSEARCH8 && MotionFlags & XVID_ME_EXTSEARCH_RD) /* extsearch */
2512                                  SquareSearch(Data8->currentMV->x, Data8->currentMV->x, Data8, 255);                                  SquareSearch(Data8->currentMV->x, Data8->currentMV->x, Data8, 255);
2513    
2514                          if (MotionFlags & XVID_ME_HALFPELREFINE8_BITS)                          if (MotionFlags & XVID_ME_HALFPELREFINE8_RD)
2515                                  SubpelRefine(Data8); /* halfpel refinement */                                  SubpelRefine(Data8); /* halfpel refinement */
2516                  }                  }
2517    
2518                  /* checking vector equal to predicion */                  /* checking vector equal to predicion */
2519                  if (i != 0 && MotionFlags & XVID_ME_CHECKPREDICTION_BITS) {                  if (i != 0 && MotionFlags & XVID_ME_CHECKPREDICTION_RD) {
2520                          const VECTOR * v = Data->qpel ? Data8->currentQMV : Data8->currentMV;                          const VECTOR * v = Data->qpel ? Data8->currentQMV : Data8->currentMV;
2521                          if (!MVequal(*v, Data8->predMV))                          if (!MVequal(*v, Data8->predMV))
2522                                  CheckCandidateBits8(Data8->predMV.x, Data8->predMV.y, 255, &iDirection, Data8);                                  CheckCandidateBits8(Data8->predMV.x, Data8->predMV.y, 255, &iDirection, Data8);
# Line 2458  Line 2540 
2540                  }                  }
2541                  pMB->mvs[i] = *Data8->currentMV;                  pMB->mvs[i] = *Data8->currentMV;
2542                  pMB->sad8[i] = 4 * *Data8->iMinSAD;                  pMB->sad8[i] = 4 * *Data8->iMinSAD;
2543                  if (Data8->temp[0]) cbp |= 1 << (5 - i);                  if (Data8->cbp[0]) cbp |= 1 << (5 - i);
2544    
2545          } /* /for all luma blocks */          } /* end - for all luma blocks */
2546    
2547          bits += BITS_MULT*xvid_cbpy_tab[15-(cbp>>2)].len;          bits += BITS_MULT*xvid_cbpy_tab[15-(cbp>>2)].len;
2548    
# Line 2482  Line 2564 
2564    
2565          bits += BITS_MULT*mcbpc_inter_tab[(MODE_INTER4V & 7) | ((cbp & 3) << 3)].len;          bits += BITS_MULT*mcbpc_inter_tab[(MODE_INTER4V & 7) | ((cbp & 3) << 3)].len;
2566    
2567            *Data->cbp = cbp;
2568          return bits;          return bits;
2569  }  }
2570    
# Line 2517  Line 2600 
2600          return bits;          return bits;
2601  }  }
2602    
2603    static int
2604    CountMBBitsGMC(const SearchData * const Data, const IMAGE * const vGMC, const int x, const int y)
2605    {
2606            int bits = BITS_MULT*1; /* this one is mcsel */
2607            int cbp = 0, i;
2608            int16_t *in = Data->dctSpace, * coeff = Data->dctSpace + 64;
2609    
2610            for(i = 0; i < 4; i++) {
2611                    int s = 8*((i&1) + (i>>1)*Data->iEdgedWidth);
2612                    transfer_8to16subro(in, Data->Cur + s, vGMC->y + s + 16*(x+y*Data->iEdgedWidth), Data->iEdgedWidth);
2613                    bits += Block_CalcBits(coeff, in, Data->dctSpace + 128, Data->iQuant, Data->quant_type, &cbp, i);
2614                    if (bits >= Data->iMinSAD[0]) return bits;
2615            }
2616    
2617            bits += BITS_MULT*xvid_cbpy_tab[15-(cbp>>2)].len;
2618    
2619            /*chroma U */
2620            transfer_8to16subro(in, Data->CurU, vGMC->u + 8*(x+y*(Data->iEdgedWidth/2)), Data->iEdgedWidth/2);
2621            bits += Block_CalcBits(coeff, in, Data->dctSpace + 128, Data->iQuant, Data->quant_type, &cbp, 4);
2622    
2623            if (bits >= Data->iMinSAD[0]) return bits;
2624    
2625            /* chroma V */
2626            transfer_8to16subro(in, Data->CurV , vGMC->v + 8*(x+y*(Data->iEdgedWidth/2)), Data->iEdgedWidth/2);
2627            bits += Block_CalcBits(coeff, in, Data->dctSpace + 128, Data->iQuant, Data->quant_type, &cbp, 5);
2628    
2629            bits += BITS_MULT*mcbpc_inter_tab[(MODE_INTER & 7) | ((cbp & 3) << 3)].len;
2630    
2631            *Data->cbp = cbp;
2632    
2633            return bits;
2634    }
2635    
2636    
2637    
# Line 2535  Line 2650 
2650  {  {
2651    
2652          int i=0;          int i=0;
 //      VECTOR pmv[3];  
2653          MACROBLOCK * const pMB = &pMBs[x + y * pParam->mb_width];          MACROBLOCK * const pMB = &pMBs[x + y * pParam->mb_width];
2654    
2655          Data->iMinSAD[0] = MV_MAX_ERROR;          Data->iMinSAD[0] = MV_MAX_ERROR;
2656    
2657          //median is only used as prediction. it doesn't have to be real          Data->predMV = get_pmv2(pMBs, pParam->mb_width, 0, x, y, 0);
         if (x == 0 && y == 0)  
                 Data->predMV.x = Data->predMV.y = 0;  
         else  
                 if (x == 0) //left macroblock does not have any vector now  
                         Data->predMV = (pMB - pParam->mb_width)->mvs[0]; // top instead of median  
                 else if (y == 0) // top macroblock doesn't have it's vector  
                         Data->predMV = (pMB-1)->mvs[0]; // left instead of median  
                         else Data->predMV = get_pmv2(pMBs, pParam->mb_width, 0, x, y, 0); //else median  
2658    
2659          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,
2660                                  pParam->width, pParam->height, Data->iFcode - ((pParam->vol_flags & XVID_VOL_QUARTERPEL)?1:0), 0, 0);                                  pParam->width, pParam->height, 16, 0, 0);
2661    
2662          Data->Cur = pCur + 16*(x + y * pParam->edged_width);          Data->Cur = pCur + 16*(x + y * pParam->edged_width);
2663          Data->RefP[0] = pRef + 16*(x + y * pParam->edged_width);          Data->RefP[0] = pRef + 16*(x + y * pParam->edged_width);
# Line 2565  Line 2671 
2671          if ( (Data->predMV.x !=0) || (Data->predMV.y != 0) )          if ( (Data->predMV.x !=0) || (Data->predMV.y != 0) )
2672                  CheckCandidate16I(Data->predMV.x, Data->predMV.y, 255, &i, Data);                  CheckCandidate16I(Data->predMV.x, Data->predMV.y, 255, &i, Data);
2673    
2674          if (Data->iMinSAD[0] > 256 /*4 * MAX_SAD00_FOR_SKIP*/) // diamond only if needed          AdvDiamondSearch(Data->currentMV[0].x, Data->currentMV[0].y, Data, 255);
                 DiamondSearch(Data->currentMV[0].x, Data->currentMV[0].y, Data, 255);  
2675    
2676          SubpelRefine(Data);          SubpelRefine(Data);
2677    
# Line 2584  Line 2689 
2689    
2690          pMB->mvs[0] = pMB->mvs[1] = pMB->mvs[2] = pMB->mvs[3] = Data->currentMV[0];          pMB->mvs[0] = pMB->mvs[1] = pMB->mvs[2] = pMB->mvs[3] = Data->currentMV[0];
2691          pMB->sad16 = Data->iMinSAD[0];          pMB->sad16 = Data->iMinSAD[0];
2692          pMB->sad16 += d_mv_bits(pMB->mvs[0].x, pMB->mvs[0].y, Data->predMV, Data->iFcode, 0, 0);          pMB->mode = MODE_INTER;
2693            pMB->sad16 += 10*d_mv_bits(pMB->mvs[0].x, pMB->mvs[0].y, Data->predMV, Data->iFcode, 0, 0);
2694          return;          return;
2695  }  }
2696    
# Line 2607  Line 2713 
2713          memset(&Data, 0, sizeof(SearchData));          memset(&Data, 0, sizeof(SearchData));
2714    
2715          Data.iEdgedWidth = pParam->edged_width;          Data.iEdgedWidth = pParam->edged_width;
         Data.qpel = ((pParam->vol_flags & XVID_VOL_QUARTERPEL)?1:0);  
         Data.qpel_precision = 0;  
2716          Data.rounding = pParam->m_rounding_type;          Data.rounding = pParam->m_rounding_type;
         Data.chroma = current->motion_flags & XVID_ME_CHROMA16;  
         Data.rrv = current->vop_flags & XVID_VOL_REDUCED_ENABLE;  
2717    
2718          Data.currentMV = &currentMV[0];          Data.currentMV = &currentMV[0];
2719          Data.iMinSAD = &iMinSAD[0];          Data.iMinSAD = &iMinSAD[0];
2720          Data.iFcode = current->fcode;          Data.iFcode = current->fcode;
2721          Data.temp = temp;          Data.temp = temp;
         Data.RefP[0] = pReference->y;  
         Data.RefP[1] = pRefV->y;  
         Data.RefP[2] = pRefH->y;  
         Data.RefP[3] = pRefHV->y;  
2722    
2723          CheckCandidate = CheckCandidate16I;          CheckCandidate = CheckCandidate16I;
2724    
# Line 2646  Line 2744 
2744                                  const IMAGE * const pRefHV)                                  const IMAGE * const pRefHV)
2745  {  {
2746    
2747          const unsigned int deltax=8;            // upper bound for difference between a MV and it's neighbour MVs          const int deltax=8;             // upper bound for difference between a MV and it's neighbour MVs
2748          const unsigned int deltay=8;          const int deltay=8;
2749          const unsigned int gradx=512;           // lower bound for gradient in MB (ignore "flat" blocks)          const unsigned int gradx=512;           // lower bound for gradient in MB (ignore "flat" blocks)
2750          const unsigned int grady=512;          const unsigned int grady=512;
2751    
# Line 2810  Line 2908 
2908  */  */
2909                  gmc.duv[0].x= gmc.duv[0].y= gmc.duv[1].x= gmc.duv[1].y= gmc.duv[2].x= gmc.duv[2].y=0;                  gmc.duv[0].x= gmc.duv[0].y= gmc.duv[1].x= gmc.duv[1].y= gmc.duv[2].x= gmc.duv[2].y=0;
2910    
2911                  if (!(current->motion_flags & XVID_GME_REFINE))                  if (!(current->motion_flags & XVID_ME_GME_REFINE))
2912                          return gmc;                          return gmc;
2913    
2914                  for (my = 1; my < (uint32_t)MBh-1; my++) /* ignore boundary blocks */                  for (my = 1; my < (uint32_t)MBh-1; my++) /* ignore boundary blocks */

Legend:
Removed from v.1077  
changed lines
  Added in v.1107

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