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

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

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

revision 662, Tue Nov 19 13:48:42 2002 UTC revision 704, Wed Dec 11 10:32:29 2002 UTC
# Line 52  Line 52 
52  #define CHECK_CANDIDATE(X,Y,D) { \  #define CHECK_CANDIDATE(X,Y,D) { \
53  (*CheckCandidate)((const int)(X),(const int)(Y), (D), &iDirection, data ); }  (*CheckCandidate)((const int)(X),(const int)(Y), (D), &iDirection, data ); }
54    
55  #define GET_REFERENCE(X, Y, REF) { \  #define iDiamondSize 2
         switch ( (((X)&1)<<1) + ((Y)&1) ) \  
         { \  
                 case 0 : REF = (uint8_t *)data->Ref + (X)/2 + ((Y)/2)*(data->iEdgedWidth); break; \  
                 case 1 : REF = (uint8_t *)data->RefV + (X)/2 + (((Y)-1)/2)*(data->iEdgedWidth); break; \  
                 case 2 : REF = (uint8_t *)data->RefH + ((X)-1)/2 + ((Y)/2)*(data->iEdgedWidth); break; \  
                 default : REF = (uint8_t *)data->RefHV + ((X)-1)/2 + (((Y)-1)/2)*(data->iEdgedWidth); break; \  
         } \  
 }  
 // I hate those macros :/  
 #define GET_REFERENCE2(X, Y, REF) { \  
         switch ( (((X)&1)<<1) + ((Y)&1) ) \  
         { \  
                 case 0 : REF = (uint8_t *)data->bRef + (X)/2 + ((Y)/2)*(data->iEdgedWidth); break; \  
                 case 1 : REF = (uint8_t *)data->bRefV + (X)/2 + (((Y)-1)/2)*(data->iEdgedWidth); break; \  
                 case 2 : REF = (uint8_t *)data->bRefH + ((X)-1)/2 + ((Y)/2)*(data->iEdgedWidth); break; \  
                 default : REF = (uint8_t *)data->bRefHV + ((X)-1)/2 + (((Y)-1)/2)*(data->iEdgedWidth); break; \  
         } \  
 }  
56    
57    static VECTOR
58    GlobalMotionEst(const MACROBLOCK * const pMBs,
59                                    const MBParam * const pParam, const uint32_t iFcode);
60    
 #define iDiamondSize 2  
61    
62  static __inline int  static __inline int
63  d_mv_bits(int x, int y, const uint32_t iFcode)  d_mv_bits(int x, int y, const uint32_t iFcode)
# Line 137  Line 121 
121          return sad;          return sad;
122  }  }
123    
124    static __inline const uint8_t *
125    GetReference(const int x, const int y, const int dir, const SearchData * const data)
126    {
127    //      dir : 0 = forward, 1 = backward
128            switch ( (dir << 2) | ((x&1)<<1) | (y&1) ) {
129                    case 0 : return data->Ref + x/2 + (y/2)*(data->iEdgedWidth);
130                    case 1 : return data->RefV + x/2 + ((y-1)/2)*(data->iEdgedWidth);
131                    case 2 : return data->RefH + (x-1)/2 + (y/2)*(data->iEdgedWidth);
132                    case 3 : return data->RefHV + (x-1)/2 + ((y-1)/2)*(data->iEdgedWidth);
133                    case 4 : return data->bRef + x/2 + (y/2)*(data->iEdgedWidth);
134                    case 5 : return data->bRefV + x/2 + ((y-1)/2)*(data->iEdgedWidth);
135                    case 6 : return data->bRefH + (x-1)/2 + (y/2)*(data->iEdgedWidth);
136                    default : return data->bRefHV + (x-1)/2 + ((y-1)/2)*(data->iEdgedWidth);
137    
138  /* CHECK_CANDIATE FUNCTIONS START */          }
139    }
140    
141    static uint8_t *
142    Interpolate8x8qpel(const int x, const int y, const int block, const int dir, const SearchData * const data)
143    {
144    // create or find a qpel-precision reference picture; return pointer to it
145            uint8_t * Reference = (uint8_t *)data->RefQ + 16*dir;
146            const int32_t iEdgedWidth = data->iEdgedWidth;
147            const uint32_t rounding = data->rounding;
148            const int halfpel_x = x/2;
149            const int halfpel_y = y/2;
150            const uint8_t *ref1, *ref2, *ref3, *ref4;
151    
152            ref1 = GetReference(halfpel_x, halfpel_y, dir, data); // this reference is used in all cases
153            ref1 += 8 * (block&1) + 8 * (block>>1) * iEdgedWidth;
154            switch( ((x&1)<<1) + (y&1) ) {
155            case 0: // pure halfpel position
156                    Reference = (uint8_t *) GetReference(halfpel_x, halfpel_y, dir, data);
157                    Reference += 8 * (block&1) + 8 * (block>>1) * iEdgedWidth;
158                    break;
159    
160            case 1: // x halfpel, y qpel - top or bottom during qpel refinement
161                    ref2 = GetReference(halfpel_x, y - halfpel_y, dir, data);
162                    ref2 += 8 * (block&1) + 8 * (block>>1) * iEdgedWidth;
163                    interpolate8x8_avg2(Reference, ref1, ref2, iEdgedWidth, rounding, 8);
164                    break;
165    
166            case 2: // x qpel, y halfpel - left or right during qpel refinement
167                    ref2 = GetReference(x - halfpel_x, halfpel_y, dir, data);
168                    ref2 += 8 * (block&1) + 8 * (block>>1) * iEdgedWidth;
169                    interpolate8x8_avg2(Reference, ref1, ref2, iEdgedWidth, rounding, 8);
170                    break;
171    
172            default: // x and y in qpel resolution - the "corners" (top left/right and
173                             // bottom left/right) during qpel refinement
174                    ref2 = GetReference(halfpel_x, y - halfpel_y, dir, data);
175                    ref3 = GetReference(x - halfpel_x, halfpel_y, dir, data);
176                    ref4 = GetReference(x - halfpel_x, y - halfpel_y, dir, data);
177                    ref2 += 8 * (block&1) + 8 * (block>>1) * iEdgedWidth;
178                    ref3 += 8 * (block&1) + 8 * (block>>1) * iEdgedWidth;
179                    ref4 += 8 * (block&1) + 8 * (block>>1) * iEdgedWidth;
180                    interpolate8x8_avg4(Reference, ref1, ref2, ref3, ref4, iEdgedWidth, rounding);
181                    break;
182            }
183            return Reference;
184    }
185    
186    static uint8_t *
187    Interpolate16x16qpel(const int x, const int y, const int dir, const SearchData * const data)
188    {
189    // create or find a qpel-precision reference picture; return pointer to it
190            uint8_t * Reference = (uint8_t *)data->RefQ + 16*dir;
191            const int32_t iEdgedWidth = data->iEdgedWidth;
192            const uint32_t rounding = data->rounding;
193            const int halfpel_x = x/2;
194            const int halfpel_y = y/2;
195            const uint8_t *ref1, *ref2, *ref3, *ref4;
196    
197            ref1 = GetReference(halfpel_x, halfpel_y, dir, data); // this reference is used in all cases
198            switch( ((x&1)<<1) + (y&1) ) {
199            case 0: // pure halfpel position
200                    return (uint8_t *) GetReference(halfpel_x, halfpel_y, dir, data);
201            case 1: // x halfpel, y qpel - top or bottom during qpel refinement
202                    ref2 = GetReference(halfpel_x, y - halfpel_y, dir, data);
203                    interpolate8x8_avg2(Reference, ref1, ref2, iEdgedWidth, rounding, 8);
204                    interpolate8x8_avg2(Reference+8, ref1+8, ref2+8, iEdgedWidth, rounding, 8);
205                    interpolate8x8_avg2(Reference+8*iEdgedWidth, ref1+8*iEdgedWidth, ref2+8*iEdgedWidth, iEdgedWidth, rounding, 8);
206                    interpolate8x8_avg2(Reference+8*iEdgedWidth+8, ref1+8*iEdgedWidth+8, ref2+8*iEdgedWidth+8, iEdgedWidth, rounding, 8);
207                    break;
208    
209            case 2: // x qpel, y halfpel - left or right during qpel refinement
210                    ref2 = GetReference(x - halfpel_x, halfpel_y, dir, data);
211                    interpolate8x8_avg2(Reference, ref1, ref2, iEdgedWidth, rounding, 8);
212                    interpolate8x8_avg2(Reference+8, ref1+8, ref2+8, iEdgedWidth, rounding, 8);
213                    interpolate8x8_avg2(Reference+8*iEdgedWidth, ref1+8*iEdgedWidth, ref2+8*iEdgedWidth, iEdgedWidth, rounding, 8);
214                    interpolate8x8_avg2(Reference+8*iEdgedWidth+8, ref1+8*iEdgedWidth+8, ref2+8*iEdgedWidth+8, iEdgedWidth, rounding, 8);
215                    break;
216    
217            default: // x and y in qpel resolution - the "corners" (top left/right and
218                             // bottom left/right) during qpel refinement
219                    ref2 = GetReference(halfpel_x, y - halfpel_y, dir, data);
220                    ref3 = GetReference(x - halfpel_x, halfpel_y, dir, data);
221                    ref4 = GetReference(x - halfpel_x, y - halfpel_y, dir, data);
222                    interpolate8x8_avg4(Reference, ref1, ref2, ref3, ref4, iEdgedWidth, rounding);
223                    interpolate8x8_avg4(Reference+8, ref1+8, ref2+8, ref3+8, ref4+8, iEdgedWidth, rounding);
224                    interpolate8x8_avg4(Reference+8*iEdgedWidth, ref1+8*iEdgedWidth, ref2+8*iEdgedWidth, ref3+8*iEdgedWidth, ref4+8*iEdgedWidth, iEdgedWidth, rounding);
225                    interpolate8x8_avg4(Reference+8*iEdgedWidth+8, ref1+8*iEdgedWidth+8, ref2+8*iEdgedWidth+8, ref3+8*iEdgedWidth+8, ref4+8*iEdgedWidth+8, iEdgedWidth, rounding);
226                    break;
227            }
228            return Reference;
229    }
230    
231    /* CHECK_CANDIATE FUNCTIONS START */
232    
233  static void  static void
234  CheckCandidate16(const int x, const int y, const int Direction, int * const dir, const SearchData * const data)  CheckCandidate16(const int x, const int y, const int Direction, int * const dir, const SearchData * const data)
235  {  {
236          int t;          int t, xc, yc;
237          const uint8_t * Reference;          const uint8_t * Reference;
238            VECTOR * current;
239    
240          if (( x > data->max_dx) || ( x < data->min_dx)          if (( x > data->max_dx) || ( x < data->min_dx)
241                  || ( y > data->max_dy) || (y < data->min_dy)) return;                  || ( y > data->max_dy) || (y < data->min_dy)) return;
242    
243            if (data->qpel_precision) { // x and y are in 1/4 precision
244                    Reference = Interpolate16x16qpel(x, y, 0, data);
245                    t = d_mv_bits(x - data->predMV.x, y - data->predMV.y, data->iFcode);
246                    xc = x/2; yc = y/2; //for chroma sad
247                    current = data->currentQMV;
248            } else {
249          switch ( ((x&1)<<1) + (y&1) ) {          switch ( ((x&1)<<1) + (y&1) ) {
250                  case 0 : Reference = data->Ref + x/2 + (y/2)*(data->iEdgedWidth); break;                  case 0 : Reference = data->Ref + x/2 + (y/2)*(data->iEdgedWidth); break;
251                  case 1 : Reference = data->RefV + x/2 + ((y-1)/2)*(data->iEdgedWidth); break;                  case 1 : Reference = data->RefV + x/2 + ((y-1)/2)*(data->iEdgedWidth); break;
252                  case 2 : Reference = data->RefH + (x-1)/2 + (y/2)*(data->iEdgedWidth); break;                  case 2 : Reference = data->RefH + (x-1)/2 + (y/2)*(data->iEdgedWidth); break;
253                  default : Reference = data->RefHV + (x-1)/2 + ((y-1)/2)*(data->iEdgedWidth); break;                  default : Reference = data->RefHV + (x-1)/2 + ((y-1)/2)*(data->iEdgedWidth); break;
254          }          }
255                    if (data->qpel) t = d_mv_bits(2*x - data->predMV.x, 2*y - data->predMV.y, data->iFcode);
256                    else t = d_mv_bits(x - data->predMV.x, y - data->predMV.y, data->iFcode);
257                    current = data->currentMV;
258                    xc = x; yc = y;
259            }
260    
261          data->temp[0] = sad16v(data->Cur, Reference, data->iEdgedWidth, data->temp + 1);          data->temp[0] = sad16v(data->Cur, Reference, data->iEdgedWidth, data->temp + 1);
262    
         if (data->qpel) t = d_mv_bits(2*x - data->predQMV.x, 2*y - data->predQMV.y, data->iFcode);  
         else t = d_mv_bits(x - data->predMV.x, y - data->predMV.y, data->iFcode);  
   
263          data->temp[0] += (data->lambda16 * t * data->temp[0])/1000;          data->temp[0] += (data->lambda16 * t * data->temp[0])/1000;
264          data->temp[1] += (data->lambda8 * t * (data->temp[1] + NEIGH_8X8_BIAS))/100;          data->temp[1] += (data->lambda8 * t * (data->temp[1] + NEIGH_8X8_BIAS))/100;
265    
266          if (data->chroma) data->temp[0] += ChromaSAD(x, y, data);          if (data->chroma) data->temp[0] += ChromaSAD(xc, yc, data);
267    
268          if (data->temp[0] < data->iMinSAD[0]) {          if (data->temp[0] < data->iMinSAD[0]) {
269                  data->iMinSAD[0] = data->temp[0];                  data->iMinSAD[0] = data->temp[0];
270                  data->currentMV[0].x = x; data->currentMV[0].y = y;                  current[0].x = x; current[0].y = y;
271                  *dir = Direction; }                  *dir = Direction; }
272    
273          if (data->temp[1] < data->iMinSAD[1]) {          if (data->temp[1] < data->iMinSAD[1]) {
274                  data->iMinSAD[1] = data->temp[1]; data->currentMV[1].x = x; data->currentMV[1].y = y; }                  data->iMinSAD[1] = data->temp[1]; current[1].x = x; current[1].y= y; }
275          if (data->temp[2] < data->iMinSAD[2]) {          if (data->temp[2] < data->iMinSAD[2]) {
276                  data->iMinSAD[2] = data->temp[2]; data->currentMV[2].x = x; data->currentMV[2].y = y; }                  data->iMinSAD[2] = data->temp[2]; current[2].x = x; current[2].y = y; }
277          if (data->temp[3] < data->iMinSAD[3]) {          if (data->temp[3] < data->iMinSAD[3]) {
278                  data->iMinSAD[3] = data->temp[3]; data->currentMV[3].x = x; data->currentMV[3].y = y; }                  data->iMinSAD[3] = data->temp[3]; current[3].x = x; current[3].y = y; }
279          if (data->temp[4] < data->iMinSAD[4]) {          if (data->temp[4] < data->iMinSAD[4]) {
280                  data->iMinSAD[4] = data->temp[4]; data->currentMV[4].x = x; data->currentMV[4].y = y; }                  data->iMinSAD[4] = data->temp[4]; current[4].x = x; current[4].y = y; }
281    
282  }  }
283    
284  static void  static void
285  CheckCandidate16no4v(const int x, const int y, const int Direction, int * const dir, const SearchData * const data)  CheckCandidate32(const int x, const int y, const int Direction, int * const dir, const SearchData * const data)
286  {  {
287          int32_t sad;          int t;
288          const uint8_t * Reference;          const uint8_t * Reference;
289    
290          if (( x > data->max_dx) || ( x < data->min_dx)          if ( (!(x&1) && x !=0) || (!(y&1) && y !=0) || //non-zero integer value
291                    ( x > data->max_dx) || ( x < data->min_dx)
292                  || ( y > data->max_dy) || (y < data->min_dy)) return;                  || ( y > data->max_dy) || (y < data->min_dy)) return;
293    
294          switch ( ((x&1)<<1) + (y&1) )          switch ( ((x&1)<<1) + (y&1) ) {
         {  
295                  case 0 : Reference = data->Ref + x/2 + (y/2)*(data->iEdgedWidth); break;                  case 0 : Reference = data->Ref + x/2 + (y/2)*(data->iEdgedWidth); break;
296                  case 1 : Reference = data->RefV + x/2 + ((y-1)/2)*(data->iEdgedWidth); break;                  case 1 : Reference = data->RefV + x/2 + ((y-1)/2)*(data->iEdgedWidth); break;
297                  case 2 : Reference = data->RefH + (x-1)/2 + (y/2)*(data->iEdgedWidth); break;                  case 2 : Reference = data->RefH + (x-1)/2 + (y/2)*(data->iEdgedWidth); break;
298                  default : Reference = data->RefHV + (x-1)/2 + ((y-1)/2)*(data->iEdgedWidth); break;                  default : Reference = data->RefHV + (x-1)/2 + ((y-1)/2)*(data->iEdgedWidth); break;
299          }          }
300    
301          sad = sad16(data->Cur, Reference, data->iEdgedWidth, MV_MAX_ERROR);          t = d_mv_bits(RRV_MV_SCALEDOWN(x) - data->predMV.x,
302          if (data->qpel) //only to be used in b-frames' ME                                          RRV_MV_SCALEDOWN(y) - data->predMV.y, data->iFcode);
                 sad += (data->lambda16 * d_mv_bits(2*x - data->predMV.x, 2*y - data->predMV.y, data->iFcode) * sad)/1000;  
         else  
                 sad += (data->lambda16 * d_mv_bits(x - data->predMV.x, y - data->predMV.y, data->iFcode) * sad)/1000;  
   
         if (sad < *(data->iMinSAD)) {  
                 *(data->iMinSAD) = sad;  
                 data->currentMV[0].x = x; data->currentMV[0].y = y;  
                 *dir = Direction; }  
 }  
   
 static void  
 CheckCandidate16_qpel(const int x, const int y, const int Direction, int * const dir, const SearchData * const data)  
   
 // CheckCandidate16 variant which expects x and y in quarter pixel resolution  
 // Important: This is no general usable routine! x and y must be +/-1 (qpel resolution!)  
 // around currentMV!  
 {  
         int t;  
         uint8_t * Reference = (uint8_t *)data->RefQ;  
         const uint8_t *ref1, *ref2, *ref3, *ref4;  
         VECTOR halfpelMV = *(data->currentMV);  
   
         int32_t iEdgedWidth = data->iEdgedWidth;  
         uint32_t rounding = data->rounding;  
   
         if (( x > data->max_dx) || ( x < data->min_dx)  
                 || ( y > data->max_dy) || (y < data->min_dy)) return;  
   
         GET_REFERENCE(halfpelMV.x, halfpelMV.y, ref1); // this refenrence is used in all cases  
         switch( ((x&1)<<1) + (y&1) )  
         {  
         case 0: // pure halfpel position - shouldn't happen during a refinement step  
                 GET_REFERENCE(halfpelMV.x, halfpelMV.y, Reference);  
                 break;  
   
         case 1: // x halfpel, y qpel - top or bottom during qpel refinement  
                 GET_REFERENCE(halfpelMV.x, y - halfpelMV.y, ref2);  
                 interpolate8x8_avg2(Reference, ref1, ref2, iEdgedWidth, rounding);  
                 interpolate8x8_avg2(Reference+8, ref1+8, ref2+8, iEdgedWidth, rounding);  
                 interpolate8x8_avg2(Reference+8*iEdgedWidth, ref1+8*iEdgedWidth, ref2+8*iEdgedWidth, iEdgedWidth, rounding);  
                 interpolate8x8_avg2(Reference+8*iEdgedWidth+8, ref1+8*iEdgedWidth+8, ref2+8*iEdgedWidth+8, iEdgedWidth, rounding);  
                 break;  
   
         case 2: // x qpel, y halfpel - left or right during qpel refinement  
                 GET_REFERENCE(x - halfpelMV.x, halfpelMV.y, ref2);  
                 interpolate8x8_avg2(Reference, ref1, ref2, iEdgedWidth, rounding);  
                 interpolate8x8_avg2(Reference+8, ref1+8, ref2+8, iEdgedWidth, rounding);  
                 interpolate8x8_avg2(Reference+8*iEdgedWidth, ref1+8*iEdgedWidth, ref2+8*iEdgedWidth, iEdgedWidth, rounding);  
                 interpolate8x8_avg2(Reference+8*iEdgedWidth+8, ref1+8*iEdgedWidth+8, ref2+8*iEdgedWidth+8, iEdgedWidth, rounding);  
                 break;  
   
         default: // x and y in qpel resolution - the "corners" (top left/right and  
                          // bottom left/right) during qpel refinement  
                 GET_REFERENCE(halfpelMV.x, y - halfpelMV.y, ref2);  
                 GET_REFERENCE(x - halfpelMV.x, halfpelMV.y, ref3);  
                 GET_REFERENCE(x - halfpelMV.x, y - halfpelMV.y, ref4);  
303    
304                  interpolate8x8_avg4(Reference, ref1, ref2, ref3, ref4, iEdgedWidth, rounding);          data->temp[0] = sad32v_c(data->Cur, Reference, data->iEdgedWidth, data->temp + 1);
                 interpolate8x8_avg4(Reference+8, ref1+8, ref2+8, ref3+8, ref4+8, iEdgedWidth, rounding);  
                 interpolate8x8_avg4(Reference+8*iEdgedWidth, ref1+8*iEdgedWidth, ref2+8*iEdgedWidth, ref3+8*iEdgedWidth, ref4+8*iEdgedWidth, iEdgedWidth, rounding);  
                 interpolate8x8_avg4(Reference+8*iEdgedWidth+8, ref1+8*iEdgedWidth+8, ref2+8*iEdgedWidth+8, ref3+8*iEdgedWidth+8, ref4+8*iEdgedWidth+8, iEdgedWidth, rounding);  
                 break;  
         }  
   
         data->temp[0] = sad16v(data->Cur, Reference, data->iEdgedWidth, data->temp+1);  
305    
         t = d_mv_bits(x - data->predQMV.x, y - data->predQMV.y, data->iFcode);  
306          data->temp[0] += (data->lambda16 * t * data->temp[0])/1000;          data->temp[0] += (data->lambda16 * t * data->temp[0])/1000;
307          data->temp[1] += (data->lambda8 * t * (data->temp[1] + NEIGH_8X8_BIAS))/100;          data->temp[1] += (data->lambda8 * t * (data->temp[1] + NEIGH_8X8_BIAS))/100;
308    
         if (data->chroma)  
                 data->temp[0] += ChromaSAD(x/2, y/2, data);  
   
309          if (data->temp[0] < data->iMinSAD[0]) {          if (data->temp[0] < data->iMinSAD[0]) {
310                  data->iMinSAD[0] = data->temp[0];                  data->iMinSAD[0] = data->temp[0];
311                  data->currentQMV[0].x = x; data->currentQMV[0].y = y;                  data->currentMV[0].x = x; data->currentMV[0].y = y;
312          /*      *dir = Direction;*/ }                  *dir = Direction; }
313    
314          if (data->temp[1] < data->iMinSAD[1]) {          if (data->temp[1] < data->iMinSAD[1]) {
315                  data->iMinSAD[1] = data->temp[1]; data->currentQMV[1].x = x; data->currentQMV[1].y = y; }                  data->iMinSAD[1] = data->temp[1]; data->currentMV[1].x = x; data->currentMV[1].y = y; }
316          if (data->temp[2] < data->iMinSAD[2]) {          if (data->temp[2] < data->iMinSAD[2]) {
317                  data->iMinSAD[2] = data->temp[2]; data->currentQMV[2].x = x; data->currentQMV[2].y = y; }                  data->iMinSAD[2] = data->temp[2]; data->currentMV[2].x = x; data->currentMV[2].y = y; }
318          if (data->temp[3] < data->iMinSAD[3]) {          if (data->temp[3] < data->iMinSAD[3]) {
319                  data->iMinSAD[3] = data->temp[3]; data->currentQMV[3].x = x; data->currentQMV[3].y = y; }                  data->iMinSAD[3] = data->temp[3]; data->currentMV[3].x = x; data->currentMV[3].y = y; }
320          if (data->temp[4] < data->iMinSAD[4]) {          if (data->temp[4] < data->iMinSAD[4]) {
321                  data->iMinSAD[4] = data->temp[4]; data->currentQMV[4].x = x; data->currentQMV[4].y = y; }                  data->iMinSAD[4] = data->temp[4]; data->currentMV[4].x = x; data->currentMV[4].y = y; }
322  }  }
323    
324  static void  static void
325  CheckCandidate16no4v_qpel(const int x, const int y, const int Direction, int * const dir, const SearchData * const data)  CheckCandidate16no4v(const int x, const int y, const int Direction, int * const dir, const SearchData * const data)
   
 // CheckCandidate16no4v variant which expects x and y in quarter pixel resolution  
 // Important: This is no general usable routine! x and y must be +/-1 (qpel resolution!)  
 // around currentMV!  
 // this function is for B-frames' search only  
326  {  {
         uint8_t * Reference = (uint8_t *)data->RefQ;  
         const uint8_t *ref1, *ref2, *ref3, *ref4;  
         VECTOR halfpelMV = *(data->currentMV);  
   
         int32_t iEdgedWidth = data->iEdgedWidth;  
327          int32_t sad;          int32_t sad;
328            const uint8_t * Reference;
329            int t;
330            VECTOR * current;
331    
332          if (( x > data->max_dx) || ( x < data->min_dx)          if (( x > data->max_dx) || ( x < data->min_dx)
333                  || ( y > data->max_dy) || (y < data->min_dy)) return;                  || ( y > data->max_dy) || (y < data->min_dy)) return;
334    
335          GET_REFERENCE(halfpelMV.x, halfpelMV.y, ref1); // this refenrence is used in all cases          if (data->rrv) {
336          switch( ((x&1)<<1) + (y&1) )                  if ( (!(x&1) && x !=0) || (!(y&1) && y !=0) ) return; //non-zero integer value
337          {                  t = d_mv_bits(RRV_MV_SCALEDOWN(x) - data->predMV.x,
338          case 0: // pure halfpel position - shouldn't happen during a refinement step                                          RRV_MV_SCALEDOWN(y) - data->predMV.y, data->iFcode);
339                  GET_REFERENCE(halfpelMV.x, halfpelMV.y, Reference);          }
                 break;  
   
         case 1: // x halfpel, y qpel - top or bottom during qpel refinement  
                 GET_REFERENCE(halfpelMV.x, y - halfpelMV.y, ref2);  
                 interpolate8x8_avg2(Reference, ref1, ref2, iEdgedWidth, 0);  
                 interpolate8x8_avg2(Reference+8, ref1+8, ref2+8, iEdgedWidth, 0);  
                 interpolate8x8_avg2(Reference+8*iEdgedWidth, ref1+8*iEdgedWidth, ref2+8*iEdgedWidth, iEdgedWidth, 0);  
                 interpolate8x8_avg2(Reference+8*iEdgedWidth+8, ref1+8*iEdgedWidth+8, ref2+8*iEdgedWidth+8, iEdgedWidth, 0);  
                 break;  
   
         case 2: // x qpel, y halfpel - left or right during qpel refinement  
                 GET_REFERENCE(x - halfpelMV.x, halfpelMV.y, ref2);  
                 interpolate8x8_avg2(Reference, ref1, ref2, iEdgedWidth, 0);  
                 interpolate8x8_avg2(Reference+8, ref1+8, ref2+8, iEdgedWidth, 0);  
                 interpolate8x8_avg2(Reference+8*iEdgedWidth, ref1+8*iEdgedWidth, ref2+8*iEdgedWidth, iEdgedWidth, 0);  
                 interpolate8x8_avg2(Reference+8*iEdgedWidth+8, ref1+8*iEdgedWidth+8, ref2+8*iEdgedWidth+8, iEdgedWidth, 0);  
                 break;  
340    
341          default: // x and y in qpel resolution - the "corners" (top left/right and          if (data->qpel_precision) { // x and y are in 1/4 precision
342                           // bottom left/right) during qpel refinement                  Reference = Interpolate16x16qpel(x, y, 0, data);
343                  GET_REFERENCE(halfpelMV.x, y - halfpelMV.y, ref2);                  t = d_mv_bits(x - data->predMV.x, y - data->predMV.y, data->iFcode);
344                  GET_REFERENCE(x - halfpelMV.x, halfpelMV.y, ref3);                  current = data->currentQMV;
345                  GET_REFERENCE(x - halfpelMV.x, y - halfpelMV.y, ref4);          } else {
346                    switch ( ((x&1)<<1) + (y&1) ) {
347                  interpolate8x8_avg4(Reference, ref1, ref2, ref3, ref4, iEdgedWidth, 0);                          case 0 : Reference = data->Ref + x/2 + (y/2)*(data->iEdgedWidth); break;
348                  interpolate8x8_avg4(Reference+8, ref1+8, ref2+8, ref3+8, ref4+8, iEdgedWidth, 0);                          case 1 : Reference = data->RefV + x/2 + ((y-1)/2)*(data->iEdgedWidth); break;
349                  interpolate8x8_avg4(Reference+8*iEdgedWidth, ref1+8*iEdgedWidth, ref2+8*iEdgedWidth, ref3+8*iEdgedWidth, ref4+8*iEdgedWidth, iEdgedWidth, 0);                          case 2 : Reference = data->RefH + (x-1)/2 + (y/2)*(data->iEdgedWidth); break;
350                  interpolate8x8_avg4(Reference+8*iEdgedWidth+8, ref1+8*iEdgedWidth+8, ref2+8*iEdgedWidth+8, ref3+8*iEdgedWidth+8, ref4+8*iEdgedWidth+8, iEdgedWidth, 0);                          default : Reference = data->RefHV + (x-1)/2 + ((y-1)/2)*(data->iEdgedWidth); break;
351                  break;                  }
352                    if (data->qpel) t = d_mv_bits(2*x - data->predMV.x, 2*y - data->predMV.y, data->iFcode);
353                    else if (!data->rrv) t = d_mv_bits(x - data->predMV.x, y - data->predMV.y, data->iFcode);
354                    current = data->currentMV;
355          }          }
356    
357          sad = sad16(data->Cur, Reference, data->iEdgedWidth, 256*4096);          sad = sad16(data->Cur, Reference, data->iEdgedWidth, 256*4096);
358          sad += (data->lambda16 * d_mv_bits(x - data->predMV.x, y - data->predMV.y, data->iFcode) * sad)/1000;          sad += (data->lambda16 * t * sad)/1000;
359    
360          if (sad < data->iMinSAD[0]) {          if (sad < *(data->iMinSAD)) {
361                  data->iMinSAD[0] = sad;                  *(data->iMinSAD) = sad;
362                  data->currentQMV[0].x = x; data->currentQMV[0].y = y;                  current->x = x; current->y = y;
363          /*      *dir = Direction;*/ }                  *dir = Direction; }
364  }  }
365    
366  static void  static void
# Line 376  Line 386 
386  CheckCandidateInt(const int xf, const int yf, const int Direction, int * const dir, const SearchData * const data)  CheckCandidateInt(const int xf, const int yf, const int Direction, int * const dir, const SearchData * const data)
387  {  {
388          int32_t sad;          int32_t sad;
389          const int xb = data->currentMV[1].x;          int xb, yb, t;
         const int yb = data->currentMV[1].y;  
390          const uint8_t *ReferenceF, *ReferenceB;          const uint8_t *ReferenceF, *ReferenceB;
391            VECTOR *current;
392    
393          if (( xf > data->max_dx) || ( xf < data->min_dx)          if (( xf > data->max_dx) || ( xf < data->min_dx)
394                  || ( yf > data->max_dy) || (yf < data->min_dy)) return;                  || ( yf > data->max_dy) || (yf < data->min_dy)) return;
395    
396          switch ( ((xf&1)<<1) + (yf&1) ) {          if (data->qpel_precision) {
397                  case 0 : ReferenceF = data->Ref + xf/2 + (yf/2)*(data->iEdgedWidth); break;                  ReferenceF = Interpolate16x16qpel(xf, yf, 0, data);
398                  case 1 : ReferenceF = data->RefV + xf/2 + ((yf-1)/2)*(data->iEdgedWidth); break;                  xb = data->currentQMV[1].x; yb = data->currentQMV[1].y;
399                  case 2 : ReferenceF = data->RefH + (xf-1)/2 + (yf/2)*(data->iEdgedWidth); break;                  current = data->currentQMV;
400                  default : ReferenceF = data->RefHV + (xf-1)/2 + ((yf-1)/2)*(data->iEdgedWidth); break;                  ReferenceB = Interpolate16x16qpel(xb, yb, 1, data);
401          }                  t = d_mv_bits(xf - data->predMV.x, yf - data->predMV.y, data->iFcode)
402                                     + d_mv_bits(xb - data->bpredMV.x, yb - data->bpredMV.y, data->iFcode);
403          switch ( ((xb&1)<<1) + (yb&1) ) {          } else {
404                  case 0 : ReferenceB = data->bRef + xb/2 + (yb/2)*(data->iEdgedWidth); break;                  ReferenceF = Interpolate16x16qpel(2*xf, 2*yf, 0, data);
405                  case 1 : ReferenceB = data->bRefV + xb/2 + ((yb-1)/2)*(data->iEdgedWidth); break;                  xb = data->currentMV[1].x; yb = data->currentMV[1].y;
406                  case 2 : ReferenceB = data->bRefH + (xb-1)/2 + (yb/2)*(data->iEdgedWidth); break;                  ReferenceB = Interpolate16x16qpel(2*xb, 2*yb, 1, data);
407                  default : ReferenceB = data->bRefHV + (xb-1)/2 + ((yb-1)/2)*(data->iEdgedWidth); break;                  current = data->currentMV;
         }  
   
         sad = sad16bi(data->Cur, ReferenceF, ReferenceB, data->iEdgedWidth);  
   
408          if (data->qpel)          if (data->qpel)
409                  sad += (data->lambda16 *                          t = d_mv_bits(2*xf - data->predMV.x, 2*yf - data->predMV.y, data->iFcode)
410                          ( d_mv_bits(2*xf - data->predMV.x, 2*yf - data->predMV.y, data->iFcode) +                                           + d_mv_bits(2*xb - data->bpredMV.x, 2*yb - data->bpredMV.y, data->iFcode);
                           d_mv_bits(2*xb - data->bpredMV.x, 2*yb - data->bpredMV.y, data->iFcode)) * sad)/1000;  
411          else          else
412                  sad += (data->lambda16 *                          t = d_mv_bits(xf - data->predMV.x, yf - data->predMV.y, data->iFcode)
413                          ( d_mv_bits(xf - data->predMV.x, yf - data->predMV.y, data->iFcode) +                                           + d_mv_bits(xb - data->bpredMV.x, yb - data->bpredMV.y, data->iFcode);
                           d_mv_bits(xb - data->bpredMV.x, yb - data->bpredMV.y, data->iFcode)) * sad)/1000;  
   
         if (sad < *(data->iMinSAD)) {  
                 *(data->iMinSAD) = sad;  
                 data->currentMV->x = xf; data->currentMV->y = yf;  
                 *dir = Direction; }  
 }  
   
   
 static void  
 CheckCandidateInt_qpel(const int xf, const int yf, const int Direction, int * const dir, const SearchData * const data)  
 {  
 // CheckCandidateInt variant which expects x and y in quarter pixel resolution  
   
         int32_t sad;  
         const int xb = data->currentQMV[1].x;  
         const int yb = data->currentQMV[1].y;  
         uint8_t * ReferenceF = (uint8_t *)data->RefQ;  
         uint8_t * ReferenceB = (uint8_t *)data->RefQ + 16;  
         const uint8_t *ref1, *ref2, *ref3, *ref4;  
         VECTOR halfpelMV;  
         const int32_t iEdgedWidth = data->iEdgedWidth;  
   
         if (( xf > data->max_dx) || ( xf < data->min_dx)  
                 || ( yf > data->max_dy) || (yf < data->min_dy)) return;  
   
         halfpelMV.x = xf/2; //forward first  
         halfpelMV.y = yf/2;  
         GET_REFERENCE(halfpelMV.x, halfpelMV.y, ref1); // this reference is used in all cases  
         switch( ((xf&1)<<1) + (yf&1) )  
         {  
         case 0: // pure halfpel position - shouldn't happen during a refinement step  
                 GET_REFERENCE(halfpelMV.x, halfpelMV.y, ReferenceF);  
                 break;  
   
         case 1: // x halfpel, y qpel - top or bottom during qpel refinement  
                 GET_REFERENCE(halfpelMV.x, yf - halfpelMV.y, ref2);  
                 interpolate8x8_avg2(ReferenceF, ref1, ref2, iEdgedWidth, 0);  
                 interpolate8x8_avg2(ReferenceF+8, ref1+8, ref2+8, iEdgedWidth, 0);  
                 interpolate8x8_avg2(ReferenceF+8*iEdgedWidth, ref1+8*iEdgedWidth, ref2+8*iEdgedWidth, iEdgedWidth, 0);  
                 interpolate8x8_avg2(ReferenceF+8*iEdgedWidth+8, ref1+8*iEdgedWidth+8, ref2+8*iEdgedWidth+8, iEdgedWidth, 0);  
                 break;  
   
         case 2: // x qpel, y halfpel - left or right during qpel refinement  
                 GET_REFERENCE(xf - halfpelMV.x, halfpelMV.y, ref2);  
                 interpolate8x8_avg2(ReferenceF, ref1, ref2, iEdgedWidth, 0);  
                 interpolate8x8_avg2(ReferenceF+8, ref1+8, ref2+8, iEdgedWidth, 0);  
                 interpolate8x8_avg2(ReferenceF+8*iEdgedWidth, ref1+8*iEdgedWidth, ref2+8*iEdgedWidth, iEdgedWidth, 0);  
                 interpolate8x8_avg2(ReferenceF+8*iEdgedWidth+8, ref1+8*iEdgedWidth+8, ref2+8*iEdgedWidth+8, iEdgedWidth, 0);  
                 break;  
   
         default: // x and y in qpel resolution - the "corners" (top left/right and  
                          // bottom left/right) during qpel refinement  
                 GET_REFERENCE(halfpelMV.x, yf - halfpelMV.y, ref2);  
                 GET_REFERENCE(xf - halfpelMV.x, halfpelMV.y, ref3);  
                 GET_REFERENCE(xf - halfpelMV.x, yf - halfpelMV.y, ref4);  
   
                 interpolate8x8_avg4(ReferenceF, ref1, ref2, ref3, ref4, iEdgedWidth, 0);  
                 interpolate8x8_avg4(ReferenceF+8, ref1+8, ref2+8, ref3+8, ref4+8, iEdgedWidth, 0);  
                 interpolate8x8_avg4(ReferenceF+8*iEdgedWidth, ref1+8*iEdgedWidth, ref2+8*iEdgedWidth, ref3+8*iEdgedWidth, ref4+8*iEdgedWidth, iEdgedWidth, 0);  
                 interpolate8x8_avg4(ReferenceF+8*iEdgedWidth+8, ref1+8*iEdgedWidth+8, ref2+8*iEdgedWidth+8, ref3+8*iEdgedWidth+8, ref4+8*iEdgedWidth+8, iEdgedWidth, 0);  
                 break;  
         }  
   
         halfpelMV.x = xb/2; //backward  
         halfpelMV.y = yb/2;  
         GET_REFERENCE2(halfpelMV.x, halfpelMV.y, ref1); // this reference is used in all cases  
         switch( ((xb&1)<<1) + (yb&1) )  
         {  
         case 0: // pure halfpel position - shouldn't happen during a refinement step  
                 GET_REFERENCE2(halfpelMV.x, halfpelMV.y, ReferenceB);  
                 break;  
   
         case 1: // x halfpel, y qpel - top or bottom during qpel refinement  
                 GET_REFERENCE2(halfpelMV.x, yb - halfpelMV.y, ref2);  
                 interpolate8x8_avg2(ReferenceB, ref1, ref2, iEdgedWidth, 0);  
                 interpolate8x8_avg2(ReferenceB+8, ref1+8, ref2+8, iEdgedWidth, 0);  
                 interpolate8x8_avg2(ReferenceB+8*iEdgedWidth, ref1+8*iEdgedWidth, ref2+8*iEdgedWidth, iEdgedWidth, 0);  
                 interpolate8x8_avg2(ReferenceB+8*iEdgedWidth+8, ref1+8*iEdgedWidth+8, ref2+8*iEdgedWidth+8, iEdgedWidth, 0);  
                 break;  
   
         case 2: // x qpel, y halfpel - left or right during qpel refinement  
                 GET_REFERENCE2(xb - halfpelMV.x, halfpelMV.y, ref2);  
                 interpolate8x8_avg2(ReferenceB, ref1, ref2, iEdgedWidth, 0);  
                 interpolate8x8_avg2(ReferenceB+8, ref1+8, ref2+8, iEdgedWidth, 0);  
                 interpolate8x8_avg2(ReferenceB+8*iEdgedWidth, ref1+8*iEdgedWidth, ref2+8*iEdgedWidth, iEdgedWidth, 0);  
                 interpolate8x8_avg2(ReferenceB+8*iEdgedWidth+8, ref1+8*iEdgedWidth+8, ref2+8*iEdgedWidth+8, iEdgedWidth, 0);  
                 break;  
   
         default: // x and y in qpel resolution - the "corners" (top left/right and  
                          // bottom left/right) during qpel refinement  
                 GET_REFERENCE2(halfpelMV.x, yb - halfpelMV.y, ref2);  
                 GET_REFERENCE2(xb - halfpelMV.x, halfpelMV.y, ref3);  
                 GET_REFERENCE2(xb - halfpelMV.x, yb - halfpelMV.y, ref4);  
   
                 interpolate8x8_avg4(ReferenceB, ref1, ref2, ref3, ref4, iEdgedWidth, 0);  
                 interpolate8x8_avg4(ReferenceB+8, ref1+8, ref2+8, ref3+8, ref4+8, iEdgedWidth, 0);  
                 interpolate8x8_avg4(ReferenceB+8*iEdgedWidth, ref1+8*iEdgedWidth, ref2+8*iEdgedWidth, ref3+8*iEdgedWidth, ref4+8*iEdgedWidth, iEdgedWidth, 0);  
                 interpolate8x8_avg4(ReferenceB+8*iEdgedWidth+8, ref1+8*iEdgedWidth+8, ref2+8*iEdgedWidth+8, ref3+8*iEdgedWidth+8, ref4+8*iEdgedWidth+8, iEdgedWidth, 0);  
                 break;  
414          }          }
415    
416          sad = sad16bi(data->Cur, ReferenceF, ReferenceB, data->iEdgedWidth);          sad = sad16bi(data->Cur, ReferenceF, ReferenceB, data->iEdgedWidth);
417            sad += (data->lambda16 * t * sad)/1000;
         sad += (data->lambda16 *  
                         ( d_mv_bits(xf - data->predMV.x, yf - data->predMV.y, data->iFcode) +  
                           d_mv_bits(xb - data->bpredMV.x, yb - data->bpredMV.y, data->iFcode)) * sad)/1000;  
418    
419          if (sad < *(data->iMinSAD)) {          if (sad < *(data->iMinSAD)) {
420                  *(data->iMinSAD) = sad;                  *(data->iMinSAD) = sad;
421                  data->currentQMV->x = xf; data->currentQMV->y = yf;                  current->x = xf; current->y = yf;
422                  *dir = Direction; }                  *dir = Direction; }
423  }  }
424    
# Line 547  Line 449 
449                          || ( b_mvs.x > data->max_dx ) || ( b_mvs.x < data->min_dx )                          || ( b_mvs.x > data->max_dx ) || ( b_mvs.x < data->min_dx )
450                          || ( 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;
451    
452                  switch ( ((mvs.x&1)<<1) + (mvs.y&1) ) {                  if (!data->qpel) {
453                          case 0 : ReferenceF = data->Ref + mvs.x/2 + (mvs.y/2)*(data->iEdgedWidth); break;                          mvs.x *= 2; mvs.y *= 2;
454                          case 1 : ReferenceF = data->RefV + mvs.x/2 + ((mvs.y-1)/2)*(data->iEdgedWidth); break;                          b_mvs.x *= 2; b_mvs.y *= 2; //we move to qpel precision anyway
                         case 2 : ReferenceF = data->RefH + (mvs.x-1)/2 + (mvs.y/2)*(data->iEdgedWidth); break;  
                         default : ReferenceF = data->RefHV + (mvs.x-1)/2 + ((mvs.y-1)/2)*(data->iEdgedWidth); break;  
                 }  
   
                 switch ( ((b_mvs.x&1)<<1) + (b_mvs.y&1) ) {  
                         case 0 : ReferenceB = data->bRef + b_mvs.x/2 + (b_mvs.y/2)*(data->iEdgedWidth); break;  
                         case 1 : ReferenceB = data->bRefV + b_mvs.x/2 + ((b_mvs.y-1)/2)*(data->iEdgedWidth); break;  
                         case 2 : ReferenceB = data->bRefH + (b_mvs.x-1)/2 + (b_mvs.y/2)*(data->iEdgedWidth); break;  
                         default : ReferenceB = data->bRefHV + (b_mvs.x-1)/2 + ((b_mvs.y-1)/2)*(data->iEdgedWidth); break;  
                 }  
   
                 sad += sad8bi(data->Cur + 8*(k&1) + 8*(k>>1)*(data->iEdgedWidth),  
                                                 ReferenceF + 8*(k&1) + 8*(k>>1)*(data->iEdgedWidth),  
                                                 ReferenceB + 8*(k&1) + 8*(k>>1)*(data->iEdgedWidth),  
                                                 data->iEdgedWidth);  
                 if (sad > *(data->iMinSAD)) return;  
         }  
   
         sad += (data->lambda16 * d_mv_bits(x, y, 1) * sad)/1000;  
   
         if (sad < *(data->iMinSAD)) {  
                 *(data->iMinSAD) = sad;  
                 data->currentMV->x = x; data->currentMV->y = y;  
                 *dir = Direction; }  
 }  
   
   
 static void  
 CheckCandidateDirect_qpel(const int x, const int y, const int Direction, int * const dir, const SearchData * const data)  
 {  
         int32_t sad = 0;  
         int k;  
         VECTOR mvs, b_mvs, halfpelMV;  
         const uint8_t *ref1, *ref2, *ref3, *ref4;  
         uint8_t *ReferenceF, *ReferenceB;  
         const uint32_t iEdgedWidth = data->iEdgedWidth;  
   
         if (( x > 31) || ( x < -32) || ( y > 31) || (y < -32)) return;  
   
         for (k = 0; k < 4; k++) {  
                 ReferenceF = (uint8_t *)data->RefQ;  
                 ReferenceB = (uint8_t *)data->RefQ + 64;  
   
                 mvs.x = data->directmvF[k].x + x;  
                 b_mvs.x = ((x == 0) ?  
                         data->directmvB[k].x  
                         : mvs.x - data->referencemv[k].x);  
   
                 mvs.y = data->directmvF[k].y + y;  
                 b_mvs.y = ((y == 0) ?  
                         data->directmvB[k].y  
                         : mvs.y - data->referencemv[k].y);  
   
                 if (( mvs.x > data->max_dx ) || ( mvs.x < data->min_dx )  
                         || ( mvs.y > data->max_dy ) || ( mvs.y < data->min_dy )  
                         || ( b_mvs.x > data->max_dx ) || ( b_mvs.x < data->min_dx )  
                         || ( b_mvs.y > data->max_dy ) || ( b_mvs.y < data->min_dy )) return;  
   
                 halfpelMV.x = mvs.x/2; //forward first  
                 halfpelMV.y = mvs.y/2;  
                 GET_REFERENCE(halfpelMV.x, halfpelMV.y, ref1); // this reference is used in all cases  
                 switch( ((mvs.x&1)<<1) + (mvs.y&1) ) {  
                 case 0: // pure halfpel position  
                         GET_REFERENCE(halfpelMV.x + 16*(k&1), halfpelMV.y + 16*(k>>1), ReferenceF);  
                         break;  
   
                 case 1: // x halfpel, y qpel - top or bottom during qpel refinement  
                         GET_REFERENCE(halfpelMV.x, mvs.y - halfpelMV.y, ref2);  
                         interpolate8x8_avg2(ReferenceF, ref1+8*(k&1) + 8*(k>>1)*(data->iEdgedWidth),  
                                                         ref2+ 8*(k&1) + 8*(k>>1)*(data->iEdgedWidth), iEdgedWidth, 0);  
                         break;  
   
                 case 2: // x qpel, y halfpel - left or right during qpel refinement  
                         GET_REFERENCE(mvs.x - halfpelMV.x, halfpelMV.y, ref2);  
                         interpolate8x8_avg2(ReferenceF, ref1 + 8*(k&1) + 8*(k>>1)*(data->iEdgedWidth),  
                                                         ref2 + 8*(k&1) + 8*(k>>1)*(data->iEdgedWidth), iEdgedWidth, 0);  
                         break;  
   
                 default: // x and y in qpel resolution - the "corners" (top left/right and  
                                  // bottom left/right) during qpel refinement  
                         GET_REFERENCE(halfpelMV.x, mvs.y - halfpelMV.y, ref2);  
                         GET_REFERENCE(mvs.x - halfpelMV.x, halfpelMV.y, ref3);  
                         GET_REFERENCE(mvs.x - halfpelMV.x, mvs.y - halfpelMV.y, ref4);  
                         interpolate8x8_avg4(ReferenceF, ref1 + 8*(k&1) + 8*(k>>1)*(data->iEdgedWidth),  
                                                                 ref2 + 8*(k&1) + 8*(k>>1)*(data->iEdgedWidth),  
                                                                 ref3 + 8*(k&1) + 8*(k>>1)*(data->iEdgedWidth),  
                                                                 ref4 + 8*(k&1) + 8*(k>>1)*(data->iEdgedWidth), iEdgedWidth, 0);  
                         break;  
                 }  
   
                 halfpelMV.x = b_mvs.x/2;  
                 halfpelMV.y = b_mvs.y/2;  
                 GET_REFERENCE2(halfpelMV.x, halfpelMV.y, ref1); // this reference is used in most cases  
                 switch( ((b_mvs.x&1)<<1) + (b_mvs.y&1) ) {  
                 case 0: // pure halfpel position  
                         GET_REFERENCE2(halfpelMV.x + 16*(k&1), halfpelMV.y + 16*(k>>1), ReferenceB);  
                         break;  
   
                 case 1: // x halfpel, y qpel - top or bottom during qpel refinement  
                         GET_REFERENCE2(halfpelMV.x, b_mvs.y - halfpelMV.y, ref2);  
                         interpolate8x8_avg2(ReferenceB, ref1+8*(k&1) + 8*(k>>1)*(data->iEdgedWidth),  
                                                                 ref2+ 8*(k&1) + 8*(k>>1)*(data->iEdgedWidth), iEdgedWidth, 0);  
                         break;  
   
                 case 2: // x qpel, y halfpel - left or right during qpel refinement  
                         GET_REFERENCE2(b_mvs.x - halfpelMV.x, halfpelMV.y, ref2);  
                         interpolate8x8_avg2(ReferenceB, ref1 + 8*(k&1) + 8*(k>>1)*(data->iEdgedWidth),  
                                                                 ref2 + 8*(k&1) + 8*(k>>1)*(data->iEdgedWidth), iEdgedWidth, 0);  
                         break;  
   
                 default: // x and y in qpel resolution - the "corners" (top left/right and  
                                  // bottom left/right) during qpel refinement  
                         GET_REFERENCE2(halfpelMV.x, b_mvs.y - halfpelMV.y, ref2);  
                         GET_REFERENCE2(b_mvs.x - halfpelMV.x, halfpelMV.y, ref3);  
                         GET_REFERENCE2(b_mvs.x - halfpelMV.x, b_mvs.y - halfpelMV.y, ref4);  
                         interpolate8x8_avg4(ReferenceB, ref1 + 8*(k&1) + 8*(k>>1)*(data->iEdgedWidth),  
                                                                 ref2 + 8*(k&1) + 8*(k>>1)*(data->iEdgedWidth),  
                                                                 ref3 + 8*(k&1) + 8*(k>>1)*(data->iEdgedWidth),  
                                                                 ref4 + 8*(k&1) + 8*(k>>1)*(data->iEdgedWidth), iEdgedWidth, 0);  
                         break;  
455                  }                  }
456                    ReferenceF = Interpolate8x8qpel(mvs.x, mvs.y, k, 0, data);
457                    ReferenceB = Interpolate8x8qpel(b_mvs.x, b_mvs.y, k, 1, data);
458    
459                  sad += sad8bi(data->Cur + 8*(k&1) + 8*(k>>1)*(data->iEdgedWidth),                  sad += sad8bi(data->Cur + 8*(k&1) + 8*(k>>1)*(data->iEdgedWidth),
460                                                  ReferenceF,                                                  ReferenceF, ReferenceB,
                                                 ReferenceB,  
461                                                  data->iEdgedWidth);                                                  data->iEdgedWidth);
462                  if (sad > *(data->iMinSAD)) return;                  if (sad > *(data->iMinSAD)) return;
463          }          }
# Line 688  Line 471 
471  }  }
472    
473  static void  static void
 CheckCandidateDirectno4v_qpel(const int x, const int y, const int Direction, int * const dir, const SearchData * const data)  
 {  
         int32_t sad = 0;  
         VECTOR mvs, b_mvs, halfpelMV;  
         const uint8_t *ref1, *ref2, *ref3, *ref4;  
         const uint32_t iEdgedWidth = data->iEdgedWidth;  
         uint8_t * ReferenceF = (uint8_t *)data->RefQ;  
         uint8_t * ReferenceB = (uint8_t *)data->RefQ + 64;  
   
         if (( x > 31) || ( x < -32) || ( y > 31) || (y < -32)) return;  
   
         mvs.x = data->directmvF[0].x + x;  
         b_mvs.x = ((x == 0) ?  
                         data->directmvB[0].x  
                         : mvs.x - data->referencemv[0].x);  
   
         mvs.y = data->directmvF[0].y + y;  
         b_mvs.y = ((y == 0) ?  
                         data->directmvB[0].y  
                         : mvs.y - data->referencemv[0].y);  
   
         if (( mvs.x > data->max_dx ) || ( mvs.x < data->min_dx )  
                         || ( mvs.y > data->max_dy ) || ( mvs.y < data->min_dy )  
                         || ( b_mvs.x > data->max_dx ) || ( b_mvs.x < data->min_dx )  
                         || ( b_mvs.y > data->max_dy ) || ( b_mvs.y < data->min_dy )) return;  
   
         halfpelMV.x = mvs.x/2; //forward first  
         halfpelMV.y = mvs.y/2;  
         GET_REFERENCE(halfpelMV.x, halfpelMV.y, ref1); // this reference is used in all cases  
         switch( ((mvs.x&1)<<1) + (mvs.y&1) ) {  
         case 0: // pure halfpel position  
                 GET_REFERENCE(halfpelMV.x, halfpelMV.y, ReferenceF);  
                 break;  
   
         case 1: // x halfpel, y qpel - top or bottom during qpel refinement  
                 GET_REFERENCE(halfpelMV.x, mvs.y - halfpelMV.y, ref2);  
                 interpolate8x8_avg2(ReferenceF, ref1, ref2, iEdgedWidth, 0);  
                 interpolate8x8_avg2(ReferenceF+8, ref1+8, ref2+8, iEdgedWidth, 0);  
                 interpolate8x8_avg2(ReferenceF+8*iEdgedWidth, ref1+8*iEdgedWidth, ref2+8*iEdgedWidth, iEdgedWidth, 0);  
                 interpolate8x8_avg2(ReferenceF+8*iEdgedWidth+8, ref1+8*iEdgedWidth+8, ref2+8*iEdgedWidth+8, iEdgedWidth, 0);  
                 break;  
   
         case 2: // x qpel, y halfpel - left or right during qpel refinement  
                 GET_REFERENCE(mvs.x - halfpelMV.x, halfpelMV.y, ref2);  
                 interpolate8x8_avg2(ReferenceF, ref1, ref2, iEdgedWidth, 0);  
                 interpolate8x8_avg2(ReferenceF+8, ref1+8, ref2+8, iEdgedWidth, 0);  
                 interpolate8x8_avg2(ReferenceF+8*iEdgedWidth, ref1+8*iEdgedWidth, ref2+8*iEdgedWidth, iEdgedWidth, 0);  
                 interpolate8x8_avg2(ReferenceF+8*iEdgedWidth+8, ref1+8*iEdgedWidth+8, ref2+8*iEdgedWidth+8, iEdgedWidth, 0);  
                 break;  
   
         default: // x and y in qpel resolution  
                 GET_REFERENCE(halfpelMV.x, mvs.y - halfpelMV.y, ref2);  
                 GET_REFERENCE(mvs.x - halfpelMV.x, halfpelMV.y, ref3);  
                 GET_REFERENCE(mvs.x - halfpelMV.x, mvs.y - halfpelMV.y, ref4);  
   
                 interpolate8x8_avg4(ReferenceF, ref1, ref2, ref3, ref4, iEdgedWidth, 0);  
                 interpolate8x8_avg4(ReferenceF+8, ref1+8, ref2+8, ref3+8, ref4+8, iEdgedWidth, 0);  
                 interpolate8x8_avg4(ReferenceF+8*iEdgedWidth, ref1+8*iEdgedWidth, ref2+8*iEdgedWidth, ref3+8*iEdgedWidth, ref4+8*iEdgedWidth, iEdgedWidth, 0);  
                 interpolate8x8_avg4(ReferenceF+8*iEdgedWidth+8, ref1+8*iEdgedWidth+8, ref2+8*iEdgedWidth+8, ref3+8*iEdgedWidth+8, ref4+8*iEdgedWidth+8, iEdgedWidth, 0);  
                 break;  
         }  
   
         halfpelMV.x = b_mvs.x/2; //backward  
         halfpelMV.y = b_mvs.y/2;  
         GET_REFERENCE2(halfpelMV.x, halfpelMV.y, ref1);  
         switch( ((b_mvs.x&1)<<1) + (b_mvs.y&1) )  
         {  
         case 0: // pure halfpel position  
                 GET_REFERENCE2(halfpelMV.x, halfpelMV.y, ReferenceB);  
                 break;  
   
         case 1: // x halfpel, y qpel - top or bottom during qpel refinement  
                 GET_REFERENCE2(halfpelMV.x, b_mvs.y - halfpelMV.y, ref2);  
                 interpolate8x8_avg2(ReferenceB, ref1, ref2, iEdgedWidth, 0);  
                 interpolate8x8_avg2(ReferenceB+8, ref1+8, ref2+8, iEdgedWidth, 0);  
                 interpolate8x8_avg2(ReferenceB+8*iEdgedWidth, ref1+8*iEdgedWidth, ref2+8*iEdgedWidth, iEdgedWidth, 0);  
                 interpolate8x8_avg2(ReferenceB+8*iEdgedWidth+8, ref1+8*iEdgedWidth+8, ref2+8*iEdgedWidth+8, iEdgedWidth, 0);  
                 break;  
   
         case 2: // x qpel, y halfpel - left or right during qpel refinement  
                 GET_REFERENCE2(b_mvs.x - halfpelMV.x, halfpelMV.y, ref2);  
                 interpolate8x8_avg2(ReferenceB, ref1, ref2, iEdgedWidth, 0);  
                 interpolate8x8_avg2(ReferenceB+8, ref1+8, ref2+8, iEdgedWidth, 0);  
                 interpolate8x8_avg2(ReferenceB+8*iEdgedWidth, ref1+8*iEdgedWidth, ref2+8*iEdgedWidth, iEdgedWidth, 0);  
                 interpolate8x8_avg2(ReferenceB+8*iEdgedWidth+8, ref1+8*iEdgedWidth+8, ref2+8*iEdgedWidth+8, iEdgedWidth, 0);  
                 break;  
   
         default: // x and y in qpel resolution - the "corners" (top left/right and  
                          // bottom left/right) during qpel refinement  
                 GET_REFERENCE2(halfpelMV.x, b_mvs.y - halfpelMV.y, ref2);  
                 GET_REFERENCE2(b_mvs.x - halfpelMV.x, halfpelMV.y, ref3);  
                 GET_REFERENCE2(b_mvs.x - halfpelMV.x, b_mvs.y - halfpelMV.y, ref4);  
   
                 interpolate8x8_avg4(ReferenceB, ref1, ref2, ref3, ref4, iEdgedWidth, 0);  
                 interpolate8x8_avg4(ReferenceB+8, ref1+8, ref2+8, ref3+8, ref4+8, iEdgedWidth, 0);  
                 interpolate8x8_avg4(ReferenceB+8*iEdgedWidth, ref1+8*iEdgedWidth, ref2+8*iEdgedWidth, ref3+8*iEdgedWidth, ref4+8*iEdgedWidth, iEdgedWidth, 0);  
                 interpolate8x8_avg4(ReferenceB+8*iEdgedWidth+8, ref1+8*iEdgedWidth+8, ref2+8*iEdgedWidth+8, ref3+8*iEdgedWidth+8, ref4+8*iEdgedWidth+8, iEdgedWidth, 0);  
                 break;  
         }  
   
         sad = sad16bi(data->Cur, ReferenceF, ReferenceB, data->iEdgedWidth);  
         sad += (data->lambda16 * d_mv_bits(x, y, 1) * sad)/1000;  
   
         if (sad < *(data->iMinSAD)) {  
                 *(data->iMinSAD) = sad;  
                 data->currentMV->x = x; data->currentMV->y = y;  
                 *dir = Direction; }  
 }  
   
   
 static void  
474  CheckCandidateDirectno4v(const int x, const int y, const int Direction, int * const dir, const SearchData * const data)  CheckCandidateDirectno4v(const int x, const int y, const int Direction, int * const dir, const SearchData * const data)
475  {  {
476          int32_t sad;          int32_t sad;
# Line 823  Line 495 
495                  || ( b_mvs.x > data->max_dx ) || ( b_mvs.x < data->min_dx )                  || ( b_mvs.x > data->max_dx ) || ( b_mvs.x < data->min_dx )
496                  || ( 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;
497    
498          switch ( ((mvs.x&1)<<1) + (mvs.y&1) ) {          if (!data->qpel) {
499                  case 0 : ReferenceF = data->Ref + mvs.x/2 + (mvs.y/2)*(data->iEdgedWidth); break;                          mvs.x *= 2; mvs.y *= 2;
500                  case 1 : ReferenceF = data->RefV + mvs.x/2 + ((mvs.y-1)/2)*(data->iEdgedWidth); break;                          b_mvs.x *= 2; b_mvs.y *= 2; //we move to qpel precision anyway
                 case 2 : ReferenceF = data->RefH + (mvs.x-1)/2 + (mvs.y/2)*(data->iEdgedWidth); break;  
                 default : ReferenceF = data->RefHV + (mvs.x-1)/2 + ((mvs.y-1)/2)*(data->iEdgedWidth); break;  
         }  
   
         switch ( ((b_mvs.x&1)<<1) + (b_mvs.y&1) ) {  
                 case 0 : ReferenceB = data->bRef + b_mvs.x/2 + (b_mvs.y/2)*(data->iEdgedWidth); break;  
                 case 1 : ReferenceB = data->bRefV + b_mvs.x/2 + ((b_mvs.y-1)/2)*(data->iEdgedWidth); break;  
                 case 2 : ReferenceB = data->bRefH + (b_mvs.x-1)/2 + (b_mvs.y/2)*(data->iEdgedWidth); break;  
                 default : ReferenceB = data->bRefHV + (b_mvs.x-1)/2 + ((b_mvs.y-1)/2)*(data->iEdgedWidth); break;  
501          }          }
502            ReferenceF = Interpolate16x16qpel(mvs.x, mvs.y, 0, data);
503            ReferenceB = Interpolate16x16qpel(b_mvs.x, b_mvs.y, 1, data);
504    
505          sad = sad16bi(data->Cur, ReferenceF, ReferenceB, data->iEdgedWidth);          sad = sad16bi(data->Cur, ReferenceF, ReferenceB, data->iEdgedWidth);
506          sad += (data->lambda16 * d_mv_bits(x, y, 1) * sad)/1000;          sad += (data->lambda16 * d_mv_bits(x, y, 1) * sad)/1000;
# Line 855  Line 520 
520          if (( x > data->max_dx) || ( x < data->min_dx)          if (( x > data->max_dx) || ( x < data->min_dx)
521                  || ( y > data->max_dy) || (y < data->min_dy)) return;                  || ( y > data->max_dy) || (y < data->min_dy)) return;
522    
523          switch ( ((x&1)<<1) + (y&1) )          if (data->qpel) Reference = Interpolate16x16qpel(x, y, 0, data);
524          {          else Reference = Interpolate16x16qpel(2*x, 2*y, 0, data);
                 case 0 : Reference = data->Ref + x/2 + (y/2)*(data->iEdgedWidth); break;  
                 case 1 : Reference = data->RefV + x/2 + ((y-1)/2)*(data->iEdgedWidth); break;  
                 case 2 : Reference = data->RefH + (x-1)/2 + (y/2)*(data->iEdgedWidth); break;  
                 default : Reference = data->RefHV + (x-1)/2 + ((y-1)/2)*(data->iEdgedWidth); break;  
         }  
525    
526          sad = sad8(data->Cur, Reference, data->iEdgedWidth);          sad = sad8(data->Cur, Reference, data->iEdgedWidth);
527          if (data->qpel) t = d_mv_bits(2 * x - data->predQMV.x, 2 * y - data->predQMV.y, data->iFcode);          if (data->qpel) t = d_mv_bits(2 * x - data->predMV.x, 2 * y - data->predMV.y, data->iFcode);
528          else t = d_mv_bits(x - data->predMV.x, y - data->predMV.y, data->iFcode);          else t = d_mv_bits(x - data->predMV.x, y - data->predMV.y, data->iFcode);
529    
530          sad += (data->lambda8 * t * (sad+NEIGH_8X8_BIAS))/100;          sad += (data->lambda8 * t * (sad+NEIGH_8X8_BIAS))/100;
# Line 875  Line 535 
535                  *dir = Direction; }                  *dir = Direction; }
536  }  }
537    
 static void  
 CheckCandidate8_qpel(const int x, const int y, const int Direction, int * const dir, const SearchData * const data)  
 // CheckCandidate8 variant which expects x and y in quarter pixel resolution  
 // Important: This is no general usable routine! x and y must be +/-1 (qpel resolution!)  
 // around currentMV!  
   
 {  
         int32_t sad;  
         uint8_t *Reference = (uint8_t *) data->RefQ;  
         const uint8_t *ref1, *ref2, *ref3, *ref4;  
         VECTOR halfpelMV = *(data->currentMV);  
   
         int32_t iEdgedWidth = data->iEdgedWidth;  
         uint32_t rounding = data->rounding;  
   
         if (( x > data->max_dx) || ( x < data->min_dx)  
                 || ( y > data->max_dy) || (y < data->min_dy)) return;  
   
         GET_REFERENCE(halfpelMV.x, halfpelMV.y, ref1);  
         switch( ((x&1)<<1) + (y&1) )  
         {  
         case 0: // pure halfpel position - shouldn't happen during a refinement step  
                 GET_REFERENCE(halfpelMV.x, halfpelMV.y, Reference);  
                 break;  
   
         case 1: // x halfpel, y qpel - top or bottom during qpel refinement  
                 GET_REFERENCE(halfpelMV.x, y - halfpelMV.y, ref2);  
   
                 interpolate8x8_avg2(Reference, ref1, ref2, iEdgedWidth, rounding);  
                 break;  
   
         case 2: // x qpel, y halfpel - left or right during qpel refinement  
                 GET_REFERENCE(x - halfpelMV.x, halfpelMV.y, ref2);  
   
                 interpolate8x8_avg2(Reference, ref1, ref2, iEdgedWidth, rounding);  
                 break;  
   
         default: // x and y in qpel resolution - the "corners" (top left/right and  
                          // bottom left/right) during qpel refinement  
                 GET_REFERENCE(halfpelMV.x, y - halfpelMV.y, ref2);  
                 GET_REFERENCE(x - halfpelMV.x, halfpelMV.y, ref3);  
                 GET_REFERENCE(x - halfpelMV.x, y - halfpelMV.y, ref4);  
   
                 interpolate8x8_avg4(Reference, ref1, ref2, ref3, ref4, iEdgedWidth, rounding);  
                 break;  
         }  
   
         sad = sad8(data->Cur, Reference, data->iEdgedWidth);  
         sad += (data->lambda8 * d_mv_bits(x - data->predQMV.x, y - data->predQMV.y, data->iFcode) * (sad+NEIGH_8X8_BIAS))/100;  
   
         if (sad < *(data->iMinSAD)) {  
                 *(data->iMinSAD) = sad;  
                 data->currentQMV->x = x; data->currentQMV->y = y;  
                 *dir = Direction; }  
 }  
   
538  /* CHECK_CANDIATE FUNCTIONS END */  /* CHECK_CANDIATE FUNCTIONS END */
539    
540  /* MAINSEARCH FUNCTIONS START */  /* MAINSEARCH FUNCTIONS START */
# Line 1080  Line 684 
684  /* HALFPELREFINE COULD BE A MAINSEARCH FUNCTION, BUT THERE IS NO NEED FOR IT */  /* HALFPELREFINE COULD BE A MAINSEARCH FUNCTION, BUT THERE IS NO NEED FOR IT */
685    
686  static void  static void
687  HalfpelRefine(const SearchData * const data)  SubpelRefine(const SearchData * const data)
688  {  {
689  /* Do a half-pel refinement (or rather a "smallest possible amount" refinement) */  /* Do a half-pel or q-pel refinement */
690            VECTOR backupMV;
         VECTOR backupMV = *(data->currentMV);  
691          int iDirection; //not needed          int iDirection; //not needed
692    
693          CHECK_CANDIDATE(backupMV.x - 1, backupMV.y - 1, 0);          if (data->qpel_precision)
694          CHECK_CANDIDATE(backupMV.x + 1, backupMV.y - 1, 0);                  backupMV = *(data->currentQMV);
695          CHECK_CANDIDATE(backupMV.x - 1, backupMV.y + 1, 0);          else backupMV = *(data->currentMV);
         CHECK_CANDIDATE(backupMV.x + 1, backupMV.y + 1, 0);  
   
         CHECK_CANDIDATE(backupMV.x - 1, backupMV.y, 0);  
         CHECK_CANDIDATE(backupMV.x + 1, backupMV.y, 0);  
   
         CHECK_CANDIDATE(backupMV.x, backupMV.y + 1, 0);  
         CHECK_CANDIDATE(backupMV.x, backupMV.y - 1, 0);  
 }  
   
   
 static void  
 QuarterpelRefine(const SearchData * const data)  
 {  
 /* Perform quarter pixel refinement*/  
   
         VECTOR backupMV = *(data->currentQMV);  
         int iDirection; //not needed  
696    
697          CHECK_CANDIDATE(backupMV.x - 1, backupMV.y - 1, 0);          CHECK_CANDIDATE(backupMV.x - 1, backupMV.y - 1, 0);
698          CHECK_CANDIDATE(backupMV.x + 1, backupMV.y - 1, 0);          CHECK_CANDIDATE(backupMV.x + 1, backupMV.y - 1, 0);
# Line 1118  Line 704 
704    
705          CHECK_CANDIDATE(backupMV.x, backupMV.y + 1, 0);          CHECK_CANDIDATE(backupMV.x, backupMV.y + 1, 0);
706          CHECK_CANDIDATE(backupMV.x, backupMV.y - 1, 0);          CHECK_CANDIDATE(backupMV.x, backupMV.y - 1, 0);
   
707  }  }
708    
709  static __inline int  static __inline int
710  SkipDecisionP(const IMAGE * current, const IMAGE * reference,  SkipDecisionP(const IMAGE * current, const IMAGE * reference,
711                                                          const int x, const int y,                                                          const int x, const int y,
712                                                          const uint32_t iEdgedWidth, const uint32_t iQuant)                                                          const uint32_t iEdgedWidth, const uint32_t iQuant, int rrv)
713    
714  {  {
715  /*      keep repeating checks for all b-frames before this P frame,  /*      keep repeating checks for all b-frames before this P frame,
716          to make sure that SKIP is possible (todo)          to make sure that SKIP is possible (todo)
717          how: if skip is not possible set sad00 to a very high value */          how: if skip is not possible set sad00 to a very high value */
718            if(rrv) {
719                    uint32_t sadC = sad16(current->u + x*16 + y*(iEdgedWidth/2)*16,
720                                                    reference->u + x*16 + y*(iEdgedWidth/2)*16, iEdgedWidth/2, 256*4096);
721                    if (sadC > iQuant * MAX_CHROMA_SAD_FOR_SKIP*4) return 0;
722                    sadC += sad16(current->v + (x + y*(iEdgedWidth/2))*16,
723                                                    reference->v + (x + y*(iEdgedWidth/2))*16, iEdgedWidth/2, 256*4096);
724                    if (sadC > iQuant * MAX_CHROMA_SAD_FOR_SKIP*4) return 0;
725                    return 1;
726            } else {
727          uint32_t sadC = sad8(current->u + x*8 + y*(iEdgedWidth/2)*8,          uint32_t sadC = sad8(current->u + x*8 + y*(iEdgedWidth/2)*8,
728                                          reference->u + x*8 + y*(iEdgedWidth/2)*8, iEdgedWidth/2);                                          reference->u + x*8 + y*(iEdgedWidth/2)*8, iEdgedWidth/2);
729          if (sadC > iQuant * MAX_CHROMA_SAD_FOR_SKIP) return 0;          if (sadC > iQuant * MAX_CHROMA_SAD_FOR_SKIP) return 0;
730          sadC += sad8(current->v + (x + y*(iEdgedWidth/2))*8,          sadC += sad8(current->v + (x + y*(iEdgedWidth/2))*8,
731                                          reference->v + (x + y*(iEdgedWidth/2))*8, iEdgedWidth/2);                                          reference->v + (x + y*(iEdgedWidth/2))*8, iEdgedWidth/2);
732          if (sadC > iQuant * MAX_CHROMA_SAD_FOR_SKIP) return 0;          if (sadC > iQuant * MAX_CHROMA_SAD_FOR_SKIP) return 0;
   
733          return 1;          return 1;
734  }  }
735    }
736    
737  static __inline void  static __inline void
738  SkipMacroblockP(MACROBLOCK *pMB, const int32_t sad)  SkipMacroblockP(MACROBLOCK *pMB, const int32_t sad)
# Line 1169  Line 762 
762    
763          const VECTOR zeroMV = { 0, 0 };          const VECTOR zeroMV = { 0, 0 };
764    
765            uint32_t mb_width = pParam->mb_width;
766            uint32_t mb_height = pParam->mb_height;
767    
768          uint32_t x, y;          uint32_t x, y;
769          uint32_t iIntra = 0;          uint32_t iIntra = 0;
770          int32_t InterBias, quant = current->quant, sad00;          int32_t InterBias, quant = current->quant, sad00;
# Line 1180  Line 776 
776          VECTOR currentQMV[5];          VECTOR currentQMV[5];
777          int32_t iMinSAD[5];          int32_t iMinSAD[5];
778          SearchData Data;          SearchData Data;
779            memset(&Data, 0, sizeof(SearchData));
780          Data.iEdgedWidth = pParam->edged_width;          Data.iEdgedWidth = pParam->edged_width;
781          Data.currentMV = currentMV;          Data.currentMV = currentMV;
782          Data.currentQMV = currentQMV;          Data.currentQMV = currentQMV;
# Line 1189  Line 786 
786          Data.rounding = pParam->m_rounding_type;          Data.rounding = pParam->m_rounding_type;
787          Data.qpel = pParam->m_quarterpel;          Data.qpel = pParam->m_quarterpel;
788          Data.chroma = current->global_flags & XVID_ME_COLOUR;          Data.chroma = current->global_flags & XVID_ME_COLOUR;
789            Data.rrv = current->global_flags & XVID_REDUCED;
790    
791            if ((current->global_flags & XVID_REDUCED)) {
792                    mb_width = (pParam->width + 31) / 32;
793                    mb_height = (pParam->height + 31) / 32;
794                    Data.qpel = Data.chroma = 0;
795            }
796    
797          if((qimage = (uint8_t *) malloc(32 * pParam->edged_width)) == NULL)          if((qimage = (uint8_t *) malloc(32 * pParam->edged_width)) == NULL)
798                  return 1; // allocate some mem for qpel interpolated blocks                  return 1; // allocate some mem for qpel interpolated blocks
# Line 1197  Line 801 
801          Data.RefQ = qimage;          Data.RefQ = qimage;
802          if (sadInit) (*sadInit) ();          if (sadInit) (*sadInit) ();
803    
804          for (y = 0; y < pParam->mb_height; y++) {          for (y = 0; y < mb_height; y++) {
805                  for (x = 0; x < pParam->mb_width; x++)  {                  for (x = 0; x < mb_width; x++)  {
806                          MACROBLOCK *pMB = &pMBs[x + y * pParam->mb_width];                          MACROBLOCK *pMB = &pMBs[x + y * pParam->mb_width];
807    
808                          pMB->sad16                          if (Data.rrv) pMB->sad16 =
809                                  = sad16v(pCurrent->y + (x + y * pParam->edged_width) * 16,                                  sad32v_c(pCurrent->y + (x + y * pParam->edged_width) * 32,
810                                                            pRef->y + (x + y * pParam->edged_width) * 32,
811                                                            pParam->edged_width, pMB->sad8 );
812    
813                            else pMB->sad16 =
814                                    sad16v(pCurrent->y + (x + y * pParam->edged_width) * 16,
815                                                          pRef->y + (x + y * pParam->edged_width) * 16,                                                          pRef->y + (x + y * pParam->edged_width) * 16,
816                                                          pParam->edged_width, pMB->sad8 );                                                          pParam->edged_width, pMB->sad8 );
817    
# Line 1231  Line 840 
840  //initial skip decision  //initial skip decision
841  /* no early skip for GMC (global vector = skip vector is unknown!)  */  /* no early skip for GMC (global vector = skip vector is unknown!)  */
842                          if (current->coding_type == P_VOP)      { /* no fast SKIP for S(GMC)-VOPs */                          if (current->coding_type == P_VOP)      { /* no fast SKIP for S(GMC)-VOPs */
843                                  if (pMB->dquant == NO_CHANGE && sad00 < pMB->quant * INITIAL_SKIP_THRESH)                                  if (pMB->dquant == NO_CHANGE && sad00 < pMB->quant * INITIAL_SKIP_THRESH  * (Data.rrv ? 4:1) )
844                                          if (Data.chroma || SkipDecisionP(pCurrent, pRef, x, y, pParam->edged_width, pMB->quant)) {                                          if (Data.chroma || SkipDecisionP(pCurrent, pRef, x, y, pParam->edged_width, pMB->quant, Data.rrv)) {
845                                                  SkipMacroblockP(pMB, sad00);                                                  SkipMacroblockP(pMB, sad00);
846                                                  continue;                                                  continue;
847                                          }                                          }
# Line 1246  Line 855 
855  /* 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?" */
856                          if (current->coding_type == P_VOP)      {                          if (current->coding_type == P_VOP)      {
857                                  if ( (pMB->dquant == NO_CHANGE) && (sad00 < pMB->quant * MAX_SAD00_FOR_SKIP)                                  if ( (pMB->dquant == NO_CHANGE) && (sad00 < pMB->quant * MAX_SAD00_FOR_SKIP)
858                                  && ((100*pMB->sad16)/(sad00+1) > FINAL_SKIP_THRESH) )                                          && ((100*pMB->sad16)/(sad00+1) > FINAL_SKIP_THRESH * (Data.rrv ? 4:1)) )
859                                          if (Data.chroma || SkipDecisionP(pCurrent, pRef, x, y, pParam->edged_width, pMB->quant)) {                                          if (Data.chroma || SkipDecisionP(pCurrent, pRef, x, y, pParam->edged_width, pMB->quant, Data.rrv)) {
860                                                  SkipMacroblockP(pMB, sad00);                                                  SkipMacroblockP(pMB, sad00);
861                                                  continue;                                                  continue;
862                                          }                                          }
# Line 1263  Line 872 
872                                  if ((pMB - 1)->mode == MODE_INTRA ) InterBias -= 80;                                  if ((pMB - 1)->mode == MODE_INTRA ) InterBias -= 80;
873    
874                          if (Data.chroma) InterBias += 50; // to compensate bigger SAD                          if (Data.chroma) InterBias += 50; // to compensate bigger SAD
875                            if (Data.rrv) InterBias *= 4; //??
876    
877                          if (InterBias < pMB->sad16)  {                          if (InterBias < pMB->sad16)  {
878                                  const int32_t deviation =                                  int32_t deviation;
879                                          dev16(pCurrent->y + (x + y * pParam->edged_width) * 16,                                  if (Data.rrv) {
880                                            deviation = dev16(pCurrent->y + (x + y * pParam->edged_width) * 32,
881                                                                                    pParam->edged_width)
882                                                    + dev16(pCurrent->y + (x + y * pParam->edged_width) * 32 + 16,
883                                                                                    pParam->edged_width)
884                                                    + dev16(pCurrent->y + (x + y * pParam->edged_width) * 32 + 16 * pParam->edged_width,
885                                                                                    pParam->edged_width)
886                                                    + dev16(pCurrent->y + (x + y * pParam->edged_width) * 32 + 16 * (pParam->edged_width+1),
887                                                                                    pParam->edged_width);
888                                    } else
889                                            deviation = dev16(pCurrent->y + (x + y * pParam->edged_width) * 16,
890                                                    pParam->edged_width);                                                    pParam->edged_width);
891    
892                                  if (deviation < (pMB->sad16 - InterBias)) {                                  if (deviation < (pMB->sad16 - InterBias)) {
# Line 1314  Line 934 
934  }  }
935    
936  static __inline void  static __inline void
937  PreparePredictionsP(VECTOR * const pmv, int x, int y, const int iWcount,  PreparePredictionsP(VECTOR * const pmv, int x, int y, int iWcount,
938                          const int iHcount, const MACROBLOCK * const prevMB)                          int iHcount, const MACROBLOCK * const prevMB, int rrv)
939  {  {
940    
941  //this function depends on get_pmvdata which means that it sucks. It should get the predictions by itself  //this function depends on get_pmvdata which means that it sucks. It should get the predictions by itself
942            if (rrv) { iWcount /= 2; iHcount /= 2; }
943    
944          if ( (y != 0) && (x != (iWcount-1)) ) {         // [5] top-right neighbour          if ( (y != 0) && (x < (iWcount-1)) ) {          // [5] top-right neighbour
945                  pmv[5].x = EVEN(pmv[3].x);                  pmv[5].x = EVEN(pmv[3].x);
946                  pmv[5].y = EVEN(pmv[3].y);                  pmv[5].y = EVEN(pmv[3].y);
947          } else pmv[5].x = pmv[5].y = 0;          } else pmv[5].x = pmv[5].y = 0;
# Line 1332  Line 953 
953      else pmv[4].x = pmv[4].y = 0;      else pmv[4].x = pmv[4].y = 0;
954    
955          // [1] median prediction          // [1] median prediction
956          pmv[1].x = EVEN(pmv[0].x); pmv[1].y = EVEN(pmv[0].y);          if (rrv) { //median is in halfzero-precision
957                    pmv[1].x = RRV_MV_SCALEUP(pmv[0].x);
958                    pmv[1].y = RRV_MV_SCALEUP(pmv[0].y);
959            } else { pmv[1].x = EVEN(pmv[0].x); pmv[1].y = EVEN(pmv[0].y); }
960    
961          pmv[0].x = pmv[0].y = 0; // [0] is zero; not used in the loop (checked before) but needed here for make_mask          pmv[0].x = pmv[0].y = 0; // [0] is zero; not used in the loop (checked before) but needed here for make_mask
962    
963          pmv[2].x = EVEN(prevMB->mvs[0].x); // [2] is last frame          pmv[2].x = EVEN(prevMB->mvs[0].x); // [2] is last frame
964          pmv[2].y = EVEN(prevMB->mvs[0].y);          pmv[2].y = EVEN(prevMB->mvs[0].y);
965    
966          if ((x != iWcount-1) && (y != iHcount-1)) {          if ((x < iWcount-1) && (y < iHcount-1)) {
967                  pmv[6].x = EVEN((prevMB+1+iWcount)->mvs[0].x); //[6] right-down neighbour in last frame                  pmv[6].x = EVEN((prevMB+1+iWcount)->mvs[0].x); //[6] right-down neighbour in last frame
968                  pmv[6].y = EVEN((prevMB+1+iWcount)->mvs[0].y);                  pmv[6].y = EVEN((prevMB+1+iWcount)->mvs[0].y);
969          } else pmv[6].x = pmv[6].y = 0;          } else pmv[6].x = pmv[6].y = 0;
970    
971            if (rrv) {
972                    int i;
973                    for (i = 0; i < 7; i++) {
974                            pmv[i].x = RRV_MV_SCALEDOWN(pmv[i].x);
975                            pmv[i].x = RRV_MV_SCALEUP(pmv[i].x); // a trick
976                    }
977            }
978  }  }
979    
980  static void  static void
# Line 1366  Line 998 
998          int i, iDirection = 255, mask, threshA;          int i, iDirection = 255, mask, threshA;
999          VECTOR pmv[7];          VECTOR pmv[7];
1000    
1001          get_pmvdata2(pMBs, pParam->mb_width, 0, x, y, 0, pmv, Data->temp);  //has to be changed to get_pmv(2)()          if (Data->rrv) {
1002                    i = (pParam->width + 31) / 32;
1003                    get_range_rrv(&Data->min_dx, &Data->max_dx, &Data->min_dy, &Data->max_dy, x, y, 32,
1004                                                    pParam->width, pParam->height, Data->iFcode);
1005            } else {
1006                    i = pParam->mb_width;
1007          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,
1008                                  pParam->width, pParam->height, Data->iFcode, pParam->m_quarterpel);                          pParam->width, pParam->height, Data->iFcode - pParam->m_quarterpel);
1009            }
1010    
1011          Data->predMV = pmv[0];          i = pParam->mb_width; // XXXX
1012            get_pmvdata2(pMBs, i, 0, x, y, 0, pmv, Data->temp);  //has to be changed to get_pmv(2)()
1013    
1014          Data->Cur = pCur->y + (x + y * Data->iEdgedWidth) * 16;          if (Data->rrv) i = 2; else i = 1;
1015          Data->CurV = pCur->v + (x + y * (Data->iEdgedWidth/2)) * 8;          Data->Cur = pCur->y + (x + y * Data->iEdgedWidth) * 16*i;
1016          Data->CurU = pCur->u + (x + y * (Data->iEdgedWidth/2)) * 8;          Data->CurV = pCur->v + (x + y * (Data->iEdgedWidth/2)) * 8*i;
1017            Data->CurU = pCur->u + (x + y * (Data->iEdgedWidth/2)) * 8*i;
1018          Data->Ref = pRef->y + (x + Data->iEdgedWidth*y) * 16;  
1019          Data->RefH = pRefH + (x + Data->iEdgedWidth*y) * 16;          Data->Ref = pRef->y + (x + Data->iEdgedWidth*y) * 16*i;
1020          Data->RefV = pRefV + (x + Data->iEdgedWidth*y) * 16;          Data->RefH = pRefH + (x + Data->iEdgedWidth*y) * 16*i;
1021          Data->RefHV = pRefHV + (x + Data->iEdgedWidth*y) * 16;          Data->RefV = pRefV + (x + Data->iEdgedWidth*y) * 16*i;
1022          Data->RefCV = pRef->v + (x + y * (Data->iEdgedWidth/2)) * 8;          Data->RefHV = pRefHV + (x + Data->iEdgedWidth*y) * 16*i;
1023          Data->RefCU = pRef->u + (x + y * (Data->iEdgedWidth/2)) * 8;          Data->RefCV = pRef->v + (x + y * (Data->iEdgedWidth/2)) * 8*i;
1024            Data->RefCU = pRef->u + (x + y * (Data->iEdgedWidth/2)) * 8*i;
1025    
1026          Data->lambda16 = lambda_vec16[iQuant];          Data->lambda16 = lambda_vec16[iQuant];
1027          Data->lambda8 = lambda_vec8[iQuant];          Data->lambda8 = lambda_vec8[iQuant];
1028            Data->qpel_precision = 0;
         if (!(MotionFlags & PMV_HALFPEL16)) {  
                 Data->min_dx = EVEN(Data->min_dx);  
                 Data->max_dx = EVEN(Data->max_dx);  
                 Data->min_dy = EVEN(Data->min_dy);  
                 Data->max_dy = EVEN(Data->max_dy); }  
1029    
1030          if (pMB->dquant != NO_CHANGE) inter4v = 0;          if (pMB->dquant != NO_CHANGE) inter4v = 0;
1031    
1032          for(i = 0;  i < 5; i++)          for(i = 0;  i < 5; i++)
1033                  Data->currentMV[i].x = Data->currentMV[i].y = 0;                  Data->currentMV[i].x = Data->currentMV[i].y = 0;
1034    
1035          if (pParam->m_quarterpel) {          if (pParam->m_quarterpel) Data->predMV = get_qpmv2(pMBs, pParam->mb_width, 0, x, y, 0);
1036                  Data->predQMV = get_qpmv2(pMBs, pParam->mb_width, 0, x, y, 0);          else Data->predMV = pmv[0];
                 i = d_mv_bits(Data->predQMV.x, Data->predQMV.y, Data->iFcode);  
         } else i = d_mv_bits(Data->predMV.x, Data->predMV.y, Data->iFcode);  
1037    
1038            i = d_mv_bits(Data->predMV.x, Data->predMV.y, Data->iFcode);
1039          Data->iMinSAD[0] = pMB->sad16 + (Data->lambda16 * i * pMB->sad16)/1000;          Data->iMinSAD[0] = pMB->sad16 + (Data->lambda16 * i * pMB->sad16)/1000;
1040          Data->iMinSAD[1] = pMB->sad8[0] + (Data->lambda8 * i * (pMB->sad8[0]+NEIGH_8X8_BIAS))/100;          Data->iMinSAD[1] = pMB->sad8[0] + (Data->lambda8 * i * (pMB->sad8[0]+NEIGH_8X8_BIAS))/100;
1041          Data->iMinSAD[2] = pMB->sad8[1];          Data->iMinSAD[2] = pMB->sad8[1];
# Line 1415  Line 1049 
1049                  if (threshA > 1024) threshA = 1024; }                  if (threshA > 1024) threshA = 1024; }
1050    
1051          PreparePredictionsP(pmv, x, y, pParam->mb_width, pParam->mb_height,          PreparePredictionsP(pmv, x, y, pParam->mb_width, pParam->mb_height,
1052                                          prevMBs + x + y * pParam->mb_width);                                          prevMBs + x + y * pParam->mb_width, Data->rrv);
1053    
1054          if (inter4v || pParam->m_quarterpel || Data->chroma) CheckCandidate = CheckCandidate16;          if (Data->rrv) CheckCandidate = CheckCandidate32;
1055          else CheckCandidate = CheckCandidate16no4v;          else if (inter4v || Data->chroma) CheckCandidate = CheckCandidate16;
1056                    else CheckCandidate = CheckCandidate16no4v; //for extra speed
1057    
1058  /* main loop. checking all predictions */  /* main loop. checking all predictions */
1059    
# Line 1448  Line 1083 
1083                  if (MotionFlags & PMV_EXTSEARCH16) {                  if (MotionFlags & PMV_EXTSEARCH16) {
1084                          int32_t bSAD;                          int32_t bSAD;
1085                          VECTOR startMV = Data->predMV, backupMV = Data->currentMV[0];                          VECTOR startMV = Data->predMV, backupMV = Data->currentMV[0];
1086                            if (Data->rrv) {
1087                                    startMV.x = RRV_MV_SCALEUP(startMV.x);
1088                                    startMV.y = RRV_MV_SCALEUP(startMV.y);
1089                            } else
1090                          if (!(MotionFlags & PMV_HALFPELREFINE16)) // who's gonna use extsearch and no halfpel?                          if (!(MotionFlags & PMV_HALFPELREFINE16)) // who's gonna use extsearch and no halfpel?
1091                                  startMV.x = EVEN(startMV.x); startMV.y = EVEN(startMV.y);                                  startMV.x = EVEN(startMV.x); startMV.y = EVEN(startMV.y);
1092                          if (!(MVequal(startMV, backupMV))) {                          if (!(MVequal(startMV, backupMV))) {
# Line 1461  Line 1100 
1100                          }                          }
1101    
1102                          backupMV = Data->currentMV[0];                          backupMV = Data->currentMV[0];
1103                          if (MotionFlags & PMV_HALFPELREFINE16) startMV.x = startMV.y = 1;                          if (!MotionFlags & PMV_HALFPELREFINE16 || Data->rrv) startMV.x = startMV.y = 0;
1104                          else startMV.x = startMV.y = 0;                          else startMV.x = startMV.y = 1;
1105                          if (!(MVequal(startMV, backupMV))) {                          if (!(MVequal(startMV, backupMV))) {
1106                                  bSAD = Data->iMinSAD[0]; Data->iMinSAD[0] = MV_MAX_ERROR;                                  bSAD = Data->iMinSAD[0]; Data->iMinSAD[0] = MV_MAX_ERROR;
1107    
# Line 1475  Line 1114 
1114                  }                  }
1115          }          }
1116    
1117          if (MotionFlags & PMV_HALFPELREFINE16) HalfpelRefine(Data);          if (MotionFlags & PMV_HALFPELREFINE16) SubpelRefine(Data);
1118    
1119          for(i = 0; i < 5; i++) {          for(i = 0; i < 5; i++) {
1120                  Data->currentQMV[i].x = 2 * Data->currentMV[i].x; // initialize qpel vectors                  Data->currentQMV[i].x = 2 * Data->currentMV[i].x; // initialize qpel vectors
1121                  Data->currentQMV[i].y = 2 * Data->currentMV[i].y;                  Data->currentQMV[i].y = 2 * Data->currentMV[i].y;
1122          }          }
1123    
1124          if((pParam->m_quarterpel) && (MotionFlags & PMV_QUARTERPELREFINE16)) {          if((!Data->rrv) && (pParam->m_quarterpel) && (MotionFlags & PMV_QUARTERPELREFINE16)) {
1125    
1126                  CheckCandidate = CheckCandidate16_qpel;                  Data->qpel_precision = 1;
1127                  get_range(&Data->min_dx, &Data->max_dx, &Data->min_dy, &Data->max_dy, x, y, 16,                  get_range_qpel(&Data->min_dx, &Data->max_dx, &Data->min_dy, &Data->max_dy, x, y, 16,
1128                                  pParam->width, pParam->height, Data->iFcode, 0);                                  pParam->width, pParam->height, Data->iFcode);
1129    
1130                  QuarterpelRefine(Data);                  SubpelRefine(Data);
1131          }          }
1132    
1133          if (Data->iMinSAD[0] < (int32_t)iQuant * 30 ) inter4v = 0;          if (Data->iMinSAD[0] < (int32_t)iQuant * 30 ) inter4v = 0;
# Line 1499  Line 1138 
1138                  Data8.iEdgedWidth = Data->iEdgedWidth;                  Data8.iEdgedWidth = Data->iEdgedWidth;
1139                  Data8.RefQ = Data->RefQ;                  Data8.RefQ = Data->RefQ;
1140                  Data8.qpel = Data->qpel;                  Data8.qpel = Data->qpel;
1141                    Data8.rrv = Data->rrv;
1142                  Search8(Data, 2*x, 2*y, MotionFlags, pParam, pMB, pMBs, 0, &Data8);                  Search8(Data, 2*x, 2*y, MotionFlags, pParam, pMB, pMBs, 0, &Data8);
1143                  Search8(Data, 2*x + 1, 2*y, MotionFlags, pParam, pMB, pMBs, 1, &Data8);                  Search8(Data, 2*x + 1, 2*y, MotionFlags, pParam, pMB, pMBs, 1, &Data8);
1144                  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);
1145                  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);
1146    
1147                  if (Data->chroma) {                  if (Data->chroma) {
1148                          int sum, dx, dy;                          int sumx, sumy, dx, dy;
1149    
1150                          if(pParam->m_quarterpel) {                          if(pParam->m_quarterpel) {
1151                                  sum = pMB->qmvs[0].y/2 + pMB->qmvs[1].y/2 + pMB->qmvs[2].y/2 + pMB->qmvs[3].y/2;                                  sumx= pMB->qmvs[0].x/2 + pMB->qmvs[1].x/2 + pMB->qmvs[2].x/2 + pMB->qmvs[3].x/2;
1152                          } else sum = pMB->mvs[0].y + pMB->mvs[1].y + pMB->mvs[2].y + pMB->mvs[3].y;                                  sumy = pMB->qmvs[0].y/2 + pMB->qmvs[1].y/2 + pMB->qmvs[2].y/2 + pMB->qmvs[3].y/2;
1153                          dy = (sum >> 3) + roundtab_76[sum & 0xf];                          } else {
1154                                    sumx = pMB->mvs[0].x + pMB->mvs[1].x + pMB->mvs[2].x + pMB->mvs[3].x;
1155                          if(pParam->m_quarterpel) {                                  sumy = pMB->mvs[0].y + pMB->mvs[1].y + pMB->mvs[2].y + pMB->mvs[3].y;
1156                                  sum = pMB->qmvs[0].x/2 + pMB->qmvs[1].x/2 + pMB->qmvs[2].x/2 + pMB->qmvs[3].x/2;                          }
1157                          } else sum = pMB->mvs[0].x + pMB->mvs[1].x + pMB->mvs[2].x + pMB->mvs[3].x;                          dx = (sumx >> 3) + roundtab_76[sumx & 0xf];
1158                          dx = (sum >> 3) + roundtab_76[sum & 0xf];                          dy = (sumy >> 3) + roundtab_76[sumy & 0xf];
1159    
1160                          Data->iMinSAD[1] += ChromaSAD(dx, dy, Data);                          Data->iMinSAD[1] += ChromaSAD(dx, dy, Data);
1161                  }                  }
1162          }          }
1163    
1164            if (Data->rrv) {
1165                            Data->currentMV[0].x = RRV_MV_SCALEDOWN(Data->currentMV[0].x);
1166                            Data->currentMV[0].y = RRV_MV_SCALEDOWN(Data->currentMV[0].y);
1167            }
1168          if (!(inter4v) ||          if (!(inter4v) ||
1169                  (Data->iMinSAD[0] < Data->iMinSAD[1] + Data->iMinSAD[2] +                  (Data->iMinSAD[0] < Data->iMinSAD[1] + Data->iMinSAD[2] +
1170                          Data->iMinSAD[3] + Data->iMinSAD[4] + IMV16X16 * (int32_t)iQuant )) {                          Data->iMinSAD[3] + Data->iMinSAD[4] + IMV16X16 * (int32_t)iQuant )) {
# Line 1529  Line 1173 
1173                  pMB->mvs[0] = pMB->mvs[1]                  pMB->mvs[0] = pMB->mvs[1]
1174                          = pMB->mvs[2] = pMB->mvs[3] = Data->currentMV[0];                          = pMB->mvs[2] = pMB->mvs[3] = Data->currentMV[0];
1175    
                 pMB->qmvs[0] = pMB->qmvs[1]  
                         = pMB->qmvs[2] = pMB->qmvs[3] = Data->currentQMV[0];  
   
1176                  pMB->sad16 = pMB->sad8[0] = pMB->sad8[1] =                  pMB->sad16 = pMB->sad8[0] = pMB->sad8[1] =
1177                          pMB->sad8[2] = pMB->sad8[3] =  Data->iMinSAD[0];                          pMB->sad8[2] = pMB->sad8[3] =  Data->iMinSAD[0];
1178    
1179                  if(pParam->m_quarterpel) {                  if(pParam->m_quarterpel) {
1180                          pMB->pmvs[0].x = Data->currentQMV[0].x - Data->predQMV.x;                          pMB->qmvs[0] = pMB->qmvs[1]
1181                          pMB->pmvs[0].y = Data->currentQMV[0].y - Data->predQMV.y;                                  = pMB->qmvs[2] = pMB->qmvs[3] = Data->currentQMV[0];
1182                            pMB->pmvs[0].x = Data->currentQMV[0].x - Data->predMV.x;
1183                            pMB->pmvs[0].y = Data->currentQMV[0].y - Data->predMV.y;
1184                  } else {                  } else {
1185                          pMB->pmvs[0].x = Data->currentMV[0].x - Data->predMV.x;                          pMB->pmvs[0].x = Data->currentMV[0].x - Data->predMV.x;
1186                          pMB->pmvs[0].y = Data->currentMV[0].y - Data->predMV.y;                          pMB->pmvs[0].y = Data->currentMV[0].y - Data->predMV.y;
# Line 1560  Line 1203 
1203                  const int block,                  const int block,
1204                  SearchData * const Data)                  SearchData * const Data)
1205  {  {
1206            int i = 0;
1207          Data->iMinSAD = OldData->iMinSAD + 1 + block;          Data->iMinSAD = OldData->iMinSAD + 1 + block;
1208          Data->currentMV = OldData->currentMV + 1 + block;          Data->currentMV = OldData->currentMV + 1 + block;
1209          Data->currentQMV = OldData->currentQMV + 1 + block;          Data->currentQMV = OldData->currentQMV + 1 + block;
1210    
1211          if(pParam->m_quarterpel) {          if(pParam->m_quarterpel) {
1212                  Data->predQMV = get_qpmv2(pMBs, pParam->mb_width, 0, x/2 , y/2, block);                  Data->predMV = get_qpmv2(pMBs, pParam->mb_width, 0, x/2, y/2, block);
1213                  if (block != 0) *(Data->iMinSAD) += (Data->lambda8 *                  if (block != 0) i = d_mv_bits(  Data->currentQMV->x - Data->predMV.x,
1214                                                                          d_mv_bits(      Data->currentQMV->x - Data->predQMV.x,                                                                                  Data->currentQMV->y - Data->predMV.y, Data->iFcode);
                                                                                                 Data->currentQMV->y - Data->predQMV.y,  
                                                                                                 Data->iFcode) * (*Data->iMinSAD + NEIGH_8X8_BIAS))/100;  
1215          } else {          } else {
1216                  Data->predMV = get_pmv2(pMBs, pParam->mb_width, 0, x/2 , y/2, block);                  Data->predMV = get_pmv2(pMBs, pParam->mb_width, 0, x/2 , y/2, block);
1217                  if (block != 0) *(Data->iMinSAD) += (Data->lambda8 *                  if (block != 0) {
1218                                                                          d_mv_bits(      Data->currentMV->x - Data->predMV.x,                          if (Data->rrv) i = d_mv_bits(   RRV_MV_SCALEDOWN(Data->currentMV->x) - Data->predMV.x,
1219                                                                                                  Data->currentMV->y - Data->predMV.y,                                                                                          RRV_MV_SCALEDOWN(Data->currentMV->y) - Data->predMV.y,
1220                                                                                                  Data->iFcode) * (*Data->iMinSAD + NEIGH_8X8_BIAS))/100;                                                                                          Data->iFcode);
1221                            else i = d_mv_bits(     Data->currentMV->x - Data->predMV.x,
1222                                                                    Data->currentMV->y - Data->predMV.y, Data->iFcode);
1223                    }
1224          }          }
1225    
1226          if (MotionFlags & (PMV_EXTSEARCH8|PMV_HALFPELREFINE8)) {          *(Data->iMinSAD) += (Data->lambda8 * i * (*Data->iMinSAD + NEIGH_8X8_BIAS))/100;
   
                 Data->Ref = OldData->Ref + 8 * ((block&1) + pParam->edged_width*(block>>1));  
                 Data->RefH = OldData->RefH + 8 * ((block&1) + pParam->edged_width*(block>>1));  
                 Data->RefV = OldData->RefV + 8 * ((block&1) + pParam->edged_width*(block>>1));  
                 Data->RefHV = OldData->RefHV + 8 * ((block&1) + pParam->edged_width*(block>>1));  
1227    
1228                  Data->Cur = OldData->Cur + 8 * ((block&1) + pParam->edged_width*(block>>1));          if (MotionFlags & (PMV_EXTSEARCH8|PMV_HALFPELREFINE8)) {
1229                    if (Data->rrv) i = 2; else i = 1;
1230    
1231                    Data->Ref = OldData->Ref + i*8 * ((block&1) + pParam->edged_width*(block>>1));
1232                    Data->RefH = OldData->RefH + i*8 * ((block&1) + pParam->edged_width*(block>>1));
1233                    Data->RefV = OldData->RefV + i*8 * ((block&1) + pParam->edged_width*(block>>1));
1234                    Data->RefHV = OldData->RefHV + i*8 * ((block&1) + pParam->edged_width*(block>>1));
1235    
1236                    Data->Cur = OldData->Cur + i*8 * ((block&1) + pParam->edged_width*(block>>1));
1237                    Data->qpel_precision = 0;
1238    
1239                    if (Data->rrv) {
1240                            get_range_rrv(&Data->min_dx, &Data->max_dx, &Data->min_dy, &Data->max_dy, x, y, 16,
1241                                            pParam->width, pParam->height, OldData->iFcode);
1242                            CheckCandidate = CheckCandidate16no4v;
1243                    } else {
1244                  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,
1245                                  pParam->width, pParam->height, OldData->iFcode, pParam->m_quarterpel);                                          pParam->width, pParam->height, OldData->iFcode - pParam->m_quarterpel);
1246                  CheckCandidate = CheckCandidate8;                  CheckCandidate = CheckCandidate8;
1247                    }
1248    
1249                  if (MotionFlags & PMV_EXTSEARCH8) {                  if (MotionFlags & PMV_EXTSEARCH8) {
1250                          int32_t temp_sad = *(Data->iMinSAD); // store current MinSAD                          int32_t temp_sad = *(Data->iMinSAD); // store current MinSAD
# Line 1610  Line 1265 
1265                  if (MotionFlags & PMV_HALFPELREFINE8) {                  if (MotionFlags & PMV_HALFPELREFINE8) {
1266                          int32_t temp_sad = *(Data->iMinSAD); // store current MinSAD                          int32_t temp_sad = *(Data->iMinSAD); // store current MinSAD
1267    
1268                          HalfpelRefine(Data); // perform halfpel refine of current best vector                          SubpelRefine(Data); // perform halfpel refine of current best vector
1269    
1270                          if(*(Data->iMinSAD) < temp_sad) { // we have found a better match                          if(*(Data->iMinSAD) < temp_sad) { // we have found a better match
1271                                  Data->currentQMV->x = 2 * Data->currentMV->x; // update our qpel vector                                  Data->currentQMV->x = 2 * Data->currentMV->x; // update our qpel vector
# Line 1618  Line 1273 
1273                          }                          }
1274                  }                  }
1275    
1276                  if(pParam->m_quarterpel) {                  if(!Data->rrv && pParam->m_quarterpel) {
1277                          if((!(Data->currentQMV->x & 1)) && (!(Data->currentQMV->y & 1)) &&                          if((!(Data->currentQMV->x & 1)) && (!(Data->currentQMV->y & 1)) &&
1278                                  (MotionFlags & PMV_QUARTERPELREFINE8)) {                                  (MotionFlags & PMV_QUARTERPELREFINE8)) {
1279                          CheckCandidate = CheckCandidate8_qpel;                          Data->qpel_precision = 1;
1280                          get_range(&Data->min_dx, &Data->max_dx, &Data->min_dy, &Data->max_dy, x, y, 8,                          get_range_qpel(&Data->min_dx, &Data->max_dx, &Data->min_dy, &Data->max_dy, x, y, 8,
1281                                  pParam->width, pParam->height, OldData->iFcode, pParam->m_quarterpel);                                  pParam->width, pParam->height, OldData->iFcode);
1282                          QuarterpelRefine(Data);                          SubpelRefine(Data);
1283                          }                          }
1284                  }                  }
1285          }          }
1286    
1287          if(pParam->m_quarterpel) {          if (Data->rrv) {
1288                  pMB->pmvs[block].x = Data->currentQMV->x - Data->predQMV.x;                          Data->currentMV->x = RRV_MV_SCALEDOWN(Data->currentMV->x);
1289                  pMB->pmvs[block].y = Data->currentQMV->y - Data->predQMV.y;                          Data->currentMV->y = RRV_MV_SCALEDOWN(Data->currentMV->y);
1290          }          }
1291          else {  
1292            if(pParam->m_quarterpel) {
1293                    pMB->pmvs[block].x = Data->currentQMV->x - Data->predMV.x;
1294                    pMB->pmvs[block].y = Data->currentQMV->y - Data->predMV.y;
1295                    pMB->qmvs[block] = *(Data->currentQMV);
1296            } else {
1297                  pMB->pmvs[block].x = Data->currentMV->x - Data->predMV.x;                  pMB->pmvs[block].x = Data->currentMV->x - Data->predMV.x;
1298                  pMB->pmvs[block].y = Data->currentMV->y - Data->predMV.y;                  pMB->pmvs[block].y = Data->currentMV->y - Data->predMV.y;
1299          }          }
1300    
1301          pMB->mvs[block] = *(Data->currentMV);          pMB->mvs[block] = *(Data->currentMV);
         pMB->qmvs[block] = *(Data->currentQMV);  
   
1302          pMB->sad8[block] =  4 * (*Data->iMinSAD);          pMB->sad8[block] =  4 * (*Data->iMinSAD);
1303  }  }
1304    
# Line 1718  Line 1376 
1376          MainSearchFunc *MainSearchPtr;          MainSearchFunc *MainSearchPtr;
1377          *Data->iMinSAD = MV_MAX_ERROR;          *Data->iMinSAD = MV_MAX_ERROR;
1378          Data->iFcode = iFcode;          Data->iFcode = iFcode;
1379            Data->qpel_precision = 0;
1380    
1381          Data->Ref = pRef + (x + y * iEdgedWidth) * 16;          Data->Ref = pRef + (x + y * iEdgedWidth) * 16;
1382          Data->RefH = pRefH + (x + y * iEdgedWidth) * 16;          Data->RefH = pRefH + (x + y * iEdgedWidth) * 16;
# Line 1727  Line 1386 
1386          Data->predMV = *predMV;          Data->predMV = *predMV;
1387    
1388          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,
1389                                  pParam->width, pParam->height, iFcode, pParam->m_quarterpel);                                  pParam->width, pParam->height, iFcode - pParam->m_quarterpel);
1390    
1391          pmv[0] = Data->predMV;          pmv[0] = Data->predMV;
1392          if (Data->qpel) { pmv[0].x /= 2; pmv[0].y /= 2; }          if (Data->qpel) { pmv[0].x /= 2; pmv[0].y /= 2; }
1393          PreparePredictionsBF(pmv, x, y, pParam->mb_width, pMB, mode_current);          PreparePredictionsBF(pmv, x, y, pParam->mb_width, pMB, mode_current);
1394    
1395          Data->currentMV->x = Data->currentMV->y = 0;          Data->currentMV->x = Data->currentMV->y = 0;
   
1396          CheckCandidate = CheckCandidate16no4v;          CheckCandidate = CheckCandidate16no4v;
1397    
1398  // main loop. checking all predictions  // main loop. checking all predictions
# Line 1751  Line 1409 
1409    
1410          (*MainSearchPtr)(Data->currentMV->x, Data->currentMV->y, Data, 255);          (*MainSearchPtr)(Data->currentMV->x, Data->currentMV->y, Data, 255);
1411    
1412          HalfpelRefine(Data);          SubpelRefine(Data);
1413    
1414          if (Data->qpel) {          if (Data->qpel) {
1415                  Data->currentQMV->x = 2*Data->currentMV->x;                  Data->currentQMV->x = 2*Data->currentMV->x;
1416                  Data->currentQMV->y = 2*Data->currentMV->y;                  Data->currentQMV->y = 2*Data->currentMV->y;
1417                  CheckCandidate = CheckCandidate16no4v_qpel;                  Data->qpel_precision = 1;
1418                  get_range(&Data->min_dx, &Data->max_dx, &Data->min_dy, &Data->max_dy, x, y, 16,                  get_range_qpel(&Data->min_dx, &Data->max_dx, &Data->min_dy, &Data->max_dy, x, y, 16,
1419                                          pParam->width, pParam->height, iFcode, pParam->m_quarterpel);                                          pParam->width, pParam->height, iFcode);
1420                  QuarterpelRefine(Data);                  SubpelRefine(Data);
1421          }          }
1422    
1423  // three bits are needed to code backward mode. four for forward  // three bits are needed to code backward mode. four for forward
# Line 1837  Line 1495 
1495                  Data->min_dy *= 2;                  Data->min_dy *= 2;
1496                  Data->referencemv = b_mb->qmvs;                  Data->referencemv = b_mb->qmvs;
1497          } else Data->referencemv = b_mb->mvs;          } else Data->referencemv = b_mb->mvs;
1498            Data->qpel_precision = 0; // it's a trick. it's 1 not 0, but we need 0 here
1499    
1500          for (k = 0; k < 4; k++) {          for (k = 0; k < 4; k++) {
1501                  pMB->mvs[k].x = Data->directmvF[k].x = ((TRB * Data->referencemv[k].x) / TRD);                  pMB->mvs[k].x = Data->directmvF[k].x = ((TRB * Data->referencemv[k].x) / TRD);
# Line 1861  Line 1520 
1520                  }                  }
1521          }          }
1522    
1523          if (Data->qpel) {  
                         if (b_mb->mode == MODE_INTER4V)  
                 CheckCandidate = CheckCandidateDirect_qpel;  
                         else CheckCandidate = CheckCandidateDirectno4v_qpel;  
         } else {  
1524                          if (b_mb->mode == MODE_INTER4V) CheckCandidate = CheckCandidateDirect;                          if (b_mb->mode == MODE_INTER4V) CheckCandidate = CheckCandidateDirect;
1525                          else CheckCandidate = CheckCandidateDirectno4v;                          else CheckCandidate = CheckCandidateDirectno4v;
         }  
1526    
1527          (*CheckCandidate)(0, 0, 255, &k, Data);          (*CheckCandidate)(0, 0, 255, &k, Data);
1528    
# Line 1926  Line 1580 
1580    
1581          (*MainSearchPtr)(0, 0, Data, 255);          (*MainSearchPtr)(0, 0, Data, 255);
1582    
1583          HalfpelRefine(Data); //or qpel refine, if we're in qpel mode          SubpelRefine(Data);
1584    
1585          *Data->iMinSAD +=  1 * Data->lambda16; // one bit is needed to code direct mode  //      *Data->iMinSAD +=  1 * Data->lambda16; // one bit is needed to code direct mode
1586          *best_sad = *Data->iMinSAD;          *best_sad = *Data->iMinSAD;
1587    
1588          if (b_mb->mode == MODE_INTER4V)          if (b_mb->mode == MODE_INTER4V)
# Line 2008  Line 1662 
1662          bData.RefV = fData->bRefV = b_RefV + (x + y * iEdgedWidth) * 16;          bData.RefV = fData->bRefV = b_RefV + (x + y * iEdgedWidth) * 16;
1663          bData.RefHV = fData->bRefHV = b_RefHV + (x + y * iEdgedWidth) * 16;          bData.RefHV = fData->bRefHV = b_RefHV + (x + y * iEdgedWidth) * 16;
1664          bData.RefQ = fData->RefQ;          bData.RefQ = fData->RefQ;
1665            fData->qpel_precision = bData.qpel_precision = 0; bData.qpel = fData->qpel;
1666            bData.rounding = 0;
1667    
1668          bData.bpredMV = fData->predMV = *f_predMV;          bData.bpredMV = fData->predMV = *f_predMV;
1669          fData->bpredMV = bData.predMV = *b_predMV;          fData->bpredMV = bData.predMV = *b_predMV;
1670    
1671          fData->currentMV[0] = fData->currentMV[2];          fData->currentMV[0] = fData->currentMV[2];
1672          get_range(&fData->min_dx, &fData->max_dx, &fData->min_dy, &fData->max_dy, x, y, 16, pParam->width, pParam->height, fcode, pParam->m_quarterpel);          get_range(&fData->min_dx, &fData->max_dx, &fData->min_dy, &fData->max_dy, x, y, 16, pParam->width, pParam->height, fcode - pParam->m_quarterpel);
1673          get_range(&bData.min_dx, &bData.max_dx, &bData.min_dy, &bData.max_dy, x, y, 16, pParam->width, pParam->height, bcode, pParam->m_quarterpel);          get_range(&bData.min_dx, &bData.max_dx, &bData.min_dy, &bData.max_dy, x, y, 16, pParam->width, pParam->height, bcode - pParam->m_quarterpel);
1674    
1675          if (fData->currentMV[0].x > fData->max_dx) fData->currentMV[0].x = fData->max_dx;          if (fData->currentMV[0].x > fData->max_dx) fData->currentMV[0].x = fData->max_dx;
1676          if (fData->currentMV[0].x < fData->min_dx) fData->currentMV[0].x = fData->min_dy;          if (fData->currentMV[0].x < fData->min_dx) fData->currentMV[0].x = fData->min_dx;
1677          if (fData->currentMV[0].y > fData->max_dy) fData->currentMV[0].y = fData->max_dx;          if (fData->currentMV[0].y > fData->max_dy) fData->currentMV[0].y = fData->max_dy;
1678          if (fData->currentMV[0].y > fData->min_dy) fData->currentMV[0].y = fData->min_dy;          if (fData->currentMV[0].y < fData->min_dy) fData->currentMV[0].y = fData->min_dy;
1679    
1680          if (fData->currentMV[1].x > bData.max_dx) fData->currentMV[1].x = bData.max_dx;          if (fData->currentMV[1].x > bData.max_dx) fData->currentMV[1].x = bData.max_dx;
1681          if (fData->currentMV[1].x < bData.min_dx) fData->currentMV[1].x = bData.min_dy;          if (fData->currentMV[1].x < bData.min_dx) fData->currentMV[1].x = bData.min_dx;
1682          if (fData->currentMV[1].y > bData.max_dy) fData->currentMV[1].y = bData.max_dx;          if (fData->currentMV[1].y > bData.max_dy) fData->currentMV[1].y = bData.max_dy;
1683          if (fData->currentMV[1].y > bData.min_dy) fData->currentMV[1].y = bData.min_dy;          if (fData->currentMV[1].y < bData.min_dy) fData->currentMV[1].y = bData.min_dy;
1684    
1685          CheckCandidateInt(fData->currentMV[0].x, fData->currentMV[0].y, 255, &iDirection, fData);          CheckCandidateInt(fData->currentMV[0].x, fData->currentMV[0].y, 255, &iDirection, fData);
1686    
# Line 2050  Line 1706 
1706    
1707          } while (!(iDirection));          } while (!(iDirection));
1708    
         *fData->iMinSAD +=  2 * fData->lambda16; // two bits are needed to code interpolate mode.  
   
1709          if (fData->qpel) {          if (fData->qpel) {
1710                  CheckCandidate = CheckCandidateInt_qpel;                  CheckCandidate = CheckCandidateInt;
1711                  get_range(&fData->min_dx, &fData->max_dx, &fData->min_dy, &fData->max_dy, x, y, 16, pParam->width, pParam->height, fcode, 0);                  fData->qpel_precision = bData.qpel_precision = 1;
1712                  get_range(&bData.min_dx, &bData.max_dx, &bData.min_dy, &bData.max_dy, x, y, 16, pParam->width, pParam->height, bcode, 0);                  get_range_qpel(&fData->min_dx, &fData->max_dx, &fData->min_dy, &fData->max_dy, x, y, 16, pParam->width, pParam->height, fcode);
1713                    get_range_qpel(&bData.min_dx, &bData.max_dx, &bData.min_dy, &bData.max_dy, x, y, 16, pParam->width, pParam->height, bcode);
1714                  fData->currentQMV[2].x = fData->currentQMV[0].x = 2 * fData->currentMV[0].x;                  fData->currentQMV[2].x = fData->currentQMV[0].x = 2 * fData->currentMV[0].x;
1715                  fData->currentQMV[2].y = fData->currentQMV[0].y = 2 * fData->currentMV[0].y;                  fData->currentQMV[2].y = fData->currentQMV[0].y = 2 * fData->currentMV[0].y;
1716                  fData->currentQMV[1].x = 2 * fData->currentMV[1].x;                  fData->currentQMV[1].x = 2 * fData->currentMV[1].x;
1717                  fData->currentQMV[1].y = 2 * fData->currentMV[1].y;                  fData->currentQMV[1].y = 2 * fData->currentMV[1].y;
1718  //              QuarterpelRefine(fData);                  SubpelRefine(fData);
1719                  fData->currentQMV[2] = fData->currentQMV[0];                  fData->currentQMV[2] = fData->currentQMV[0];
1720  //              QuarterpelRefine(&bData);                  SubpelRefine(&bData);
1721          }          }
1722    
1723            *fData->iMinSAD +=  2 * fData->lambda16; // two bits are needed to code interpolate mode.
1724    
1725          if (*fData->iMinSAD < *best_sad) {          if (*fData->iMinSAD < *best_sad) {
1726                  *best_sad = *fData->iMinSAD;                  *best_sad = *fData->iMinSAD;
1727                  pMB->mvs[0] = fData->currentMV[0];                  pMB->mvs[0] = fData->currentMV[0];
# Line 2122  Line 1779 
1779          int32_t iMinSAD;          int32_t iMinSAD;
1780          VECTOR currentMV[3];          VECTOR currentMV[3];
1781          VECTOR currentQMV[3];          VECTOR currentQMV[3];
1782            memset(&Data, 0, sizeof(SearchData));
1783          Data.iEdgedWidth = pParam->edged_width;          Data.iEdgedWidth = pParam->edged_width;
1784          Data.currentMV = currentMV; Data.currentQMV = currentQMV;          Data.currentMV = currentMV; Data.currentQMV = currentQMV;
1785          Data.iMinSAD = &iMinSAD;          Data.iMinSAD = &iMinSAD;
1786          Data.lambda16 = lambda_vec16[frame->quant];          Data.lambda16 = lambda_vec16[frame->quant] + 2;
1787          Data.qpel = pParam->m_quarterpel;          Data.qpel = pParam->m_quarterpel;
1788            Data.rounding = 0;
1789    
1790          if((qimage = (uint8_t *) malloc(32 * pParam->edged_width)) == NULL)          if((qimage = (uint8_t *) malloc(32 * pParam->edged_width)) == NULL)
1791                  return; // allocate some mem for qpel interpolated blocks                  return; // allocate some mem for qpel interpolated blocks
# Line 2221  Line 1880 
1880                                  case MODE_DIRECT:                                  case MODE_DIRECT:
1881                                  case MODE_DIRECT_NO4V:                                  case MODE_DIRECT_NO4V:
1882                                          d_count++;                                          d_count++;
                                         break;  
1883                                  default:                                  default:
1884                                          break;                                          break;
1885                          }                          }
# Line 2252  Line 1910 
1910          int i, t;          int i, t;
1911          MainSearchFunc * MainSearchPtr;          MainSearchFunc * MainSearchPtr;
1912    
         Data->predMV = get_pmv2(pMBs, pParam->mb_width, 0, x, y, 0);  
         Data->predQMV = get_qpmv2(pMBs, pParam->mb_width, 0, x, y, 0);  
1913          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,
1914                                  pParam->width, pParam->height, Data->iFcode, pParam->m_quarterpel);                                  pParam->width, pParam->height, Data->iFcode - pParam->m_quarterpel);
1915    
1916          Data->Cur = pCur->y + (x + y * Data->iEdgedWidth) * 16;          Data->Cur = pCur->y + (x + y * Data->iEdgedWidth) * 16;
1917          Data->CurV = pCur->v + (x + y * (Data->iEdgedWidth/2)) * 8;          Data->CurV = pCur->v + (x + y * (Data->iEdgedWidth/2)) * 8;
# Line 2267  Line 1923 
1923          Data->RefHV = pRefHV + (x + Data->iEdgedWidth*y) * 16;          Data->RefHV = pRefHV + (x + Data->iEdgedWidth*y) * 16;
1924          Data->RefCV = pRef->v + (x + y * (Data->iEdgedWidth/2)) * 8;          Data->RefCV = pRef->v + (x + y * (Data->iEdgedWidth/2)) * 8;
1925          Data->RefCU = pRef->u + (x + y * (Data->iEdgedWidth/2)) * 8;          Data->RefCU = pRef->u + (x + y * (Data->iEdgedWidth/2)) * 8;
1926            Data->qpel_precision = 0;
1927    
1928          if (!(MotionFlags & PMV_HALFPEL16)) {          if (!(MotionFlags & PMV_HALFPEL16)) {
1929                  Data->min_dx = EVEN(Data->min_dx);                  Data->min_dx = EVEN(Data->min_dx);
# Line 2274  Line 1931 
1931                  Data->min_dy = EVEN(Data->min_dy);                  Data->min_dy = EVEN(Data->min_dy);
1932                  Data->max_dy = EVEN(Data->max_dy);                  Data->max_dy = EVEN(Data->max_dy);
1933          }          }
1934            if (pParam->m_quarterpel) Data->predMV = get_qpmv2(pMBs, pParam->mb_width, 0, x, y, 0);
1935            else Data->predMV = get_pmv2(pMBs, pParam->mb_width, 0, x, y, 0);
1936    
1937          for(i = 0; i < 5; i++) Data->iMinSAD[i] = MV_MAX_ERROR;          for(i = 0; i < 5; i++) Data->iMinSAD[i] = MV_MAX_ERROR;
1938    
1939          if (pMB->dquant != NO_CHANGE) inter4v = 0;          if (pMB->dquant != NO_CHANGE) inter4v = 0;
1940    
1941          if (inter4v || pParam->m_quarterpel || Data->chroma) CheckCandidate = CheckCandidate16;          if (inter4v || Data->chroma) CheckCandidate = CheckCandidate16;
1942          else CheckCandidate = CheckCandidate16no4v;          else CheckCandidate = CheckCandidate16no4v;
1943    
1944          pMB->mvs[0].x = EVEN(pMB->mvs[0].x);          pMB->mvs[0].x = EVEN(pMB->mvs[0].x);
# Line 2307  Line 1966 
1966    
1967          (*MainSearchPtr)(Data->currentMV->x, Data->currentMV->y, Data, 255);          (*MainSearchPtr)(Data->currentMV->x, Data->currentMV->y, Data, 255);
1968    
1969          if (MotionFlags & PMV_HALFPELREFINE16) HalfpelRefine(Data);          if (MotionFlags & PMV_HALFPELREFINE16) SubpelRefine(Data);
1970    
1971          for(i = 0; i < 5; i++) {          for(i = 0; i < 5; i++) {
1972                  Data->currentQMV[i].x = 2 * Data->currentMV[i].x; // initialize qpel vectors                  Data->currentQMV[i].x = 2 * Data->currentMV[i].x; // initialize qpel vectors
# Line 2315  Line 1974 
1974          }          }
1975    
1976          if((pParam->m_quarterpel) && (MotionFlags & PMV_QUARTERPELREFINE16)) {          if((pParam->m_quarterpel) && (MotionFlags & PMV_QUARTERPELREFINE16)) {
1977                  get_range(&Data->min_dx, &Data->max_dx, &Data->min_dy, &Data->max_dy, x, y, 16,                  get_range_qpel(&Data->min_dx, &Data->max_dx, &Data->min_dy, &Data->max_dy, x, y, 16,
1978                                  pParam->width, pParam->height, Data->iFcode, 0);                                  pParam->width, pParam->height, Data->iFcode);
1979                  CheckCandidate = CheckCandidate16_qpel;                  Data->qpel_precision = 1;
1980                  QuarterpelRefine(Data);                  SubpelRefine(Data);
1981          }          }
1982    
1983          if (inter4v) {          if (inter4v) {
# Line 2334  Line 1993 
1993                  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);
1994    
1995                  if (Data->chroma) {                  if (Data->chroma) {
1996                          int sum, dx, dy;                          int sumx, sumy, dx, dy;
1997    
1998                            if(pParam->m_quarterpel) {
1999                                    sumx= pMB->qmvs[0].x/2 + pMB->qmvs[1].x/2 + pMB->qmvs[2].x/2 + pMB->qmvs[3].x/2;
2000                                    sumy = pMB->qmvs[0].y/2 + pMB->qmvs[1].y/2 + pMB->qmvs[2].y/2 + pMB->qmvs[3].y/2;
2001                            } else {
2002                                    sumx = pMB->mvs[0].x + pMB->mvs[1].x + pMB->mvs[2].x + pMB->mvs[3].x;
2003                                    sumy = pMB->mvs[0].y + pMB->mvs[1].y + pMB->mvs[2].y + pMB->mvs[3].y;
2004                            }
2005                            dx = (sumx >> 3) + roundtab_76[sumx & 0xf];
2006                            dy = (sumy >> 3) + roundtab_76[sumy & 0xf];
2007    
                         if(pParam->m_quarterpel)  
                                 sum = (pMB->qmvs[0].y/2 + pMB->qmvs[1].y/2 + pMB->qmvs[2].y/2 + pMB->qmvs[3].y/2);  
                         else sum = pMB->mvs[0].y + pMB->mvs[1].y + pMB->mvs[2].y + pMB->mvs[3].y;  
                         dy = (sum ? SIGN(sum) *  
                                   (roundtab[ABS(sum) % 16] + (ABS(sum) / 16) * 2) : 0);  
   
                         if(pParam->m_quarterpel)  
                                 sum = (pMB->qmvs[0].x/2 + pMB->qmvs[1].x/2 + pMB->qmvs[2].x/2 + pMB->qmvs[3].x/2);  
                         else sum = pMB->mvs[0].x + pMB->mvs[1].x + pMB->mvs[2].x + pMB->mvs[3].x;  
                         dx = (sum ? SIGN(sum) *  
                                   (roundtab[ABS(sum) % 16] + (ABS(sum) / 16) * 2) : 0);  
2008                          Data->iMinSAD[1] += ChromaSAD(dx, dy, Data);                          Data->iMinSAD[1] += ChromaSAD(dx, dy, Data);
2009                  }                  }
2010          }          }
# Line 2366  Line 2024 
2024                          pMB->sad8[2] = pMB->sad8[3] =  Data->iMinSAD[0];                          pMB->sad8[2] = pMB->sad8[3] =  Data->iMinSAD[0];
2025    
2026                  if(pParam->m_quarterpel) {                  if(pParam->m_quarterpel) {
2027                          pMB->pmvs[0].x = Data->currentQMV[0].x - Data->predQMV.x;                          pMB->pmvs[0].x = Data->currentQMV[0].x - Data->predMV.x;
2028                          pMB->pmvs[0].y = Data->currentQMV[0].y - Data->predQMV.y;                          pMB->pmvs[0].y = Data->currentQMV[0].y - Data->predMV.y;
2029                  } else {                  } else {
2030                          pMB->pmvs[0].x = Data->currentMV[0].x - Data->predMV.x;                          pMB->pmvs[0].x = Data->currentMV[0].x - Data->predMV.x;
2031                          pMB->pmvs[0].y = Data->currentMV[0].y - Data->predMV.y;                          pMB->pmvs[0].y = Data->currentMV[0].y - Data->predMV.y;
# Line 2473  Line 2131 
2131                          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
2132    
2133          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,
2134                                  pParam->width, pParam->height, Data->iFcode, pParam->m_quarterpel);                                  pParam->width, pParam->height, Data->iFcode - pParam->m_quarterpel);
2135    
2136          Data->Cur = pCur + (x + y * pParam->edged_width) * 16;          Data->Cur = pCur + (x + y * pParam->edged_width) * 16;
2137          Data->Ref = pRef + (x + y * pParam->edged_width) * 16;          Data->Ref = pRef + (x + y * pParam->edged_width) * 16;
# Line 2507  Line 2165 
2165  }  }
2166    
2167  #define INTRA_THRESH    1350  #define INTRA_THRESH    1350
2168  #define INTER_THRESH    900  #define INTER_THRESH    1200
2169    
2170    
2171  int  int
# Line 2540  Line 2198 
2198                          IntraThresh -= (IntraThresh * (maxIntra - 5*(maxIntra - intraCount)))/maxIntra;                          IntraThresh -= (IntraThresh * (maxIntra - 5*(maxIntra - intraCount)))/maxIntra;
2199    
2200    
2201          InterThresh += 300 * (1 - bCount);          InterThresh += 400 * (1 - bCount);
2202          if (InterThresh < 200) InterThresh = 200;          if (InterThresh < 200) InterThresh = 200;
2203    
2204          if (sadInit) (*sadInit) ();          if (sadInit) (*sadInit) ();
# Line 2571  Line 2229 
2229    
2230  }  }
2231    
 int  
 FindFcode(      const MBParam * const pParam,  
                         const FRAMEINFO * const current)  
 {  
         uint32_t x, y;  
         int max = 0, min = 0, i;  
   
         for (y = 0; y < pParam->mb_height; y++) {  
                 for (x = 0; x < pParam->mb_width; x++) {  
   
                         MACROBLOCK *pMB = &current->mbs[x + y * pParam->mb_width];  
                         for(i = 0; i < (pMB->mode == MODE_INTER4V ? 4:1); i++) {  
                                 if (pMB->mvs[i].x > max) max = pMB->mvs[i].x;  
                                 if (pMB->mvs[i].y > max) max = pMB->mvs[i].y;  
   
                                 if (pMB->mvs[i].x < min) min = pMB->mvs[i].x;  
                                 if (pMB->mvs[i].y < min) min = pMB->mvs[i].y;  
                         }  
                 }  
         }  
   
         min = -min;  
         max += 1;  
         if (min > max) max = min;  
         if (pParam->m_quarterpel) max *= 2;  
   
         for (i = 1; (max > 32 << (i - 1)); i++);  
         return i;  
 }  
   
2232  static void  static void
2233  CheckGMC(int x, int y, const int dir, int * iDirection,  CheckGMC(int x, int y, const int dir, int * iDirection,
2234                  const MACROBLOCK * const pMBs, uint32_t * bestcount, VECTOR * GMC,                  const MACROBLOCK * const pMBs, uint32_t * bestcount, VECTOR * GMC,

Legend:
Removed from v.662  
changed lines
  Added in v.704

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