[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 661, Tue Nov 19 13:43:00 2002 UTC revision 769, Sat Jan 11 14:59:24 2003 UTC
# Line 31  Line 31 
31  #include <assert.h>  #include <assert.h>
32  #include <stdio.h>  #include <stdio.h>
33  #include <stdlib.h>  #include <stdlib.h>
34    #include <string.h>     // memcpy
35    #include <math.h>       // lrint
36    
37  #include "../encoder.h"  #include "../encoder.h"
38  #include "../utils/mbfunctions.h"  #include "../utils/mbfunctions.h"
# Line 47  Line 49 
49  #define FINAL_SKIP_THRESH       (50)  #define FINAL_SKIP_THRESH       (50)
50  #define MAX_SAD00_FOR_SKIP      (20)  #define MAX_SAD00_FOR_SKIP      (20)
51  #define MAX_CHROMA_SAD_FOR_SKIP (22)  #define MAX_CHROMA_SAD_FOR_SKIP (22)
 #define SKIP_THRESH_B (25)  
52    
53  #define CHECK_CANDIDATE(X,Y,D) { \  #define CHECK_CANDIDATE(X,Y,D) { \
54  (*CheckCandidate)((const int)(X),(const int)(Y), (D), &iDirection, data ); }  (*CheckCandidate)((const int)(X),(const int)(Y), (D), &iDirection, data ); }
55    
56  #define GET_REFERENCE(X, Y, REF) { \  static __inline uint32_t
57          switch ( (((X)&1)<<1) + ((Y)&1) ) \  d_mv_bits(int x, int y, const VECTOR pred, const uint32_t iFcode, const int qpel, const int rrv)
         { \  
                 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; \  
         } \  
 }  
   
   
 #define iDiamondSize 2  
   
 static __inline int  
 d_mv_bits(int x, int y, const uint32_t iFcode)  
58  {  {
59          int xb, yb;          int xb, yb;
60            x += x * qpel; y += y * qpel;
61            if (rrv) { x = RRV_MV_SCALEDOWN(x); y = RRV_MV_SCALEDOWN(y); }
62            x -= pred.x;
63            y -= pred.y;
64    
65          if (x == 0) xb = 1;          if (x) {
66          else {                  x = ABS(x);
                 if (x < 0) x = -x;  
67                  x += (1 << (iFcode - 1)) - 1;                  x += (1 << (iFcode - 1)) - 1;
68                  x >>= (iFcode - 1);                  x >>= (iFcode - 1);
69                  if (x > 32) x = 32;                  if (x > 32) x = 32;
70                  xb = mvtab[x] + iFcode;                  xb = mvtab[x] + iFcode;
71          }          } else xb = 1;
72    
73          if (y == 0) yb = 1;          if (y) {
74          else {                  y = ABS(y);
                 if (y < 0) y = -y;  
75                  y += (1 << (iFcode - 1)) - 1;                  y += (1 << (iFcode - 1)) - 1;
76                  y >>= (iFcode - 1);                  y >>= (iFcode - 1);
77                  if (y > 32) y = 32;                  if (y > 32) y = 32;
78                  yb = mvtab[y] + iFcode;                  yb = mvtab[y] + iFcode;
79          }          } else yb = 1;
80          return xb + yb;          return xb + yb;
81  }  }
82    
# Line 104  Line 84 
84  ChromaSAD(int dx, int dy, const SearchData * const data)  ChromaSAD(int dx, int dy, const SearchData * const data)
85  {  {
86          int sad;          int sad;
87          dx = (dx >> 1) + roundtab_79[dx & 0x3];          const uint32_t stride = data->iEdgedWidth/2;
88          dy = (dy >> 1) + roundtab_79[dy & 0x3];  
89            if (dx == data->temp[5] && dy == data->temp[6]) return data->temp[7]; //it has been checked recently
90            data->temp[5] = dx; data->temp[6] = dy; // backup
91    
92          switch (((dx & 1) << 1) + (dy & 1))     { // ((dx%2)?2:0)+((dy%2)?1:0)          switch (((dx & 1) << 1) | (dy & 1))     {
93                  case 0:                  case 0:
94                          sad = sad8(data->CurU, data->RefCU + (dy/2) * (data->iEdgedWidth/2) + dx/2, data->iEdgedWidth/2);                          dx = dx / 2; dy = dy / 2;
95                          sad += sad8(data->CurV, data->RefCV + (dy/2) * (data->iEdgedWidth/2) + dx/2, data->iEdgedWidth/2);                          sad = sad8(data->CurU, data->RefCU + dy * stride + dx, stride);
96                            sad += sad8(data->CurV, data->RefCV + dy * stride + dx, stride);
97                          break;                          break;
98                  case 1:                  case 1:
99                          dx = dx / 2; dy = (dy - 1) / 2;                          dx = dx / 2; dy = (dy - 1) / 2;
100                          sad = sad8bi(data->CurU, data->RefCU + dy * (data->iEdgedWidth/2) + dx, data->RefCU + (dy+1) * (data->iEdgedWidth/2) + dx, data->iEdgedWidth/2);                          sad = sad8bi(data->CurU, data->RefCU + dy * stride + dx, data->RefCU + (dy+1) * stride + dx, stride);
101                          sad += sad8bi(data->CurV, data->RefCV + dy * (data->iEdgedWidth/2) + dx, data->RefCV + (dy+1) * (data->iEdgedWidth/2) + dx, data->iEdgedWidth/2);                          sad += sad8bi(data->CurV, data->RefCV + dy * stride + dx, data->RefCV + (dy+1) * stride + dx, stride);
102                          break;                          break;
103                  case 2:                  case 2:
104                          dx = (dx - 1) / 2; dy = dy / 2;                          dx = (dx - 1) / 2; dy = dy / 2;
105                          sad = sad8bi(data->CurU, data->RefCU + dy * (data->iEdgedWidth/2) + dx, data->RefCU + dy * (data->iEdgedWidth/2) + dx+1, data->iEdgedWidth/2);                          sad = sad8bi(data->CurU, data->RefCU + dy * stride + dx, data->RefCU + dy * stride + dx+1, stride);
106                          sad += sad8bi(data->CurV, data->RefCV + dy * (data->iEdgedWidth/2) + dx, data->RefCV + dy * (data->iEdgedWidth/2) + dx+1, data->iEdgedWidth/2);                          sad += sad8bi(data->CurV, data->RefCV + dy * stride + dx, data->RefCV + dy * stride + dx+1, stride);
107                          break;                          break;
108                  default:                  default:
109                          dx = (dx - 1) / 2; dy = (dy - 1) / 2;                          dx = (dx - 1) / 2; dy = (dy - 1) / 2;
110                          interpolate8x8_halfpel_hv(data->RefQ,                          interpolate8x8_halfpel_hv(data->RefQ, data->RefCU + dy * stride + dx, stride, data->rounding);
111                                                                           data->RefCU + dy * (data->iEdgedWidth/2) + dx, data->iEdgedWidth/2,                          sad = sad8(data->CurU, data->RefQ, stride);
112                                                                           data->rounding);  
113                          sad = sad8(data->CurU, data->RefQ, data->iEdgedWidth/2);                          interpolate8x8_halfpel_hv(data->RefQ, data->RefCV + dy * stride + dx, stride, data->rounding);
114                          interpolate8x8_halfpel_hv(data->RefQ,                          sad += sad8(data->CurV, data->RefQ, stride);
                                                                          data->RefCV + dy * (data->iEdgedWidth/2) + dx, data->iEdgedWidth/2,  
                                                                          data->rounding);  
                         sad += sad8(data->CurV, data->RefQ, data->iEdgedWidth/2);  
115                          break;                          break;
116          }          }
117            data->temp[7] = sad; //backup, part 2
118          return sad;          return sad;
119  }  }
120    
121    static __inline const uint8_t *
122  /* CHECK_CANDIATE FUNCTIONS START */  GetReferenceB(const int x, const int y, const uint32_t dir, const SearchData * const data)
   
   
 static void  
 CheckCandidate16(const int x, const int y, const int Direction, int * const dir, const SearchData * const data)  
123  {  {
124          int t;  //      dir : 0 = forward, 1 = backward
125          const uint8_t * Reference;          switch ( (dir << 2) | ((x&1)<<1) | (y&1) ) {
126                    case 0 : return data->Ref + x/2 + (y/2)*(data->iEdgedWidth);
127          if (( x > data->max_dx) || ( x < data->min_dx)                  case 1 : return data->RefV + x/2 + ((y-1)/2)*(data->iEdgedWidth);
128                  || ( y > data->max_dy) || (y < data->min_dy)) return;                  case 2 : return data->RefH + (x-1)/2 + (y/2)*(data->iEdgedWidth);
129                    case 3 : return data->RefHV + (x-1)/2 + ((y-1)/2)*(data->iEdgedWidth);
130          switch ( ((x&1)<<1) + (y&1) ) {                  case 4 : return data->bRef + x/2 + (y/2)*(data->iEdgedWidth);
131                  case 0 : Reference = data->Ref + x/2 + (y/2)*(data->iEdgedWidth); break;                  case 5 : return data->bRefV + x/2 + ((y-1)/2)*(data->iEdgedWidth);
132                  case 1 : Reference = data->RefV + x/2 + ((y-1)/2)*(data->iEdgedWidth); break;                  case 6 : return data->bRefH + (x-1)/2 + (y/2)*(data->iEdgedWidth);
133                  case 2 : Reference = data->RefH + (x-1)/2 + (y/2)*(data->iEdgedWidth); break;                  default : return data->bRefHV + (x-1)/2 + ((y-1)/2)*(data->iEdgedWidth);
                 default : Reference = data->RefHV + (x-1)/2 + ((y-1)/2)*(data->iEdgedWidth); break;  
134          }          }
   
         data->temp[0] = sad16v(data->Cur, Reference, data->iEdgedWidth, data->temp + 1);  
   
         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);  
   
         data->temp[0] += (data->lambda16 * t * data->temp[0])/1000;  
         data->temp[1] += (data->lambda8 * t * (data->temp[1] + NEIGH_8X8_BIAS))/100;  
   
         if (data->chroma) data->temp[0] += ChromaSAD(x, y, data);  
   
         if (data->temp[0] < data->iMinSAD[0]) {  
                 data->iMinSAD[0] = data->temp[0];  
                 data->currentMV[0].x = x; data->currentMV[0].y = y;  
                 *dir = Direction; }  
   
         if (data->temp[1] < data->iMinSAD[1]) {  
                 data->iMinSAD[1] = data->temp[1]; data->currentMV[1].x = x; data->currentMV[1].y = y; }  
         if (data->temp[2] < data->iMinSAD[2]) {  
                 data->iMinSAD[2] = data->temp[2]; data->currentMV[2].x = x; data->currentMV[2].y = y; }  
         if (data->temp[3] < data->iMinSAD[3]) {  
                 data->iMinSAD[3] = data->temp[3]; data->currentMV[3].x = x; data->currentMV[3].y = y; }  
         if (data->temp[4] < data->iMinSAD[4]) {  
                 data->iMinSAD[4] = data->temp[4]; data->currentMV[4].x = x; data->currentMV[4].y = y; }  
   
135  }  }
136    
137  static void  // this is a simpler copy of GetReferenceB, but as it's __inline anyway, we can keep the two separate
138  CheckCandidate16no4v(const int x, const int y, const int Direction, int * const dir, const SearchData * const data)  static __inline const uint8_t *
139  {  GetReference(const int x, const int y, const SearchData * const data)
         int32_t sad;  
         const uint8_t * Reference;  
   
         if (( x > data->max_dx) || ( x < data->min_dx)  
                 || ( y > data->max_dy) || (y < data->min_dy)) return;  
   
         switch ( ((x&1)<<1) + (y&1) )  
140          {          {
141                  case 0 : Reference = data->Ref + x/2 + (y/2)*(data->iEdgedWidth); break;          switch ( ((x&1)<<1) | (y&1) ) {
142                  case 1 : Reference = data->RefV + x/2 + ((y-1)/2)*(data->iEdgedWidth); break;                  case 0 : return data->Ref + x/2 + (y/2)*(data->iEdgedWidth);
143                  case 2 : Reference = data->RefH + (x-1)/2 + (y/2)*(data->iEdgedWidth); break;                  case 1 : return data->RefV + x/2 + ((y-1)/2)*(data->iEdgedWidth);
144                  default : Reference = data->RefHV + (x-1)/2 + ((y-1)/2)*(data->iEdgedWidth); break;                  case 2 : return data->RefH + (x-1)/2 + (y/2)*(data->iEdgedWidth);
145                    default : return data->RefHV + (x-1)/2 + ((y-1)/2)*(data->iEdgedWidth);
146          }          }
   
         sad = sad16(data->Cur, Reference, data->iEdgedWidth, MV_MAX_ERROR);  
         if (data->qpel) //only to be used in b-frames' ME  
                 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; }  
147  }  }
148    
149  static void  static uint8_t *
150  CheckCandidate16_qpel(const int x, const int y, const int Direction, int * const dir, const SearchData * const data)  Interpolate8x8qpel(const int x, const int y, const uint32_t block, const uint32_t 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!  
151  {  {
152          int t;  // create or find a qpel-precision reference picture; return pointer to it
153          uint8_t * Reference = (uint8_t *)data->RefQ;          uint8_t * Reference = data->RefQ + 16*dir;
154            const uint32_t iEdgedWidth = data->iEdgedWidth;
155            const uint32_t rounding = data->rounding;
156            const int halfpel_x = x/2;
157            const int halfpel_y = y/2;
158          const uint8_t *ref1, *ref2, *ref3, *ref4;          const uint8_t *ref1, *ref2, *ref3, *ref4;
         VECTOR halfpelMV = *(data->currentMV);  
159    
160          int32_t iEdgedWidth = data->iEdgedWidth;          ref1 = GetReferenceB(halfpel_x, halfpel_y, dir, data);
161          uint32_t rounding = data->rounding;          ref1 += 8 * (block&1) + 8 * (block>>1) * iEdgedWidth;
162            switch( ((x&1)<<1) + (y&1) ) {
163          if (( x > data->max_dx) || ( x < data->min_dx)          case 0: // pure halfpel position
164                  || ( y > data->max_dy) || (y < data->min_dy)) return;                  return (uint8_t *) ref1;
   
         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);  
165                  break;                  break;
166    
167          case 1: // x halfpel, y qpel - top or bottom during qpel refinement          case 1: // x halfpel, y qpel - top or bottom during qpel refinement
168                  GET_REFERENCE(halfpelMV.x, y - halfpelMV.y, ref2);                  ref2 = GetReferenceB(halfpel_x, y - halfpel_y, dir, data);
169                  interpolate8x8_avg2(Reference, ref1, ref2, iEdgedWidth, rounding);                  ref2 += 8 * (block&1) + 8 * (block>>1) * iEdgedWidth;
170                  interpolate8x8_avg2(Reference+8, ref1+8, ref2+8, iEdgedWidth, rounding);                  interpolate8x8_avg2(Reference, ref1, ref2, iEdgedWidth, rounding, 8);
                 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);  
171                  break;                  break;
172    
173          case 2: // x qpel, y halfpel - left or right during qpel refinement          case 2: // x qpel, y halfpel - left or right during qpel refinement
174                  GET_REFERENCE(x - halfpelMV.x, halfpelMV.y, ref2);                  ref2 = GetReferenceB(x - halfpel_x, halfpel_y, dir, data);
175                  interpolate8x8_avg2(Reference, ref1, ref2, iEdgedWidth, rounding);                  ref2 += 8 * (block&1) + 8 * (block>>1) * iEdgedWidth;
176                  interpolate8x8_avg2(Reference+8, ref1+8, ref2+8, iEdgedWidth, rounding);                  interpolate8x8_avg2(Reference, ref1, ref2, iEdgedWidth, rounding, 8);
                 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);  
177                  break;                  break;
178    
179          default: // x and y in qpel resolution - the "corners" (top left/right and          default: // x and y in qpel resolution - the "corners" (top left/right and
180                           // bottom left/right) during qpel refinement                           // bottom left/right) during qpel refinement
181                  GET_REFERENCE(halfpelMV.x, y - halfpelMV.y, ref2);                  ref2 = GetReferenceB(halfpel_x, y - halfpel_y, dir, data);
182                  GET_REFERENCE(x - halfpelMV.x, halfpelMV.y, ref3);                  ref3 = GetReferenceB(x - halfpel_x, halfpel_y, dir, data);
183                  GET_REFERENCE(x - halfpelMV.x, y - halfpelMV.y, ref4);                  ref4 = GetReferenceB(x - halfpel_x, y - halfpel_y, dir, data);
184                    ref2 += 8 * (block&1) + 8 * (block>>1) * iEdgedWidth;
185                    ref3 += 8 * (block&1) + 8 * (block>>1) * iEdgedWidth;
186                    ref4 += 8 * (block&1) + 8 * (block>>1) * iEdgedWidth;
187                  interpolate8x8_avg4(Reference, ref1, ref2, ref3, ref4, iEdgedWidth, rounding);                  interpolate8x8_avg4(Reference, ref1, ref2, ref3, ref4, iEdgedWidth, rounding);
                 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);  
188                  break;                  break;
189          }          }
190            return Reference;
         data->temp[0] = sad16v(data->Cur, Reference, data->iEdgedWidth, data->temp+1);  
   
         t = d_mv_bits(x - data->predQMV.x, y - data->predQMV.y, data->iFcode);  
         data->temp[0] += (data->lambda16 * t * data->temp[0])/1000;  
         data->temp[1] += (data->lambda8 * t * (data->temp[1] + NEIGH_8X8_BIAS))/100;  
   
         if (data->chroma)  
                 data->temp[0] += ChromaSAD(x/2, y/2, data);  
   
         if (data->temp[0] < data->iMinSAD[0]) {  
                 data->iMinSAD[0] = data->temp[0];  
                 data->currentQMV[0].x = x; data->currentQMV[0].y = y;  
         /*      *dir = Direction;*/ }  
   
         if (data->temp[1] < data->iMinSAD[1]) {  
                 data->iMinSAD[1] = data->temp[1]; data->currentQMV[1].x = x; data->currentQMV[1].y = y; }  
         if (data->temp[2] < data->iMinSAD[2]) {  
                 data->iMinSAD[2] = data->temp[2]; data->currentQMV[2].x = x; data->currentQMV[2].y = y; }  
         if (data->temp[3] < data->iMinSAD[3]) {  
                 data->iMinSAD[3] = data->temp[3]; data->currentQMV[3].x = x; data->currentQMV[3].y = y; }  
         if (data->temp[4] < data->iMinSAD[4]) {  
                 data->iMinSAD[4] = data->temp[4]; data->currentQMV[4].x = x; data->currentQMV[4].y = y; }  
191  }  }
192    
193  static void  static uint8_t *
194  CheckCandidate16no4v_qpel(const int x, const int y, const int Direction, int * const dir, const SearchData * const data)  Interpolate16x16qpel(const int x, const int y, const uint32_t 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  
195  {  {
196          uint8_t * Reference = (uint8_t *)data->RefQ;  // create or find a qpel-precision reference picture; return pointer to it
197            uint8_t * Reference = data->RefQ + 16*dir;
198            const uint32_t iEdgedWidth = data->iEdgedWidth;
199            const uint32_t rounding = data->rounding;
200            const int halfpel_x = x/2;
201            const int halfpel_y = y/2;
202          const uint8_t *ref1, *ref2, *ref3, *ref4;          const uint8_t *ref1, *ref2, *ref3, *ref4;
         VECTOR halfpelMV = *(data->currentMV);  
   
         int32_t iEdgedWidth = data->iEdgedWidth;  
         int32_t sad;  
   
         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;  
203    
204            ref1 = GetReferenceB(halfpel_x, halfpel_y, dir, data);
205            switch( ((x&1)<<1) + (y&1) ) {
206            case 0: // pure halfpel position
207                    return (uint8_t *) ref1;
208          case 1: // x halfpel, y qpel - top or bottom during qpel refinement          case 1: // x halfpel, y qpel - top or bottom during qpel refinement
209                  GET_REFERENCE(halfpelMV.x, y - halfpelMV.y, ref2);                  ref2 = GetReferenceB(halfpel_x, y - halfpel_y, dir, data);
210                  interpolate8x8_avg2(Reference, ref1, ref2, iEdgedWidth, 0);                  interpolate8x8_avg2(Reference, ref1, ref2, iEdgedWidth, rounding, 8);
211                  interpolate8x8_avg2(Reference+8, ref1+8, ref2+8, iEdgedWidth, 0);                  interpolate8x8_avg2(Reference+8, ref1+8, ref2+8, iEdgedWidth, rounding, 8);
212                  interpolate8x8_avg2(Reference+8*iEdgedWidth, ref1+8*iEdgedWidth, ref2+8*iEdgedWidth, iEdgedWidth, 0);                  interpolate8x8_avg2(Reference+8*iEdgedWidth, ref1+8*iEdgedWidth, ref2+8*iEdgedWidth, iEdgedWidth, rounding, 8);
213                  interpolate8x8_avg2(Reference+8*iEdgedWidth+8, ref1+8*iEdgedWidth+8, ref2+8*iEdgedWidth+8, iEdgedWidth, 0);                  interpolate8x8_avg2(Reference+8*iEdgedWidth+8, ref1+8*iEdgedWidth+8, ref2+8*iEdgedWidth+8, iEdgedWidth, rounding, 8);
214                  break;                  break;
215    
216          case 2: // x qpel, y halfpel - left or right during qpel refinement          case 2: // x qpel, y halfpel - left or right during qpel refinement
217                  GET_REFERENCE(x - halfpelMV.x, halfpelMV.y, ref2);                  ref2 = GetReferenceB(x - halfpel_x, halfpel_y, dir, data);
218                  interpolate8x8_avg2(Reference, ref1, ref2, iEdgedWidth, 0);                  interpolate8x8_avg2(Reference, ref1, ref2, iEdgedWidth, rounding, 8);
219                  interpolate8x8_avg2(Reference+8, ref1+8, ref2+8, iEdgedWidth, 0);                  interpolate8x8_avg2(Reference+8, ref1+8, ref2+8, iEdgedWidth, rounding, 8);
220                  interpolate8x8_avg2(Reference+8*iEdgedWidth, ref1+8*iEdgedWidth, ref2+8*iEdgedWidth, iEdgedWidth, 0);                  interpolate8x8_avg2(Reference+8*iEdgedWidth, ref1+8*iEdgedWidth, ref2+8*iEdgedWidth, iEdgedWidth, rounding, 8);
221                  interpolate8x8_avg2(Reference+8*iEdgedWidth+8, ref1+8*iEdgedWidth+8, ref2+8*iEdgedWidth+8, iEdgedWidth, 0);                  interpolate8x8_avg2(Reference+8*iEdgedWidth+8, ref1+8*iEdgedWidth+8, ref2+8*iEdgedWidth+8, iEdgedWidth, rounding, 8);
222                  break;                  break;
223    
224          default: // x and y in qpel resolution - the "corners" (top left/right and          default: // x and y in qpel resolution - the "corners" (top left/right and
225                           // bottom left/right) during qpel refinement                           // bottom left/right) during qpel refinement
226                  GET_REFERENCE(halfpelMV.x, y - halfpelMV.y, ref2);                  ref2 = GetReferenceB(halfpel_x, y - halfpel_y, dir, data);
227                  GET_REFERENCE(x - halfpelMV.x, halfpelMV.y, ref3);                  ref3 = GetReferenceB(x - halfpel_x, halfpel_y, dir, data);
228                  GET_REFERENCE(x - halfpelMV.x, y - halfpelMV.y, ref4);                  ref4 = GetReferenceB(x - halfpel_x, y - halfpel_y, dir, data);
229                    interpolate8x8_avg4(Reference, ref1, ref2, ref3, ref4, iEdgedWidth, rounding);
230                  interpolate8x8_avg4(Reference, ref1, ref2, ref3, ref4, iEdgedWidth, 0);                  interpolate8x8_avg4(Reference+8, ref1+8, ref2+8, ref3+8, ref4+8, iEdgedWidth, rounding);
231                  interpolate8x8_avg4(Reference+8, ref1+8, ref2+8, ref3+8, ref4+8, iEdgedWidth, 0);                  interpolate8x8_avg4(Reference+8*iEdgedWidth, ref1+8*iEdgedWidth, ref2+8*iEdgedWidth, ref3+8*iEdgedWidth, ref4+8*iEdgedWidth, iEdgedWidth, rounding);
232                  interpolate8x8_avg4(Reference+8*iEdgedWidth, ref1+8*iEdgedWidth, ref2+8*iEdgedWidth, ref3+8*iEdgedWidth, ref4+8*iEdgedWidth, iEdgedWidth, 0);                  interpolate8x8_avg4(Reference+8*iEdgedWidth+8, ref1+8*iEdgedWidth+8, ref2+8*iEdgedWidth+8, ref3+8*iEdgedWidth+8, ref4+8*iEdgedWidth+8, 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, 0);  
233                  break;                  break;
234          }          }
235            return Reference;
         sad = sad16(data->Cur, Reference, data->iEdgedWidth, 256*4096);  
         sad += (data->lambda16 * d_mv_bits(x - data->predMV.x, y - data->predMV.y, data->iFcode) * sad)/1000;  
   
         if (sad < data->iMinSAD[0]) {  
                 data->iMinSAD[0] = sad;  
                 data->currentQMV[0].x = x; data->currentQMV[0].y = y;  
         /*      *dir = Direction;*/ }  
 }  
   
 static void  
 CheckCandidate16no4vI(const int x, const int y, const int Direction, int * const dir, const SearchData * const data)  
 {  
 // maximum speed - for P/B/I decision  
         int32_t sad;  
   
         if (( x > data->max_dx) || ( x < data->min_dx)  
                 || ( y > data->max_dy) || (y < data->min_dy)) return;  
   
         sad = sad16(data->Cur, data->Ref + x/2 + (y/2)*(data->iEdgedWidth),  
                                         data->iEdgedWidth, 256*4096);  
   
         if (sad < *(data->iMinSAD)) {  
                 *(data->iMinSAD) = sad;  
                 data->currentMV[0].x = x; data->currentMV[0].y = y;  
                 *dir = Direction; }  
236  }  }
237    
238    /* CHECK_CANDIATE FUNCTIONS START */
239    
240  static void  static void
241  CheckCandidateInt(const int xf, const int yf, 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)
242  {  {
243          int32_t sad;          int t, xc, yc;
244          const int xb = data->currentMV[1].x;          const uint8_t * Reference;
245          const int yb = data->currentMV[1].y;          VECTOR * current;
         const uint8_t *ReferenceF, *ReferenceB;  
246    
247          if (( xf > data->max_dx) || ( xf < data->min_dx)          if ( (x > data->max_dx) | (x < data->min_dx)
248                  || ( yf > data->max_dy) || (yf < data->min_dy)) return;                  | (y > data->max_dy) | (y < data->min_dy) ) return;
249    
250          switch ( ((xf&1)<<1) + (yf&1) ) {          if (data->qpel_precision) { // x and y are in 1/4 precision
251                  case 0 : ReferenceF = data->Ref + xf/2 + (yf/2)*(data->iEdgedWidth); break;                  Reference = Interpolate16x16qpel(x, y, 0, data);
252                  case 1 : ReferenceF = data->RefV + xf/2 + ((yf-1)/2)*(data->iEdgedWidth); break;                  xc = x/2; yc = y/2; //for chroma sad
253                  case 2 : ReferenceF = data->RefH + (xf-1)/2 + (yf/2)*(data->iEdgedWidth); break;                  current = data->currentQMV;
254                  default : ReferenceF = data->RefHV + (xf-1)/2 + ((yf-1)/2)*(data->iEdgedWidth); break;          } else {
255                    Reference = GetReference(x, y, data);
256                    current = data->currentMV;
257                    xc = x; yc = y;
258          }          }
259            t = d_mv_bits(x, y, data->predMV, data->iFcode, data->qpel^data->qpel_precision, 0);
260    
261          switch ( ((xb&1)<<1) + (yb&1) ) {          data->temp[0] = sad16v(data->Cur, Reference, data->iEdgedWidth, data->temp + 1);
                 case 0 : ReferenceB = data->bRef + xb/2 + (yb/2)*(data->iEdgedWidth); break;  
                 case 1 : ReferenceB = data->bRefV + xb/2 + ((yb-1)/2)*(data->iEdgedWidth); break;  
                 case 2 : ReferenceB = data->bRefH + (xb-1)/2 + (yb/2)*(data->iEdgedWidth); break;  
                 default : ReferenceB = data->bRefHV + (xb-1)/2 + ((yb-1)/2)*(data->iEdgedWidth); break;  
         }  
262    
263          sad = sad16bi(data->Cur, ReferenceF, ReferenceB, data->iEdgedWidth);          data->temp[0] += (data->lambda16 * t * data->temp[0])>>10;
264            data->temp[1] += (data->lambda8 * t * (data->temp[1] + NEIGH_8X8_BIAS))>>10;
265    
266          if (data->qpel)          if (data->chroma) data->temp[0] += ChromaSAD((xc >> 1) + roundtab_79[xc & 0x3],
267                  sad += (data->lambda16 *                                                                                                          (yc >> 1) + roundtab_79[yc & 0x3], data);
                         ( 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)) * sad)/1000;  
         else  
                 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;  
268    
269          if (sad < *(data->iMinSAD)) {          if (data->temp[0] < data->iMinSAD[0]) {
270                  *(data->iMinSAD) = sad;                  data->iMinSAD[0] = data->temp[0];
271                  data->currentMV->x = xf; data->currentMV->y = yf;                  current[0].x = x; current[0].y = y;
272                  *dir = Direction; }                  *dir = Direction; }
 }  
273    
274            if (data->temp[1] < data->iMinSAD[1]) {
275                    data->iMinSAD[1] = data->temp[1]; current[1].x = x; current[1].y= y; }
276            if (data->temp[2] < data->iMinSAD[2]) {
277                    data->iMinSAD[2] = data->temp[2]; current[2].x = x; current[2].y = y; }
278            if (data->temp[3] < data->iMinSAD[3]) {
279                    data->iMinSAD[3] = data->temp[3]; current[3].x = x; current[3].y = y; }
280            if (data->temp[4] < data->iMinSAD[4]) {
281                    data->iMinSAD[4] = data->temp[4]; current[4].x = x; current[4].y = y; }
282    
283    }
284    
285  static void  static void
286  CheckCandidateInt_qpel(const int xf, const int yf, 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)
287  {  {
288  // CheckCandidateInt variant which expects x and y in quarter pixel resolution          uint32_t t;
289            const uint8_t * Reference;
290    
291          int32_t sad;          if ( (!(x&1) && x !=0) | (!(y&1) && y !=0) || //non-zero integer value
292          const int xb = data->currentQMV[1].x;                  (x > data->max_dx) | (x < data->min_dx)
293          const int yb = data->currentQMV[1].y;                  | (y > data->max_dy) | (y < data->min_dy) ) return;
         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;  
294    
295          if (( xf > data->max_dx) || ( xf < data->min_dx)          Reference = GetReference(x, y, data);
296                  || ( yf > data->max_dy) || (yf < data->min_dy)) return;          t = d_mv_bits(x, y, data->predMV, data->iFcode, 0, 1);
297    
298          halfpelMV.x = xf/2; //forward first          data->temp[0] = sad32v_c(data->Cur, Reference, data->iEdgedWidth, data->temp + 1);
         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;  
299    
300          case 1: // x halfpel, y qpel - top or bottom during qpel refinement          data->temp[0] += (data->lambda16 * t * data->temp[0]) >> 10;
301                  GET_REFERENCE(halfpelMV.x, yf - halfpelMV.y, ref2);          data->temp[1] += (data->lambda8 * t * (data->temp[1] + NEIGH_8X8_BIAS))>>10;
                 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;  
302    
303          case 2: // x qpel, y halfpel - left or right during qpel refinement          if (data->temp[0] < data->iMinSAD[0]) {
304                  GET_REFERENCE(xf - halfpelMV.x, halfpelMV.y, ref2);                  data->iMinSAD[0] = data->temp[0];
305                  interpolate8x8_avg2(ReferenceF, ref1, ref2, iEdgedWidth, 0);                  data->currentMV[0].x = x; data->currentMV[0].y = y;
306                  interpolate8x8_avg2(ReferenceF+8, ref1+8, ref2+8, iEdgedWidth, 0);                  *dir = Direction; }
                 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);  
307    
308                  interpolate8x8_avg4(ReferenceF, ref1, ref2, ref3, ref4, iEdgedWidth, 0);          if (data->temp[1] < data->iMinSAD[1]) {
309                  interpolate8x8_avg4(ReferenceF+8, ref1+8, ref2+8, ref3+8, ref4+8, iEdgedWidth, 0);                  data->iMinSAD[1] = data->temp[1]; data->currentMV[1].x = x; data->currentMV[1].y = y; }
310                  interpolate8x8_avg4(ReferenceF+8*iEdgedWidth, ref1+8*iEdgedWidth, ref2+8*iEdgedWidth, ref3+8*iEdgedWidth, ref4+8*iEdgedWidth, iEdgedWidth, 0);          if (data->temp[2] < data->iMinSAD[2]) {
311                  interpolate8x8_avg4(ReferenceF+8*iEdgedWidth+8, ref1+8*iEdgedWidth+8, ref2+8*iEdgedWidth+8, ref3+8*iEdgedWidth+8, ref4+8*iEdgedWidth+8, iEdgedWidth, 0);                  data->iMinSAD[2] = data->temp[2]; data->currentMV[2].x = x; data->currentMV[2].y = y; }
312                  break;          if (data->temp[3] < data->iMinSAD[3]) {
313                    data->iMinSAD[3] = data->temp[3]; data->currentMV[3].x = x; data->currentMV[3].y = y; }
314            if (data->temp[4] < data->iMinSAD[4]) {
315                    data->iMinSAD[4] = data->temp[4]; data->currentMV[4].x = x; data->currentMV[4].y = y; }
316          }          }
317    
318          halfpelMV.x = xb/2; //backward  static void
319          halfpelMV.y = yb/2;  CheckCandidate16no4v(const int x, const int y, const int Direction, int * const dir, const SearchData * const data)
         GET_REFERENCE2(halfpelMV.x, halfpelMV.y, ref1); // this reference is used in all cases  
         switch( ((xb&1)<<1) + (yb&1) )  
320          {          {
321          case 0: // pure halfpel position - shouldn't happen during a refinement step          int32_t sad;
322                  GET_REFERENCE2(halfpelMV.x, halfpelMV.y, ReferenceB);          const uint8_t * Reference;
323                  break;          uint32_t t;
324            VECTOR * current;
325    
326          case 1: // x halfpel, y qpel - top or bottom during qpel refinement          if ( (x > data->max_dx) | ( x < data->min_dx)
327                  GET_REFERENCE2(halfpelMV.x, yb - halfpelMV.y, ref2);                  | (y > data->max_dy) | (y < data->min_dy) ) return;
                 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;  
328    
329          case 2: // x qpel, y halfpel - left or right during qpel refinement          if (data->rrv && (!(x&1) && x !=0) | (!(y&1) && y !=0) ) return; //non-zero even value
                 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;  
330    
331          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
332                           // bottom left/right) during qpel refinement                  Reference = Interpolate16x16qpel(x, y, 0, data);
333                  GET_REFERENCE2(halfpelMV.x, yb - halfpelMV.y, ref2);                  current = data->currentQMV;
334                  GET_REFERENCE2(xb - halfpelMV.x, halfpelMV.y, ref3);          } else {
335                  GET_REFERENCE2(xb - halfpelMV.x, yb - halfpelMV.y, ref4);                  Reference = GetReference(x, y, data);
336                    current = data->currentMV;
                 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;  
337          }          }
338            t = d_mv_bits(x, y, data->predMV, data->iFcode,
339                                            data->qpel^data->qpel_precision, data->rrv);
340    
341          sad = sad16bi(data->Cur, ReferenceF, ReferenceB, data->iEdgedWidth);          sad = sad16(data->Cur, Reference, data->iEdgedWidth, 256*4096);
342            sad += (data->lambda16 * t * sad)>>10;
         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;  
343    
344          if (sad < *(data->iMinSAD)) {          if (sad < *(data->iMinSAD)) {
345                  *(data->iMinSAD) = sad;                  *(data->iMinSAD) = sad;
346                  data->currentQMV->x = xf; data->currentQMV->y = yf;                  current->x = x; current->y = y;
347                  *dir = Direction; }                  *dir = Direction; }
348  }  }
349    
350  static void  static void
351  CheckCandidateDirect(const int x, const int y, const int Direction, int * const dir, const SearchData * const data)  CheckCandidate32I(const int x, const int y, const int Direction, int * const dir, const SearchData * const data)
352  {  {
353          int32_t sad = 0;  // maximum speed - for P/B/I decision
         int k;  
         const uint8_t *ReferenceF;  
         const uint8_t *ReferenceB;  
         VECTOR mvs, b_mvs;  
354    
355          if (( x > 31) || ( x < -32) || ( y > 31) || (y < -32)) return;          if ( (x > data->max_dx) | (x < data->min_dx)
356                    | (y > data->max_dy) | (y < data->min_dy) ) return;
357    
358          for (k = 0; k < 4; k++) {          data->temp[0] = sad32v_c(data->Cur, data->Ref + x/2 + (y/2)*(data->iEdgedWidth),
359                  mvs.x = data->directmvF[k].x + x;                                                          data->iEdgedWidth, data->temp+1);
                 b_mvs.x = ((x == 0) ?  
                         data->directmvB[k].x  
                         : mvs.x - data->referencemv[k].x);  
360    
361                  mvs.y = data->directmvF[k].y + y;          if (data->temp[0] < *(data->iMinSAD)) {
362                  b_mvs.y = ((y == 0) ?                  *(data->iMinSAD) = data->temp[0];
363                          data->directmvB[k].y                  data->currentMV[0].x = x; data->currentMV[0].y = y;
364                          : mvs.y - data->referencemv[k].y);                  *dir = Direction; }
365            if (data->temp[1] < data->iMinSAD[1]) {
366                  if (( mvs.x > data->max_dx ) || ( mvs.x < data->min_dx )                  data->iMinSAD[1] = data->temp[1]; data->currentMV[1].x = x; data->currentMV[1].y = y; }
367                          || ( mvs.y > data->max_dy ) || ( mvs.y < data->min_dy )          if (data->temp[2] < data->iMinSAD[2]) {
368                          || ( b_mvs.x > data->max_dx ) || ( b_mvs.x < data->min_dx )                  data->iMinSAD[2] = data->temp[2]; data->currentMV[2].x = x; data->currentMV[2].y = y; }
369                          || ( b_mvs.y > data->max_dy ) || ( b_mvs.y < data->min_dy )) return;          if (data->temp[3] < data->iMinSAD[3]) {
370                    data->iMinSAD[3] = data->temp[3]; data->currentMV[3].x = x; data->currentMV[3].y = y; }
371            if (data->temp[4] < data->iMinSAD[4]) {
372                    data->iMinSAD[4] = data->temp[4]; data->currentMV[4].x = x; data->currentMV[4].y = y; }
373    
                 switch ( ((mvs.x&1)<<1) + (mvs.y&1) ) {  
                         case 0 : ReferenceF = data->Ref + mvs.x/2 + (mvs.y/2)*(data->iEdgedWidth); break;  
                         case 1 : ReferenceF = data->RefV + mvs.x/2 + ((mvs.y-1)/2)*(data->iEdgedWidth); break;  
                         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;  
374                  }                  }
375    
376                  switch ( ((b_mvs.x&1)<<1) + (b_mvs.y&1) ) {  static void
377                          case 0 : ReferenceB = data->bRef + b_mvs.x/2 + (b_mvs.y/2)*(data->iEdgedWidth); break;  CheckCandidateInt(const int xf, const int yf, const int Direction, int * const dir, const SearchData * const data)
378                          case 1 : ReferenceB = data->bRefV + b_mvs.x/2 + ((b_mvs.y-1)/2)*(data->iEdgedWidth); break;  {
379                          case 2 : ReferenceB = data->bRefH + (b_mvs.x-1)/2 + (b_mvs.y/2)*(data->iEdgedWidth); break;          int32_t sad, xb, yb;
380                          default : ReferenceB = data->bRefHV + (b_mvs.x-1)/2 + ((b_mvs.y-1)/2)*(data->iEdgedWidth); break;          uint32_t t;
381                  }          const uint8_t *ReferenceF, *ReferenceB;
382            VECTOR *current;
383    
384                  sad += sad8bi(data->Cur + 8*(k&1) + 8*(k>>1)*(data->iEdgedWidth),          if ( (xf > data->max_dx) | (xf < data->min_dx)
385                                                  ReferenceF + 8*(k&1) + 8*(k>>1)*(data->iEdgedWidth),                  | (yf > data->max_dy) | (yf < data->min_dy) ) return;
386                                                  ReferenceB + 8*(k&1) + 8*(k>>1)*(data->iEdgedWidth),  
387                                                  data->iEdgedWidth);          if (!data->qpel_precision) {
388                  if (sad > *(data->iMinSAD)) return;                  ReferenceF = GetReference(xf, yf, data);
389                    xb = data->currentMV[1].x; yb = data->currentMV[1].y;
390                    ReferenceB = GetReferenceB(xb, yb, 1, data);
391                    current = data->currentMV;
392            } else {
393                    ReferenceF = Interpolate16x16qpel(xf, yf, 0, data);
394                    xb = data->currentQMV[1].x; yb = data->currentQMV[1].y;
395                    current = data->currentQMV;
396                    ReferenceB = Interpolate16x16qpel(xb, yb, 1, data);
397          }          }
398    
399          sad += (data->lambda16 * d_mv_bits(x, y, 1) * sad)/1000;          t = d_mv_bits(xf, yf, data->predMV, data->iFcode, data->qpel^data->qpel_precision, 0)
400                     + d_mv_bits(xb, yb, data->bpredMV, data->iFcode, data->qpel^data->qpel_precision, 0);
401    
402            sad = sad16bi(data->Cur, ReferenceF, ReferenceB, data->iEdgedWidth);
403            sad += (data->lambda16 * t * sad)>>10;
404    
405          if (sad < *(data->iMinSAD)) {          if (sad < *(data->iMinSAD)) {
406                  *(data->iMinSAD) = sad;                  *(data->iMinSAD) = sad;
407                  data->currentMV->x = x; data->currentMV->y = y;                  current->x = xf; current->y = yf;
408                  *dir = Direction; }                  *dir = Direction; }
409  }  }
410    
   
411  static void  static void
412  CheckCandidateDirect_qpel(const int x, const int y, const int Direction, int * const dir, const SearchData * const data)  CheckCandidateDirect(const int x, const int y, const int Direction, int * const dir, const SearchData * const data)
413  {  {
414          int32_t sad = 0;          int32_t sad = 0;
415          int k;          uint32_t k;
416          VECTOR mvs, b_mvs, halfpelMV;          const uint8_t *ReferenceF;
417          const uint8_t *ref1, *ref2, *ref3, *ref4;          const uint8_t *ReferenceB;
418          uint8_t *ReferenceF, *ReferenceB;          VECTOR mvs, b_mvs;
         const uint32_t iEdgedWidth = data->iEdgedWidth;  
419    
420          if (( x > 31) || ( x < -32) || ( y > 31) || (y < -32)) return;          if (( x > 31) | ( x < -32) | ( y > 31) | (y < -32)) return;
421    
422          for (k = 0; k < 4; k++) {          for (k = 0; k < 4; k++) {
                 ReferenceF = (uint8_t *)data->RefQ;  
                 ReferenceB = (uint8_t *)data->RefQ + 64;  
   
423                  mvs.x = data->directmvF[k].x + x;                  mvs.x = data->directmvF[k].x + x;
424                  b_mvs.x = ((x == 0) ?                  b_mvs.x = ((x == 0) ?
425                          data->directmvB[k].x                          data->directmvB[k].x
# Line 608  Line 435 
435                          || ( b_mvs.x > data->max_dx ) || ( b_mvs.x < data->min_dx )                          || ( b_mvs.x > data->max_dx ) || ( b_mvs.x < data->min_dx )
436                          || ( 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;
437    
                 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;  
438    
439                  case 1: // x halfpel, y qpel - top or bottom during qpel refinement                  mvs.x *= 2 - data->qpel; mvs.y *= 2 - data->qpel;
440                          GET_REFERENCE(halfpelMV.x, mvs.y - halfpelMV.y, ref2);                  b_mvs.x *= 2 - data->qpel; b_mvs.y *= 2 - data->qpel; //we move to qpel precision anyway
                         interpolate8x8_avg2(ReferenceF, ref1+8*(k&1) + 8*(k>>1)*(data->iEdgedWidth),  
                                                         ref2+ 8*(k&1) + 8*(k>>1)*(data->iEdgedWidth), iEdgedWidth, 0);  
                         break;  
441    
442                  case 2: // x qpel, y halfpel - left or right during qpel refinement                  ReferenceF = Interpolate8x8qpel(mvs.x, mvs.y, k, 0, data);
443                          GET_REFERENCE(mvs.x - halfpelMV.x, halfpelMV.y, ref2);                  ReferenceB = Interpolate8x8qpel(b_mvs.x, b_mvs.y, k, 1, data);
                         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;  
                 }  
444    
445                  sad += sad8bi(data->Cur + 8*(k&1) + 8*(k>>1)*(data->iEdgedWidth),                  sad += sad8bi(data->Cur + 8*(k&1) + 8*(k>>1)*(data->iEdgedWidth),
446                                                  ReferenceF,                                                  ReferenceF, ReferenceB, data->iEdgedWidth);
                                                 ReferenceB,  
                                                 data->iEdgedWidth);  
447                  if (sad > *(data->iMinSAD)) return;                  if (sad > *(data->iMinSAD)) return;
448          }          }
449    
450          sad += (data->lambda16 * d_mv_bits(x, y, 1) * sad)/1000;          sad += (data->lambda16 * d_mv_bits(x, y, zeroMV, 1, 0, 0) * sad)>>10;
451    
452          if (sad < *(data->iMinSAD)) {          if (sad < *(data->iMinSAD)) {
453                  *(data->iMinSAD) = sad;                  *(data->iMinSAD) = sad;
# Line 688  Line 456 
456  }  }
457    
458  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  
459  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)
460  {  {
461          int32_t sad;          int32_t sad;
# Line 806  Line 463 
463          const uint8_t *ReferenceB;          const uint8_t *ReferenceB;
464          VECTOR mvs, b_mvs;          VECTOR mvs, b_mvs;
465    
466          if (( x > 31) || ( x < -32) || ( y > 31) || (y < -32)) return;          if (( x > 31) | ( x < -32) | ( y > 31) | (y < -32)) return;
467    
468          mvs.x = data->directmvF[0].x + x;          mvs.x = data->directmvF[0].x + x;
469          b_mvs.x = ((x == 0) ?          b_mvs.x = ((x == 0) ?
# Line 823  Line 480 
480                  || ( b_mvs.x > data->max_dx ) || ( b_mvs.x < data->min_dx )                  || ( b_mvs.x > data->max_dx ) || ( b_mvs.x < data->min_dx )
481                  || ( 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;
482    
483          switch ( ((mvs.x&1)<<1) + (mvs.y&1) ) {          mvs.x *= 2 - data->qpel; mvs.y *= 2 - data->qpel;
484                  case 0 : ReferenceF = data->Ref + mvs.x/2 + (mvs.y/2)*(data->iEdgedWidth); break;          b_mvs.x *= 2 - data->qpel; b_mvs.y *= 2 - data->qpel; //we move to qpel precision anyway
                 case 1 : ReferenceF = data->RefV + mvs.x/2 + ((mvs.y-1)/2)*(data->iEdgedWidth); break;  
                 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;  
         }  
485    
486          switch ( ((b_mvs.x&1)<<1) + (b_mvs.y&1) ) {          ReferenceF = Interpolate16x16qpel(mvs.x, mvs.y, 0, data);
487                  case 0 : ReferenceB = data->bRef + b_mvs.x/2 + (b_mvs.y/2)*(data->iEdgedWidth); break;          ReferenceB = Interpolate16x16qpel(b_mvs.x, b_mvs.y, 1, data);
                 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;  
         }  
488    
489          sad = sad16bi(data->Cur, ReferenceF, ReferenceB, data->iEdgedWidth);          sad = sad16bi(data->Cur, ReferenceF, ReferenceB, data->iEdgedWidth);
490          sad += (data->lambda16 * d_mv_bits(x, y, 1) * sad)/1000;          sad += (data->lambda16 * d_mv_bits(x, y, zeroMV, 1, 0, 0) * sad)>>10;
491    
492          if (sad < *(data->iMinSAD)) {          if (sad < *(data->iMinSAD)) {
493                  *(data->iMinSAD) = sad;                  *(data->iMinSAD) = sad;
# Line 849  Line 498 
498  static void  static void
499  CheckCandidate8(const int x, const int y, const int Direction, int * const dir, const SearchData * const data)  CheckCandidate8(const int x, const int y, const int Direction, int * const dir, const SearchData * const data)
500  {  {
501          int32_t sad; int t;          int32_t sad; uint32_t t;
502          const uint8_t * Reference;          const uint8_t * Reference;
503    
504          if (( x > data->max_dx) || ( x < data->min_dx)          if ( (x > data->max_dx) | (x < data->min_dx)
505                  || ( y > data->max_dy) || (y < data->min_dy)) return;                  | (y > data->max_dy) | (y < data->min_dy) ) return;
506    
507          switch ( ((x&1)<<1) + (y&1) )          if (data->qpel) Reference = Interpolate16x16qpel(x, y, 0, data);
508          {          else Reference = GetReference(x, y, 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;  
         }  
509    
510          sad = sad8(data->Cur, Reference, data->iEdgedWidth);          sad = sad8(data->Cur, Reference, data->iEdgedWidth);
511          if (data->qpel) t = d_mv_bits(2 * x - data->predQMV.x, 2 * y - data->predQMV.y, data->iFcode);          t = d_mv_bits(x, y, data->predMV, data->iFcode, data->qpel && !data->qpel_precision, 0);
         else t = d_mv_bits(x - data->predMV.x, y - data->predMV.y, data->iFcode);  
512    
513          sad += (data->lambda8 * t * (sad+NEIGH_8X8_BIAS))/100;          sad += (data->lambda8 * t * (sad+NEIGH_8X8_BIAS))>>10;
514    
515          if (sad < *(data->iMinSAD)) {          if (sad < *(data->iMinSAD)) {
516                  *(data->iMinSAD) = sad;                  *(data->iMinSAD) = sad;
# Line 875  Line 518 
518                  *dir = Direction; }                  *dir = Direction; }
519  }  }
520    
 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; }  
 }  
   
521  /* CHECK_CANDIATE FUNCTIONS END */  /* CHECK_CANDIATE FUNCTIONS END */
522    
523  /* MAINSEARCH FUNCTIONS START */  /* MAINSEARCH FUNCTIONS START */
# Line 943  Line 530 
530    
531                  int iDirection;                  int iDirection;
532    
533                  do {          for(;;) { //forever
534                          iDirection = 0;                          iDirection = 0;
535                          if (bDirection & 1) CHECK_CANDIDATE(x - iDiamondSize, y, 1);                          if (bDirection & 1) CHECK_CANDIDATE(x - iDiamondSize, y, 1);
536                          if (bDirection & 2) CHECK_CANDIDATE(x + iDiamondSize, y, 2);                          if (bDirection & 2) CHECK_CANDIDATE(x + iDiamondSize, y, 2);
# Line 952  Line 539 
539    
540                          /* now we're doing diagonal checks near our candidate */                          /* now we're doing diagonal checks near our candidate */
541    
542                          if (iDirection) {               //checking if anything found                  if (iDirection) {               //if anything found
543                                  bDirection = iDirection;                                  bDirection = iDirection;
544                                  iDirection = 0;                                  iDirection = 0;
545                                  x = data->currentMV->x; y = data->currentMV->y;                                  x = data->currentMV->x; y = data->currentMV->y;
# Line 961  Line 548 
548                                          CHECK_CANDIDATE(x, y - iDiamondSize, 4);                                          CHECK_CANDIDATE(x, y - iDiamondSize, 4);
549                                  } else {                        // what remains here is up or down                                  } else {                        // what remains here is up or down
550                                          CHECK_CANDIDATE(x + iDiamondSize, y, 2);                                          CHECK_CANDIDATE(x + iDiamondSize, y, 2);
551                                          CHECK_CANDIDATE(x - iDiamondSize, y, 1); }                                  CHECK_CANDIDATE(x - iDiamondSize, y, 1);
552                            }
553    
554                                  if (iDirection) {                                  if (iDirection) {
555                                          bDirection += iDirection;                                          bDirection += iDirection;
556                                          x = data->currentMV->x; y = data->currentMV->y; }                                  x = data->currentMV->x; y = data->currentMV->y;
557                            }
558                          } else {                                //about to quit, eh? not so fast....                          } else {                                //about to quit, eh? not so fast....
559                                  switch (bDirection) {                                  switch (bDirection) {
560                                  case 2:                                  case 2:
# Line 1016  Line 605 
605                                  x = data->currentMV->x; y = data->currentMV->y;                                  x = data->currentMV->x; y = data->currentMV->y;
606                          }                          }
607                  }                  }
                 while (1);                              //forever  
608  }  }
609    
610  static void  static void
# Line 1066  Line 654 
654                                          CHECK_CANDIDATE(x, y - iDiamondSize, 4);                                          CHECK_CANDIDATE(x, y - iDiamondSize, 4);
655                                  } else {                        // what remains here is up or down                                  } else {                        // what remains here is up or down
656                                          CHECK_CANDIDATE(x + iDiamondSize, y, 2);                                          CHECK_CANDIDATE(x + iDiamondSize, y, 2);
657                                          CHECK_CANDIDATE(x - iDiamondSize, y, 1); }                                  CHECK_CANDIDATE(x - iDiamondSize, y, 1);
658                            }
659                                  bDirection += iDirection;                                  bDirection += iDirection;
660                                  x = data->currentMV->x; y = data->currentMV->y;                                  x = data->currentMV->x; y = data->currentMV->y;
661                          }                          }
# Line 1077  Line 665 
665    
666  /* MAINSEARCH FUNCTIONS END */  /* MAINSEARCH FUNCTIONS END */
667    
 /* HALFPELREFINE COULD BE A MAINSEARCH FUNCTION, BUT THERE IS NO NEED FOR IT */  
   
668  static void  static void
669  HalfpelRefine(const SearchData * const data)  SubpelRefine(const SearchData * const data)
670  {  {
671  /* Do a half-pel refinement (or rather a "smallest possible amount" refinement) */  /* Do a half-pel or q-pel refinement */
672            const VECTOR centerMV = data->qpel_precision ? *data->currentQMV : *data->currentMV;
673          VECTOR backupMV = *(data->currentMV);          int iDirection; //only needed because macro expects it
674          int iDirection; //not needed  
675            CHECK_CANDIDATE(centerMV.x, centerMV.y - 1, 0);
676          CHECK_CANDIDATE(backupMV.x - 1, backupMV.y - 1, 0);          CHECK_CANDIDATE(centerMV.x + 1, centerMV.y - 1, 0);
677          CHECK_CANDIDATE(backupMV.x + 1, backupMV.y - 1, 0);          CHECK_CANDIDATE(centerMV.x + 1, centerMV.y, 0);
678          CHECK_CANDIDATE(backupMV.x - 1, backupMV.y + 1, 0);          CHECK_CANDIDATE(centerMV.x + 1, centerMV.y + 1, 0);
679          CHECK_CANDIDATE(backupMV.x + 1, backupMV.y + 1, 0);          CHECK_CANDIDATE(centerMV.x, centerMV.y + 1, 0);
680            CHECK_CANDIDATE(centerMV.x - 1, centerMV.y + 1, 0);
681          CHECK_CANDIDATE(backupMV.x - 1, backupMV.y, 0);          CHECK_CANDIDATE(centerMV.x - 1, centerMV.y, 0);
682          CHECK_CANDIDATE(backupMV.x + 1, backupMV.y, 0);          CHECK_CANDIDATE(centerMV.x - 1, centerMV.y - 1, 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  
   
         CHECK_CANDIDATE(backupMV.x - 1, backupMV.y - 1, 0);  
         CHECK_CANDIDATE(backupMV.x + 1, backupMV.y - 1, 0);  
         CHECK_CANDIDATE(backupMV.x - 1, backupMV.y + 1, 0);  
         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);  
   
683  }  }
684    
685  static __inline int  static __inline int
686  SkipDecisionP(const IMAGE * current, const IMAGE * reference,  SkipDecisionP(const IMAGE * current, const IMAGE * reference,
687                                                          const int x, const int y,                                                          const int x, const int y,
688                                                          const uint32_t iEdgedWidth, const uint32_t iQuant)                                                          const uint32_t stride, const uint32_t iQuant, int rrv)
689    
690  {  {
691  /*      keep repeating checks for all b-frames before this P frame,          if(!rrv) {
692          to make sure that SKIP is possible (todo)                  uint32_t sadC = sad8(current->u + x*8 + y*stride*8,
693          how: if skip is not possible set sad00 to a very high value */                                                  reference->u + x*8 + y*stride*8, stride);
   
         uint32_t sadC = sad8(current->u + x*8 + y*(iEdgedWidth/2)*8,  
                                         reference->u + x*8 + y*(iEdgedWidth/2)*8, iEdgedWidth/2);  
694          if (sadC > iQuant * MAX_CHROMA_SAD_FOR_SKIP) return 0;          if (sadC > iQuant * MAX_CHROMA_SAD_FOR_SKIP) return 0;
695          sadC += sad8(current->v + (x + y*(iEdgedWidth/2))*8,                  sadC += sad8(current->v + (x + y*stride)*8,
696                                          reference->v + (x + y*(iEdgedWidth/2))*8, iEdgedWidth/2);                                                  reference->v + (x + y*stride)*8, stride);
697          if (sadC > iQuant * MAX_CHROMA_SAD_FOR_SKIP) return 0;          if (sadC > iQuant * MAX_CHROMA_SAD_FOR_SKIP) return 0;
698                    return 1;
699    
700            } else {
701                    uint32_t sadC = sad16(current->u + x*16 + y*stride*16,
702                                                    reference->u + x*16 + y*stride*16, stride, 256*4096);
703                    if (sadC > iQuant * MAX_CHROMA_SAD_FOR_SKIP*4) return 0;
704                    sadC += sad16(current->v + (x + y*stride)*16,
705                                                    reference->v + (x + y*stride)*16, stride, 256*4096);
706                    if (sadC > iQuant * MAX_CHROMA_SAD_FOR_SKIP*4) return 0;
707          return 1;          return 1;
708  }  }
709    }
710    
711  static __inline void  static __inline void
712  SkipMacroblockP(MACROBLOCK *pMB, const int32_t sad)  SkipMacroblockP(MACROBLOCK *pMB, const int32_t sad)
713  {  {
714          pMB->mode = MODE_NOT_CODED;          pMB->mode = MODE_NOT_CODED;
715          pMB->mvs[0].x = pMB->mvs[1].x = pMB->mvs[2].x = pMB->mvs[3].x = 0;          pMB->mvs[0] = pMB->mvs[1] = pMB->mvs[2] = pMB->mvs[3] = zeroMV;
716          pMB->mvs[0].y = pMB->mvs[1].y = pMB->mvs[2].y = pMB->mvs[3].y = 0;          pMB->qmvs[0] = pMB->qmvs[1] = pMB->qmvs[2] = pMB->qmvs[3] = zeroMV;
   
         pMB->qmvs[0].x = pMB->qmvs[1].x = pMB->qmvs[2].x = pMB->qmvs[3].x = 0;  
         pMB->qmvs[0].y = pMB->qmvs[1].y = pMB->qmvs[2].y = pMB->qmvs[3].y = 0;  
   
717          pMB->sad16 = pMB->sad8[0] = pMB->sad8[1] = pMB->sad8[2] = pMB->sad8[3] = sad;          pMB->sad16 = pMB->sad8[0] = pMB->sad8[1] = pMB->sad8[2] = pMB->sad8[3] = sad;
718  }  }
719    
# Line 1167  Line 730 
730          const IMAGE *const pCurrent = &current->image;          const IMAGE *const pCurrent = &current->image;
731          const IMAGE *const pRef = &reference->image;          const IMAGE *const pRef = &reference->image;
732    
733          const VECTOR zeroMV = { 0, 0 };          uint32_t mb_width = pParam->mb_width;
734            uint32_t mb_height = pParam->mb_height;
735            const uint32_t iEdgedWidth = pParam->edged_width;
736    
737          uint32_t x, y;          uint32_t x, y;
738          uint32_t iIntra = 0;          uint32_t iIntra = 0;
739          int32_t InterBias, quant = current->quant, sad00;          int32_t InterBias, quant = current->quant, sad00;
         uint8_t *qimage;  
740    
741          // some pre-initialized thingies for SearchP          // some pre-initialized thingies for SearchP
742          int32_t temp[5];          int32_t temp[8];
743          VECTOR currentMV[5];          VECTOR currentMV[5];
744          VECTOR currentQMV[5];          VECTOR currentQMV[5];
745          int32_t iMinSAD[5];          int32_t iMinSAD[5];
746          SearchData Data;          SearchData Data;
747          Data.iEdgedWidth = pParam->edged_width;          memset(&Data, 0, sizeof(SearchData));
748            Data.iEdgedWidth = iEdgedWidth;
749          Data.currentMV = currentMV;          Data.currentMV = currentMV;
750          Data.currentQMV = currentQMV;          Data.currentQMV = currentQMV;
751          Data.iMinSAD = iMinSAD;          Data.iMinSAD = iMinSAD;
# Line 1188  Line 753 
753          Data.iFcode = current->fcode;          Data.iFcode = current->fcode;
754          Data.rounding = pParam->m_rounding_type;          Data.rounding = pParam->m_rounding_type;
755          Data.qpel = pParam->m_quarterpel;          Data.qpel = pParam->m_quarterpel;
756          Data.chroma = current->global_flags & XVID_ME_COLOUR;          Data.chroma = current->global_flags & ( PMV_CHROMA16 | PMV_CHROMA8 );
757            Data.rrv = current->global_flags & XVID_REDUCED;
758    
759          if((qimage = (uint8_t *) malloc(32 * pParam->edged_width)) == NULL)          if ((current->global_flags & XVID_REDUCED)) {
760                  return 1; // allocate some mem for qpel interpolated blocks                  mb_width = (pParam->width + 31) / 32;
761                                    // somehow this is dirty since I think we shouldn't use malloc outside                  mb_height = (pParam->height + 31) / 32;
762                                    // encoder_create() - so please fix me!                  Data.qpel = Data.chroma = 0;
763          Data.RefQ = qimage;          }
764    
765            Data.RefQ = pRefV->u; // a good place, also used in MC (for similar purpose)
766          if (sadInit) (*sadInit) ();          if (sadInit) (*sadInit) ();
767    
768          for (y = 0; y < pParam->mb_height; y++) {          for (y = 0; y < mb_height; y++) {
769                  for (x = 0; x < pParam->mb_width; x++)  {                  for (x = 0; x < mb_width; x++)  {
770                          MACROBLOCK *pMB = &pMBs[x + y * pParam->mb_width];                          MACROBLOCK *pMB = &pMBs[x + y * pParam->mb_width];
771    
772                          pMB->sad16                          if (!Data.rrv) pMB->sad16 =
773                                  = sad16v(pCurrent->y + (x + y * pParam->edged_width) * 16,                                  sad16v(pCurrent->y + (x + y * iEdgedWidth) * 16,
774                                                          pRef->y + (x + y * pParam->edged_width) * 16,                                                          pRef->y + (x + y * iEdgedWidth) * 16,
775                                                          pParam->edged_width, pMB->sad8 );                                                          pParam->edged_width, pMB->sad8 );
776    
777                          if (Data.chroma) {                          else pMB->sad16 =
778                                  pMB->sad16 += sad8(pCurrent->u + x*8 + y*(pParam->edged_width/2)*8,                                  sad32v_c(pCurrent->y + (x + y * iEdgedWidth) * 32,
779                                                                  pRef->u + x*8 + y*(pParam->edged_width/2)*8, pParam->edged_width/2);                                                          pRef->y + (x + y * iEdgedWidth) * 32,
780                                                            pParam->edged_width, pMB->sad8 );
781    
782                                  pMB->sad16 += sad8(pCurrent->v + (x + y*(pParam->edged_width/2))*8,                          if (Data.chroma) {
783                                                                  pRef->v + (x + y*(pParam->edged_width/2))*8, pParam->edged_width/2);                                  Data.temp[7] = sad8(pCurrent->u + x*8 + y*(iEdgedWidth/2)*8,
784                                                                            pRef->u + x*8 + y*(iEdgedWidth/2)*8, iEdgedWidth/2)
785                                                                    + sad8(pCurrent->v + (x + y*(iEdgedWidth/2))*8,
786                                                                            pRef->v + (x + y*(iEdgedWidth/2))*8, iEdgedWidth/2);
787                                    pMB->sad16 += Data.temp[7];
788                          }                          }
789    
790                          sad00 = pMB->sad16; //if no gmc; else sad00 = (..)                          sad00 = pMB->sad16;
791    
792                          if (!(current->global_flags & XVID_LUMIMASKING)) {                          if (!(current->global_flags & XVID_LUMIMASKING)) {
793                                  pMB->dquant = NO_CHANGE;                                  pMB->dquant = NO_CHANGE;
                                 pMB->quant = current->quant;  
794                          } else {                          } else {
795                                  if (pMB->dquant != NO_CHANGE) {                                  if (pMB->dquant != NO_CHANGE) {
796                                          quant += DQtab[pMB->dquant];                                          quant += DQtab[pMB->dquant];
797                                          if (quant > 31) quant = 31;                                          if (quant > 31) quant = 31;
798                                          else if (quant < 1) quant = 1;                                          else if (quant < 1) quant = 1;
799                                  }                                  }
                                 pMB->quant = quant;  
800                          }                          }
801                            pMB->quant = current->quant;
802    
803  //initial skip decision  //initial skip decision
804  /* no early skip for GMC (global vector = skip vector is unknown!)  */  /* no early skip for GMC (global vector = skip vector is unknown!)  */
805                          if (current->coding_type == P_VOP)      { /* no fast SKIP for S(GMC)-VOPs */                          if (!(current->global_flags & XVID_GMC))        { /* no fast SKIP for S(GMC)-VOPs */
806                                  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) )
807                                          if (Data.chroma || SkipDecisionP(pCurrent, pRef, x, y, pParam->edged_width, pMB->quant)) {                                          if (Data.chroma || SkipDecisionP(pCurrent, pRef, x, y, iEdgedWidth/2, pMB->quant, Data.rrv)) {
808                                                  SkipMacroblockP(pMB, sad00);                                                  SkipMacroblockP(pMB, sad00);
809                                                  continue;                                                  continue;
810                                          }                                          }
# Line 1244  Line 816 
816                                                  current->global_flags & XVID_INTER4V, pMB);                                                  current->global_flags & XVID_INTER4V, pMB);
817    
818  /* 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?" */
819                          if (current->coding_type == P_VOP)      {                          if (!(current->global_flags & XVID_GMC))        {
820                                  if ( (pMB->dquant == NO_CHANGE) && (sad00 < pMB->quant * MAX_SAD00_FOR_SKIP)                                  if ( (pMB->dquant == NO_CHANGE) && (sad00 < pMB->quant * MAX_SAD00_FOR_SKIP)
821                                  && ((100*pMB->sad16)/(sad00+1) > FINAL_SKIP_THRESH) )                                          && ((100*pMB->sad16)/(sad00+1) > FINAL_SKIP_THRESH * (Data.rrv ? 4:1)) )
822                                          if (Data.chroma || SkipDecisionP(pCurrent, pRef, x, y, pParam->edged_width, pMB->quant)) {                                          if (Data.chroma || SkipDecisionP(pCurrent, pRef, x, y, iEdgedWidth/2, pMB->quant, Data.rrv)) {
823                                                  SkipMacroblockP(pMB, sad00);                                                  SkipMacroblockP(pMB, sad00);
824                                                  continue;                                                  continue;
825                                          }                                          }
# Line 1263  Line 835 
835                                  if ((pMB - 1)->mode == MODE_INTRA ) InterBias -= 80;                                  if ((pMB - 1)->mode == MODE_INTRA ) InterBias -= 80;
836    
837                          if (Data.chroma) InterBias += 50; // to compensate bigger SAD                          if (Data.chroma) InterBias += 50; // to compensate bigger SAD
838                            if (Data.rrv) InterBias *= 4;
839    
840                          if (InterBias < pMB->sad16)  {                          if (InterBias < pMB->sad16)  {
841                                  const int32_t deviation =                                  int32_t deviation;
842                                          dev16(pCurrent->y + (x + y * pParam->edged_width) * 16,                                  if (!Data.rrv)
843                                                    pParam->edged_width);                                          deviation = dev16(pCurrent->y + (x + y * iEdgedWidth) * 16, iEdgedWidth);
844                                    else {
845                                            deviation = dev16(pCurrent->y + (x + y * iEdgedWidth) * 32, iEdgedWidth)
846                                                    + dev16(pCurrent->y + (x + y * iEdgedWidth) * 32 + 16, iEdgedWidth)
847                                                    + dev16(pCurrent->y + (x + y * iEdgedWidth) * 32 + 16 * iEdgedWidth, iEdgedWidth)
848                                                    + dev16(pCurrent->y + (x + y * iEdgedWidth) * 32 + 16 * (iEdgedWidth+1), iEdgedWidth);
849                                    }
850                                  if (deviation < (pMB->sad16 - InterBias)) {                                  if (deviation < (pMB->sad16 - InterBias)) {
851                                          if (++iIntra >= iLimit) { free(qimage); return 1; }                                          if (++iIntra >= iLimit) return 1;
852                                            SkipMacroblockP(pMB, 0); //same thing
853                                          pMB->mode = MODE_INTRA;                                          pMB->mode = MODE_INTRA;
                                         pMB->mvs[0] = pMB->mvs[1] = pMB->mvs[2] =  
                                                         pMB->mvs[3] = zeroMV;  
                                         pMB->qmvs[0] = pMB->qmvs[1] = pMB->qmvs[2] =  
                                                         pMB->qmvs[3] = zeroMV;  
                                         pMB->sad16 = pMB->sad8[0] = pMB->sad8[1] = pMB->sad8[2] =  
                                                 pMB->sad8[3] = 0;  
854                                  }                                  }
855                          }                          }
856                  }                  }
857          }          }
         free(qimage);  
858    
859          if (current->coding_type == S_VOP)      /* first GMC step only for S(GMC)-VOPs */          if (current->global_flags & XVID_GMC )  /* first GMC step only for S(GMC)-VOPs */
860                  current->GMC_MV = GlobalMotionEst( pMBs, pParam, current->fcode );          {
861          else                  current->warp = GlobalMotionEst( pMBs, pParam, current, reference, pRefH, pRefV, pRefHV);
862                  current->GMC_MV = zeroMV;          }
863    
864          return 0;          return 0;
865  }  }
866    
867    
 #define PMV_HALFPEL16 (PMV_HALFPELDIAMOND16|PMV_HALFPELREFINE16)  
   
868  static __inline int  static __inline int
869  make_mask(const VECTOR * const pmv, const int i)  make_mask(const VECTOR * const pmv, const int i)
870  {  {
# Line 1302  Line 872 
872          for (j = 0; j < i; j++) {          for (j = 0; j < i; j++) {
873                  if (MVequal(pmv[i], pmv[j])) return 0; // same vector has been checked already                  if (MVequal(pmv[i], pmv[j])) return 0; // same vector has been checked already
874                  if (pmv[i].x == pmv[j].x) {                  if (pmv[i].x == pmv[j].x) {
875                          if (pmv[i].y == pmv[j].y + iDiamondSize) { mask &= ~4; continue; }                          if (pmv[i].y == pmv[j].y + iDiamondSize) mask &= ~4;
876                          if (pmv[i].y == pmv[j].y - iDiamondSize) { mask &= ~8; continue; }                          else if (pmv[i].y == pmv[j].y - iDiamondSize) mask &= ~8;
877                  } else                  } else
878                          if (pmv[i].y == pmv[j].y) {                          if (pmv[i].y == pmv[j].y) {
879                                  if (pmv[i].x == pmv[j].x + iDiamondSize) { mask &= ~1; continue; }                                  if (pmv[i].x == pmv[j].x + iDiamondSize) mask &= ~1;
880                                  if (pmv[i].x == pmv[j].x - iDiamondSize) { mask &= ~2; continue; }                                  else if (pmv[i].x == pmv[j].x - iDiamondSize) mask &= ~2;
881                          }                          }
882          }          }
883          return mask;          return mask;
884  }  }
885    
886  static __inline void  static __inline void
887  PreparePredictionsP(VECTOR * const pmv, int x, int y, const int iWcount,  PreparePredictionsP(VECTOR * const pmv, int x, int y, int iWcount,
888                          const int iHcount, const MACROBLOCK * const prevMB)                          int iHcount, const MACROBLOCK * const prevMB, int rrv)
889  {  {
890    
891  //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
892            if (rrv) { iWcount /= 2; iHcount /= 2; }
893    
894          if ( (y != 0) && (x != (iWcount-1)) ) {         // [5] top-right neighbour          if ( (y != 0) && (x < (iWcount-1)) ) {          // [5] top-right neighbour
895                  pmv[5].x = EVEN(pmv[3].x);                  pmv[5].x = EVEN(pmv[3].x);
896                  pmv[5].y = EVEN(pmv[3].y);                  pmv[5].y = EVEN(pmv[3].y);
897          } else pmv[5].x = pmv[5].y = 0;          } else pmv[5].x = pmv[5].y = 0;
# Line 1339  Line 910 
910          pmv[2].x = EVEN(prevMB->mvs[0].x); // [2] is last frame          pmv[2].x = EVEN(prevMB->mvs[0].x); // [2] is last frame
911          pmv[2].y = EVEN(prevMB->mvs[0].y);          pmv[2].y = EVEN(prevMB->mvs[0].y);
912    
913          if ((x != iWcount-1) && (y != iHcount-1)) {          if ((x < iWcount-1) && (y < iHcount-1)) {
914                  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
915                  pmv[6].y = EVEN((prevMB+1+iWcount)->mvs[0].y);                  pmv[6].y = EVEN((prevMB+1+iWcount)->mvs[0].y);
916          } else pmv[6].x = pmv[6].y = 0;          } else pmv[6].x = pmv[6].y = 0;
917    
918            if (rrv) {
919                    int i;
920                    for (i = 0; i < 7; i++) {
921                            pmv[i].x = RRV_MV_SCALEUP(pmv[i].x);
922                            pmv[i].y = RRV_MV_SCALEUP(pmv[i].y);
923                    }
924            }
925  }  }
926    
927  static void  static void
# Line 1366  Line 945 
945          int i, iDirection = 255, mask, threshA;          int i, iDirection = 255, mask, threshA;
946          VECTOR pmv[7];          VECTOR pmv[7];
947    
         get_pmvdata2(pMBs, pParam->mb_width, 0, x, y, 0, pmv, Data->temp);  //has to be changed to get_pmv(2)()  
948          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,
949                                  pParam->width, pParam->height, Data->iFcode, pParam->m_quarterpel);                                                  pParam->width, pParam->height, Data->iFcode - Data->qpel, 0, Data->rrv);
950    
951          Data->predMV = pmv[0];          get_pmvdata2(pMBs, pParam->mb_width, 0, x, y, 0, pmv, Data->temp);
952    
953          Data->Cur = pCur->y + (x + y * Data->iEdgedWidth) * 16;          Data->temp[5] = Data->temp[6] = 0; // chroma-sad cache
954          Data->CurV = pCur->v + (x + y * (Data->iEdgedWidth/2)) * 8;          i = Data->rrv ? 2 : 1;
955          Data->CurU = pCur->u + (x + y * (Data->iEdgedWidth/2)) * 8;          Data->Cur = pCur->y + (x + y * Data->iEdgedWidth) * 16*i;
956            Data->CurV = pCur->v + (x + y * (Data->iEdgedWidth/2)) * 8*i;
957          Data->Ref = pRef->y + (x + Data->iEdgedWidth*y) * 16;          Data->CurU = pCur->u + (x + y * (Data->iEdgedWidth/2)) * 8*i;
958          Data->RefH = pRefH + (x + Data->iEdgedWidth*y) * 16;  
959          Data->RefV = pRefV + (x + Data->iEdgedWidth*y) * 16;          Data->Ref = pRef->y + (x + Data->iEdgedWidth*y) * 16*i;
960          Data->RefHV = pRefHV + (x + Data->iEdgedWidth*y) * 16;          Data->RefH = pRefH + (x + Data->iEdgedWidth*y) * 16*i;
961          Data->RefCV = pRef->v + (x + y * (Data->iEdgedWidth/2)) * 8;          Data->RefV = pRefV + (x + Data->iEdgedWidth*y) * 16*i;
962          Data->RefCU = pRef->u + (x + y * (Data->iEdgedWidth/2)) * 8;          Data->RefHV = pRefHV + (x + Data->iEdgedWidth*y) * 16*i;
963            Data->RefCV = pRef->v + (x + y * (Data->iEdgedWidth/2)) * 8*i;
964            Data->RefCU = pRef->u + (x + y * (Data->iEdgedWidth/2)) * 8*i;
965    
966          Data->lambda16 = lambda_vec16[iQuant];          Data->lambda16 = lambda_vec16[iQuant];
967          Data->lambda8 = lambda_vec8[iQuant];          Data->lambda8 = lambda_vec8[iQuant];
968            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); }  
969    
970          if (pMB->dquant != NO_CHANGE) inter4v = 0;          if (pMB->dquant != NO_CHANGE) inter4v = 0;
971    
972          for(i = 0;  i < 5; i++)          for(i = 0;  i < 5; i++)
973                  Data->currentMV[i].x = Data->currentMV[i].y = 0;                  Data->currentMV[i].x = Data->currentMV[i].y = 0;
974    
975          if (pParam->m_quarterpel) {          if (Data->qpel) Data->predMV = get_qpmv2(pMBs, pParam->mb_width, 0, x, y, 0);
976                  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);  
977    
978          Data->iMinSAD[0] = pMB->sad16 + (Data->lambda16 * i * pMB->sad16)/1000;          i = d_mv_bits(0, 0, Data->predMV, Data->iFcode, 0, 0);
979          Data->iMinSAD[1] = pMB->sad8[0] + (Data->lambda8 * i * (pMB->sad8[0]+NEIGH_8X8_BIAS))/100;          Data->iMinSAD[0] = pMB->sad16 + ((Data->lambda16 * i * pMB->sad16)>>10);
980            Data->iMinSAD[1] = pMB->sad8[0] + ((Data->lambda8 * i * (pMB->sad8[0]+NEIGH_8X8_BIAS)) >> 10);
981          Data->iMinSAD[2] = pMB->sad8[1];          Data->iMinSAD[2] = pMB->sad8[1];
982          Data->iMinSAD[3] = pMB->sad8[2];          Data->iMinSAD[3] = pMB->sad8[2];
983          Data->iMinSAD[4] = pMB->sad8[3];          Data->iMinSAD[4] = pMB->sad8[3];
984    
985          if ((x == 0) && (y == 0)) threshA = 512;          if (x | y) {
         else {  
986                  threshA = Data->temp[0]; // that's when we keep this SAD atm                  threshA = Data->temp[0]; // that's when we keep this SAD atm
987                  if (threshA < 512) threshA = 512;                  if (threshA < 512) threshA = 512;
988                  if (threshA > 1024) threshA = 1024; }                  else if (threshA > 1024) threshA = 1024;
989            } else threshA = 512;
990    
991          PreparePredictionsP(pmv, x, y, pParam->mb_width, pParam->mb_height,          PreparePredictionsP(pmv, x, y, pParam->mb_width, pParam->mb_height,
992                                          prevMBs + x + y * pParam->mb_width);                                          prevMBs + x + y * pParam->mb_width, Data->rrv);
993    
994          if (inter4v || pParam->m_quarterpel || Data->chroma) CheckCandidate = CheckCandidate16;          if (!Data->rrv) {
995          else CheckCandidate = CheckCandidate16no4v;                  if (inter4v | Data->chroma) CheckCandidate = CheckCandidate16;
996                            else CheckCandidate = CheckCandidate16no4v; //for extra speed
997            } else CheckCandidate = CheckCandidate32;
998    
999  /* main loop. checking all predictions */  /* main loop. checking all predictions (but first, which is 0,0 and has been checked in MotionEstimation())*/
1000    
1001          for (i = 1; i < 7; i++) {          for (i = 1; i < 7; i++) {
1002                  if (!(mask = make_mask(pmv, i)) ) continue;                  if (!(mask = make_mask(pmv, i)) ) continue;
# Line 1430  Line 1006 
1006    
1007          if ((Data->iMinSAD[0] <= threshA) ||          if ((Data->iMinSAD[0] <= threshA) ||
1008                          (MVequal(Data->currentMV[0], (prevMBs+x+y*pParam->mb_width)->mvs[0]) &&                          (MVequal(Data->currentMV[0], (prevMBs+x+y*pParam->mb_width)->mvs[0]) &&
1009                          (Data->iMinSAD[0] < (prevMBs+x+y*pParam->mb_width)->sad16))) {                          (Data->iMinSAD[0] < (prevMBs+x+y*pParam->mb_width)->sad16)))
1010                  inter4v = 0;                  inter4v = 0;
1011          } else {          else {
1012    
1013                  MainSearchFunc * MainSearchPtr;                  MainSearchFunc * MainSearchPtr;
1014                  if (MotionFlags & PMV_USESQUARES16) MainSearchPtr = SquareSearch;                  if (MotionFlags & PMV_USESQUARES16) MainSearchPtr = SquareSearch;
# Line 1448  Line 1024 
1024                  if (MotionFlags & PMV_EXTSEARCH16) {                  if (MotionFlags & PMV_EXTSEARCH16) {
1025                          int32_t bSAD;                          int32_t bSAD;
1026                          VECTOR startMV = Data->predMV, backupMV = Data->currentMV[0];                          VECTOR startMV = Data->predMV, backupMV = Data->currentMV[0];
1027                            if (Data->rrv) {
1028                                    startMV.x = RRV_MV_SCALEUP(startMV.x);
1029                                    startMV.y = RRV_MV_SCALEUP(startMV.y);
1030                            } else
1031                          if (!(MotionFlags & PMV_HALFPELREFINE16)) // who's gonna use extsearch and no halfpel?                          if (!(MotionFlags & PMV_HALFPELREFINE16)) // who's gonna use extsearch and no halfpel?
1032                                  startMV.x = EVEN(startMV.x); startMV.y = EVEN(startMV.y);                                  startMV.x = EVEN(startMV.x); startMV.y = EVEN(startMV.y);
1033                          if (!(MVequal(startMV, backupMV))) {                          if (!(MVequal(startMV, backupMV))) {
# Line 1461  Line 1041 
1041                          }                          }
1042    
1043                          backupMV = Data->currentMV[0];                          backupMV = Data->currentMV[0];
1044                          if (MotionFlags & PMV_HALFPELREFINE16) startMV.x = startMV.y = 1;                          if (MotionFlags & PMV_HALFPELREFINE16 && !Data->rrv) startMV.x = startMV.y = 1;
1045                          else startMV.x = startMV.y = 0;                          else startMV.x = startMV.y = 0;
1046                          if (!(MVequal(startMV, backupMV))) {                          if (!(MVequal(startMV, backupMV))) {
1047                                  bSAD = Data->iMinSAD[0]; Data->iMinSAD[0] = MV_MAX_ERROR;                                  bSAD = Data->iMinSAD[0]; Data->iMinSAD[0] = MV_MAX_ERROR;
# Line 1475  Line 1055 
1055                  }                  }
1056          }          }
1057    
1058          if (MotionFlags & PMV_HALFPELREFINE16) HalfpelRefine(Data);          if (MotionFlags & PMV_HALFPELREFINE16) SubpelRefine(Data);
1059    
1060          for(i = 0; i < 5; i++) {          for(i = 0; i < 5; i++) {
1061                  Data->currentQMV[i].x = 2 * Data->currentMV[i].x; // initialize qpel vectors                  Data->currentQMV[i].x = 2 * Data->currentMV[i].x; // initialize qpel vectors
1062                  Data->currentQMV[i].y = 2 * Data->currentMV[i].y;                  Data->currentQMV[i].y = 2 * Data->currentMV[i].y;
1063          }          }
1064    
1065          if((pParam->m_quarterpel) && (MotionFlags & PMV_QUARTERPELREFINE16)) {          if (Data->qpel && MotionFlags & PMV_QUARTERPELREFINE16) {
1066                    Data->qpel_precision = 1;
                 CheckCandidate = CheckCandidate16_qpel;  
1067                  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,
1068                                  pParam->width, pParam->height, Data->iFcode, 0);                                  pParam->width, pParam->height, Data->iFcode, 1, 0);
1069    
1070                  QuarterpelRefine(Data);                  SubpelRefine(Data);
1071          }          }
1072    
1073          if (Data->iMinSAD[0] < (int32_t)iQuant * 30 ) inter4v = 0;          if (Data->iMinSAD[0] < (int32_t)iQuant * 30 ) inter4v = 0;
1074          if (inter4v) {          if (inter4v) {
1075                  SearchData Data8;                  SearchData Data8;
1076                  Data8.iFcode = Data->iFcode;                  memcpy(&Data8, Data, sizeof(SearchData)); //quick copy of common data
1077                  Data8.lambda8 = Data->lambda8;  
                 Data8.iEdgedWidth = Data->iEdgedWidth;  
                 Data8.RefQ = Data->RefQ;  
                 Data8.qpel = Data->qpel;  
1078                  Search8(Data, 2*x, 2*y, MotionFlags, pParam, pMB, pMBs, 0, &Data8);                  Search8(Data, 2*x, 2*y, MotionFlags, pParam, pMB, pMBs, 0, &Data8);
1079                  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);
1080                  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);
1081                  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);
1082    
1083                  if (Data->chroma) {                  if (Data->chroma) {
1084                          int sum, dx, dy;                          int sumx = 0, sumy = 0;
1085                            const int div = 1 + Data->qpel;
1086                            const VECTOR * const mv = Data->qpel ? pMB->qmvs : pMB->mvs;
1087    
1088                          if(pParam->m_quarterpel) {                          for (i = 0; i < 4; i++) {
1089                                  sum = pMB->qmvs[0].y/2 + pMB->qmvs[1].y/2 + pMB->qmvs[2].y/2 + pMB->qmvs[3].y/2;                                  sumx += mv[i].x / div;
1090                          } else sum = pMB->mvs[0].y + pMB->mvs[1].y + pMB->mvs[2].y + pMB->mvs[3].y;                                  sumy += mv[i].y / div;
1091                          dy = (sum >> 3) + roundtab_76[sum & 0xf];                          }
   
                         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 >> 3) + roundtab_76[sum & 0xf];  
1092    
1093                          Data->iMinSAD[1] += ChromaSAD(dx, dy, Data);                          Data->iMinSAD[1] += ChromaSAD(  (sumx >> 3) + roundtab_76[sumx & 0xf],
1094                                                                                            (sumy >> 3) + roundtab_76[sumy & 0xf], Data);
1095                    }
1096                  }                  }
1097    
1098            if (Data->rrv) {
1099                            Data->currentMV[0].x = RRV_MV_SCALEDOWN(Data->currentMV[0].x);
1100                            Data->currentMV[0].y = RRV_MV_SCALEDOWN(Data->currentMV[0].y);
1101          }          }
1102    
1103          if (!(inter4v) ||          if (!(inter4v) ||
# Line 1526  Line 1105 
1105                          Data->iMinSAD[3] + Data->iMinSAD[4] + IMV16X16 * (int32_t)iQuant )) {                          Data->iMinSAD[3] + Data->iMinSAD[4] + IMV16X16 * (int32_t)iQuant )) {
1106  // INTER MODE  // INTER MODE
1107                  pMB->mode = MODE_INTER;                  pMB->mode = MODE_INTER;
1108                  pMB->mvs[0] = pMB->mvs[1]                  pMB->mvs[0] = pMB->mvs[1] = pMB->mvs[2] = pMB->mvs[3] = Data->currentMV[0];
1109                          = pMB->mvs[2] = pMB->mvs[3] = Data->currentMV[0];                  pMB->sad16 = pMB->sad8[0] = pMB->sad8[1] = pMB->sad8[2] = pMB->sad8[3] = Data->iMinSAD[0];
1110    
1111                    if(Data->qpel) {
1112                  pMB->qmvs[0] = pMB->qmvs[1]                  pMB->qmvs[0] = pMB->qmvs[1]
1113                          = pMB->qmvs[2] = pMB->qmvs[3] = Data->currentQMV[0];                          = pMB->qmvs[2] = pMB->qmvs[3] = Data->currentQMV[0];
1114                            pMB->pmvs[0].x = Data->currentQMV[0].x - Data->predMV.x;
1115                  pMB->sad16 = pMB->sad8[0] = pMB->sad8[1] =                          pMB->pmvs[0].y = Data->currentQMV[0].y - Data->predMV.y;
                         pMB->sad8[2] = pMB->sad8[3] =  Data->iMinSAD[0];  
   
                 if(pParam->m_quarterpel) {  
                         pMB->pmvs[0].x = Data->currentQMV[0].x - Data->predQMV.x;  
                         pMB->pmvs[0].y = Data->currentQMV[0].y - Data->predQMV.y;  
1116                  } else {                  } else {
1117                          pMB->pmvs[0].x = Data->currentMV[0].x - Data->predMV.x;                          pMB->pmvs[0].x = Data->currentMV[0].x - Data->predMV.x;
1118                          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 1135 
1135                  const int block,                  const int block,
1136                  SearchData * const Data)                  SearchData * const Data)
1137  {  {
1138            int i = 0;
1139          Data->iMinSAD = OldData->iMinSAD + 1 + block;          Data->iMinSAD = OldData->iMinSAD + 1 + block;
1140          Data->currentMV = OldData->currentMV + 1 + block;          Data->currentMV = OldData->currentMV + 1 + block;
1141          Data->currentQMV = OldData->currentQMV + 1 + block;          Data->currentQMV = OldData->currentQMV + 1 + block;
1142    
1143          if(pParam->m_quarterpel) {          if(Data->qpel) {
1144                  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);
1145                  if (block != 0) *(Data->iMinSAD) += (Data->lambda8 *                  if (block != 0) i = d_mv_bits(  Data->currentQMV->x, Data->currentQMV->y,
1146                                                                          d_mv_bits(      Data->currentQMV->x - Data->predQMV.x,                                                                                  Data->predMV, Data->iFcode, 0, 0);
                                                                                                 Data->currentQMV->y - Data->predQMV.y,  
                                                                                                 Data->iFcode) * (*Data->iMinSAD + NEIGH_8X8_BIAS))/100;  
1147          } else {          } else {
1148                  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);
1149                  if (block != 0) *(Data->iMinSAD) += (Data->lambda8 *                  if (block != 0) i = d_mv_bits(  Data->currentMV->x, Data->currentMV->y,
1150                                                                          d_mv_bits(      Data->currentMV->x - Data->predMV.x,                                                                                  Data->predMV, Data->iFcode, 0, Data->rrv);
                                                                                                 Data->currentMV->y - Data->predMV.y,  
                                                                                                 Data->iFcode) * (*Data->iMinSAD + NEIGH_8X8_BIAS))/100;  
1151          }          }
1152    
1153          if (MotionFlags & (PMV_EXTSEARCH8|PMV_HALFPELREFINE8)) {          *(Data->iMinSAD) += (Data->lambda8 * i * (*Data->iMinSAD + NEIGH_8X8_BIAS))>>10;
1154    
1155            if (MotionFlags & (PMV_EXTSEARCH8|PMV_HALFPELREFINE8|PMV_QUARTERPELREFINE8)) {
1156                    if (Data->rrv) i = 2; else i = 1;
1157    
1158                  Data->Ref = OldData->Ref + 8 * ((block&1) + pParam->edged_width*(block>>1));                  Data->Ref = OldData->Ref + i * 8 * ((block&1) + Data->iEdgedWidth*(block>>1));
1159                  Data->RefH = OldData->RefH + 8 * ((block&1) + pParam->edged_width*(block>>1));                  Data->RefH = OldData->RefH + i * 8 * ((block&1) + Data->iEdgedWidth*(block>>1));
1160                  Data->RefV = OldData->RefV + 8 * ((block&1) + pParam->edged_width*(block>>1));                  Data->RefV = OldData->RefV + i * 8 * ((block&1) + Data->iEdgedWidth*(block>>1));
1161                  Data->RefHV = OldData->RefHV + 8 * ((block&1) + pParam->edged_width*(block>>1));                  Data->RefHV = OldData->RefHV + i * 8 * ((block&1) + Data->iEdgedWidth*(block>>1));
1162    
1163                  Data->Cur = OldData->Cur + 8 * ((block&1) + pParam->edged_width*(block>>1));                  Data->Cur = OldData->Cur + i * 8 * ((block&1) + Data->iEdgedWidth*(block>>1));
1164                    Data->qpel_precision = 0;
1165    
1166                  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,
1167                                  pParam->width, pParam->height, OldData->iFcode, pParam->m_quarterpel);                                          pParam->width, pParam->height, Data->iFcode - Data->qpel, 0, Data->rrv);
1168                  CheckCandidate = CheckCandidate8;  
1169                    if (!Data->rrv) CheckCandidate = CheckCandidate8;
1170                    else CheckCandidate = CheckCandidate16no4v;
1171    
1172                  if (MotionFlags & PMV_EXTSEARCH8) {                  if (MotionFlags & PMV_EXTSEARCH8) {
1173                          int32_t temp_sad = *(Data->iMinSAD); // store current MinSAD                          int32_t temp_sad = *(Data->iMinSAD); // store current MinSAD
# Line 1610  Line 1188 
1188                  if (MotionFlags & PMV_HALFPELREFINE8) {                  if (MotionFlags & PMV_HALFPELREFINE8) {
1189                          int32_t temp_sad = *(Data->iMinSAD); // store current MinSAD                          int32_t temp_sad = *(Data->iMinSAD); // store current MinSAD
1190    
1191                          HalfpelRefine(Data); // perform halfpel refine of current best vector                          SubpelRefine(Data); // perform halfpel refine of current best vector
1192    
1193                          if(*(Data->iMinSAD) < temp_sad) { // we have found a better match                          if(*(Data->iMinSAD) < temp_sad) { // we have found a better match
1194                                  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 1196 
1196                          }                          }
1197                  }                  }
1198    
1199                  if(pParam->m_quarterpel) {                  if (Data->qpel && MotionFlags & PMV_QUARTERPELREFINE8) {
1200                          if((!(Data->currentQMV->x & 1)) && (!(Data->currentQMV->y & 1)) &&                                  Data->qpel_precision = 1;
                                 (MotionFlags & PMV_QUARTERPELREFINE8)) {  
                         CheckCandidate = CheckCandidate8_qpel;  
1201                          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,
1202                                  pParam->width, pParam->height, OldData->iFcode, pParam->m_quarterpel);                                          pParam->width, pParam->height, Data->iFcode, 1, 0);
1203                          QuarterpelRefine(Data);                                  SubpelRefine(Data);
                         }  
1204                  }                  }
1205          }          }
1206    
1207          if(pParam->m_quarterpel) {          if (Data->rrv) {
1208                  pMB->pmvs[block].x = Data->currentQMV->x - Data->predQMV.x;                          Data->currentMV->x = RRV_MV_SCALEDOWN(Data->currentMV->x);
1209                  pMB->pmvs[block].y = Data->currentQMV->y - Data->predQMV.y;                          Data->currentMV->y = RRV_MV_SCALEDOWN(Data->currentMV->y);
1210          }          }
1211          else {  
1212            if(Data->qpel) {
1213                    pMB->pmvs[block].x = Data->currentQMV->x - Data->predMV.x;
1214                    pMB->pmvs[block].y = Data->currentQMV->y - Data->predMV.y;
1215                    pMB->qmvs[block] = *Data->currentQMV;
1216            } else {
1217                  pMB->pmvs[block].x = Data->currentMV->x - Data->predMV.x;                  pMB->pmvs[block].x = Data->currentMV->x - Data->predMV.x;
1218                  pMB->pmvs[block].y = Data->currentMV->y - Data->predMV.y;                  pMB->pmvs[block].y = Data->currentMV->y - Data->predMV.y;
1219          }          }
1220    
1221          pMB->mvs[block] = *(Data->currentMV);          pMB->mvs[block] = *Data->currentMV;
1222          pMB->qmvs[block] = *(Data->currentQMV);          pMB->sad8[block] = 4 * *Data->iMinSAD;
   
         pMB->sad8[block] =  4 * (*Data->iMinSAD);  
1223  }  }
1224    
1225  /* B-frames code starts here */  /* motion estimation for B-frames */
1226    
1227  static __inline VECTOR  static __inline VECTOR
1228  ChoosePred(const MACROBLOCK * const pMB, const uint32_t mode)  ChoosePred(const MACROBLOCK * const pMB, const uint32_t mode)
1229  {  {
1230  /* the stupidiest function ever */  /* the stupidiest function ever */
1231          if (mode == MODE_FORWARD) return pMB->mvs[0];          return (mode == MODE_FORWARD ? pMB->mvs[0] : pMB->b_mvs[0]);
         else return pMB->b_mvs[0];  
1232  }  }
1233    
1234  static void __inline  static void __inline
# Line 1684  Line 1261 
1261                  pmv[5].x = EVEN(pmv[5].x); pmv[5].y = EVEN(pmv[5].y);                  pmv[5].x = EVEN(pmv[5].x); pmv[5].y = EVEN(pmv[5].y);
1262          } else pmv[5].x = pmv[5].y = 0;          } else pmv[5].x = pmv[5].y = 0;
1263    
1264          if ((x != 0)&&(y != 0)) {          if (x != 0 && y != 0) {
1265                  pmv[6] = ChoosePred(pMB-1-iWcount, mode_curr);                  pmv[6] = ChoosePred(pMB-1-iWcount, mode_curr);
1266                  pmv[6].x = EVEN(pmv[5].x); pmv[5].y = EVEN(pmv[5].y);                  pmv[6].x = EVEN(pmv[6].x); pmv[6].y = EVEN(pmv[6].y);
1267          } else pmv[6].x = pmv[6].y = 0;          } else pmv[6].x = pmv[6].y = 0;
   
 // more?  
1268  }  }
1269    
1270    
1271  /* search backward or forward, for b-frames */  /* search backward or forward */
1272  static void  static void
1273  SearchBF(       const uint8_t * const pRef,  SearchBF(       const uint8_t * const pRef,
1274                          const uint8_t * const pRefH,                          const uint8_t * const pRefH,
# Line 1711  Line 1286 
1286                          SearchData * const Data)                          SearchData * const Data)
1287  {  {
1288    
1289          const int32_t iEdgedWidth = pParam->edged_width;          int i, iDirection = 255, mask;
   
         int i, iDirection, mask;  
1290          VECTOR pmv[7];          VECTOR pmv[7];
1291          MainSearchFunc *MainSearchPtr;          MainSearchFunc *MainSearchPtr;
1292          *Data->iMinSAD = MV_MAX_ERROR;          *Data->iMinSAD = MV_MAX_ERROR;
1293          Data->iFcode = iFcode;          Data->iFcode = iFcode;
1294            Data->qpel_precision = 0;
1295    
1296          Data->Ref = pRef + (x + y * iEdgedWidth) * 16;          Data->Ref = pRef + (x + y * Data->iEdgedWidth) * 16;
1297          Data->RefH = pRefH + (x + y * iEdgedWidth) * 16;          Data->RefH = pRefH + (x + y * Data->iEdgedWidth) * 16;
1298          Data->RefV = pRefV + (x + y * iEdgedWidth) * 16;          Data->RefV = pRefV + (x + y * Data->iEdgedWidth) * 16;
1299          Data->RefHV = pRefHV + (x + y * iEdgedWidth) * 16;          Data->RefHV = pRefHV + (x + y * Data->iEdgedWidth) * 16;
1300    
1301          Data->predMV = *predMV;          Data->predMV = *predMV;
1302    
1303          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,
1304                                  pParam->width, pParam->height, iFcode, pParam->m_quarterpel);                                  pParam->width, pParam->height, iFcode - Data->qpel, 0, 0);
1305    
1306          pmv[0] = Data->predMV;          pmv[0] = Data->predMV;
1307          if (Data->qpel) { pmv[0].x /= 2; pmv[0].y /= 2; }          if (Data->qpel) { pmv[0].x /= 2; pmv[0].y /= 2; }
1308    
1309          PreparePredictionsBF(pmv, x, y, pParam->mb_width, pMB, mode_current);          PreparePredictionsBF(pmv, x, y, pParam->mb_width, pMB, mode_current);
1310    
1311          Data->currentMV->x = Data->currentMV->y = 0;          Data->currentMV->x = Data->currentMV->y = 0;
   
1312          CheckCandidate = CheckCandidate16no4v;          CheckCandidate = CheckCandidate16no4v;
1313    
1314  // main loop. checking all predictions  // main loop. checking all predictions
1315          for (i = 0; i < 8; i++) {          for (i = 0; i < 7; i++) {
1316                  if (!(mask = make_mask(pmv, i)) ) continue;                  if (!(mask = make_mask(pmv, i)) ) continue;
1317                  CheckCandidate16no4v(pmv[i].x, pmv[i].y, mask, &iDirection, Data);                  CheckCandidate16no4v(pmv[i].x, pmv[i].y, mask, &iDirection, Data);
1318          }          }
1319    
1320          if (MotionFlags & PMV_USESQUARES16)          if (MotionFlags & PMV_USESQUARES16) MainSearchPtr = SquareSearch;
1321                  MainSearchPtr = SquareSearch;          else if (MotionFlags & PMV_ADVANCEDDIAMOND16) MainSearchPtr = AdvDiamondSearch;
         else if (MotionFlags & PMV_ADVANCEDDIAMOND16)  
                 MainSearchPtr = AdvDiamondSearch;  
1322                  else MainSearchPtr = DiamondSearch;                  else MainSearchPtr = DiamondSearch;
1323    
1324          (*MainSearchPtr)(Data->currentMV->x, Data->currentMV->y, Data, 255);          (*MainSearchPtr)(Data->currentMV->x, Data->currentMV->y, Data, iDirection);
1325    
1326          HalfpelRefine(Data);          SubpelRefine(Data);
1327    
1328          if (Data->qpel) {          if (Data->qpel && *Data->iMinSAD < *best_sad + 300) {
1329                  Data->currentQMV->x = 2*Data->currentMV->x;                  Data->currentQMV->x = 2*Data->currentMV->x;
1330                  Data->currentQMV->y = 2*Data->currentMV->y;                  Data->currentQMV->y = 2*Data->currentMV->y;
1331                  CheckCandidate = CheckCandidate16no4v_qpel;                  Data->qpel_precision = 1;
1332                  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,
1333                                          pParam->width, pParam->height, iFcode, pParam->m_quarterpel);                                          pParam->width, pParam->height, iFcode, 1, 0);
1334                  QuarterpelRefine(Data);                  SubpelRefine(Data);
1335          }          }
1336    
1337  // three bits are needed to code backward mode. four for forward  // three bits are needed to code backward mode. four for forward
1338  // we treat the bits just like they were vector's  
1339          if (mode_current == MODE_FORWARD) *Data->iMinSAD +=  4 * Data->lambda16;          if (mode_current == MODE_FORWARD) *Data->iMinSAD +=  4 * Data->lambda16;
1340          else *Data->iMinSAD +=  3 * Data->lambda16;          else *Data->iMinSAD +=  3 * Data->lambda16;
1341    
# Line 1781  Line 1353 
1353                          pMB->pmvs[0].x = Data->currentMV->x - predMV->x;                          pMB->pmvs[0].x = Data->currentMV->x - predMV->x;
1354                          pMB->pmvs[0].y = Data->currentMV->y - predMV->y;                          pMB->pmvs[0].y = Data->currentMV->y - predMV->y;
1355                  }                  }
1356                  if (mode_current == MODE_FORWARD)                  if (mode_current == MODE_FORWARD) pMB->mvs[0] = *Data->currentMV;
1357                          pMB->mvs[0] = *(Data->currentMV+2) = *Data->currentMV;                  else pMB->b_mvs[0] = *Data->currentMV;
1358                  else          }
1359                          pMB->b_mvs[0] = *(Data->currentMV+1) = *Data->currentMV; //we store currmv for interpolate search  
1360            if (mode_current == MODE_FORWARD) *(Data->currentMV+2) = *Data->currentMV;
1361            else *(Data->currentMV+1) = *Data->currentMV; //we store currmv for interpolate search
1362    }
1363    
1364    static void
1365    SkipDecisionB(const IMAGE * const pCur,
1366                                    const IMAGE * const f_Ref,
1367                                    const IMAGE * const b_Ref,
1368                                    MACROBLOCK * const pMB,
1369                                    const uint32_t x, const uint32_t y,
1370                                    const SearchData * const Data)
1371    {
1372            int dx = 0, dy = 0, b_dx = 0, b_dy = 0;
1373            int32_t sum;
1374            const int div = 1 + Data->qpel;
1375            int k;
1376            const uint32_t stride = Data->iEdgedWidth/2;
1377    //this is not full chroma compensation, only it's fullpel approximation. should work though
1378    
1379            for (k = 0; k < 4; k++) {
1380                    dy += Data->directmvF[k].y / div;
1381                    dx += Data->directmvF[0].x / div;
1382                    b_dy += Data->directmvB[0].y / div;
1383                    b_dx += Data->directmvB[0].x / div;
1384          }          }
1385    
1386            dy = (dy >> 3) + roundtab_76[dy & 0xf];
1387            dx = (dx >> 3) + roundtab_76[dx & 0xf];
1388            b_dy = (b_dy >> 3) + roundtab_76[b_dy & 0xf];
1389            b_dx = (b_dx >> 3) + roundtab_76[b_dx & 0xf];
1390    
1391            sum = sad8bi(pCur->u + 8 * x + 8 * y * stride,
1392                                            f_Ref->u + (y*8 + dy/2) * stride + x*8 + dx/2,
1393                                            b_Ref->u + (y*8 + b_dy/2) * stride + x*8 + b_dx/2,
1394                                            stride);
1395    
1396            if (sum >= 2 * MAX_CHROMA_SAD_FOR_SKIP * pMB->quant) return; //no skip
1397    
1398            sum += sad8bi(pCur->v + 8*x + 8 * y * stride,
1399                                            f_Ref->v + (y*8 + dy/2) * stride + x*8 + dx/2,
1400                                            b_Ref->v + (y*8 + b_dy/2) * stride + x*8 + b_dx/2,
1401                                            stride);
1402    
1403            if (sum < 2 * MAX_CHROMA_SAD_FOR_SKIP * pMB->quant) pMB->mode = MODE_DIRECT_NONE_MV; //skipped
1404  }  }
1405    
1406  static int32_t  static __inline uint32_t
1407  SearchDirect(const IMAGE * const f_Ref,  SearchDirect(const IMAGE * const f_Ref,
1408                                  const uint8_t * const f_RefH,                                  const uint8_t * const f_RefH,
1409                                  const uint8_t * const f_RefV,                                  const uint8_t * const f_RefV,
# Line 1811  Line 1424 
1424    
1425  {  {
1426          int32_t skip_sad;          int32_t skip_sad;
1427          int k;          int k = (x + Data->iEdgedWidth*y) * 16;
   
1428          MainSearchFunc *MainSearchPtr;          MainSearchFunc *MainSearchPtr;
1429    
1430          *Data->iMinSAD = 256*4096;          *Data->iMinSAD = 256*4096;
1431            Data->Ref = f_Ref->y + k;
1432            Data->RefH = f_RefH + k;
1433            Data->RefV = f_RefV + k;
1434            Data->RefHV = f_RefHV + k;
1435            Data->bRef = b_Ref->y + k;
1436            Data->bRefH = b_RefH + k;
1437            Data->bRefV = b_RefV + k;
1438            Data->bRefHV = b_RefHV + k;
1439    
1440            k = Data->qpel ? 4 : 2;
1441            Data->max_dx = k * (pParam->width - x * 16);
1442            Data->max_dy = k * (pParam->height - y * 16);
1443            Data->min_dx = -k * (16 + x * 16);
1444            Data->min_dy = -k * (16 + y * 16);
1445    
1446          Data->Ref = f_Ref->y + (x + Data->iEdgedWidth*y) * 16;          Data->referencemv = Data->qpel ? b_mb->qmvs : b_mb->mvs;
1447          Data->RefH = f_RefH + (x + Data->iEdgedWidth*y) * 16;          Data->qpel_precision = 0;
         Data->RefV = f_RefV + (x + Data->iEdgedWidth*y) * 16;  
         Data->RefHV = f_RefHV + (x + Data->iEdgedWidth*y) * 16;  
         Data->bRef = b_Ref->y + (x + Data->iEdgedWidth*y) * 16;  
         Data->bRefH = b_RefH + (x + Data->iEdgedWidth*y) * 16;  
         Data->bRefV = b_RefV + (x + Data->iEdgedWidth*y) * 16;  
         Data->bRefHV = b_RefHV + (x + Data->iEdgedWidth*y) * 16;  
   
         Data->max_dx = 2 * pParam->width - 2 * (x) * 16;  
         Data->max_dy = 2 * pParam->height - 2 * (y) * 16;  
         Data->min_dx = -(2 * 16 + 2 * (x) * 16);  
         Data->min_dy = -(2 * 16 + 2 * (y) * 16);  
         if (Data->qpel) { //we measure in qpixels  
                 Data->max_dx *= 2;  
                 Data->max_dy *= 2;  
                 Data->min_dx *= 2;  
                 Data->min_dy *= 2;  
                 Data->referencemv = b_mb->qmvs;  
         } else Data->referencemv = b_mb->mvs;  
1448    
1449          for (k = 0; k < 4; k++) {          for (k = 0; k < 4; k++) {
1450                  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 1844  Line 1452 
1452                  pMB->mvs[k].y = Data->directmvF[k].y = ((TRB * Data->referencemv[k].y) / TRD);                  pMB->mvs[k].y = Data->directmvF[k].y = ((TRB * Data->referencemv[k].y) / TRD);
1453                  pMB->b_mvs[k].y = Data->directmvB[k].y = ((TRB - TRD) * Data->referencemv[k].y) / TRD;                  pMB->b_mvs[k].y = Data->directmvB[k].y = ((TRB - TRD) * Data->referencemv[k].y) / TRD;
1454    
1455                  if ( ( pMB->b_mvs[k].x > Data->max_dx ) || ( pMB->b_mvs[k].x < Data->min_dx )                  if ( (pMB->b_mvs[k].x > Data->max_dx) | (pMB->b_mvs[k].x < Data->min_dx)
1456                          || ( pMB->b_mvs[k].y > Data->max_dy ) || ( pMB->b_mvs[k].y < Data->min_dy )) {                          | (pMB->b_mvs[k].y > Data->max_dy) | (pMB->b_mvs[k].y < Data->min_dy) ) {
1457    
1458                          *best_sad = 256*4096; // in that case, we won't use direct mode                          *best_sad = 256*4096; // in that case, we won't use direct mode
1459                          pMB->mode = MODE_DIRECT; // just to make sure it doesn't say "MODE_DIRECT_NONE_MV"                          pMB->mode = MODE_DIRECT; // just to make sure it doesn't say "MODE_DIRECT_NONE_MV"
1460                          pMB->b_mvs[0].x = pMB->b_mvs[0].y = 0;                          pMB->b_mvs[0].x = pMB->b_mvs[0].y = 0;
1461                          return 0;                          return 256*4096;
1462                  }                  }
1463                  if (b_mb->mode != MODE_INTER4V) {                  if (b_mb->mode != MODE_INTER4V) {
1464                          pMB->mvs[1] = pMB->mvs[2] = pMB->mvs[3] = pMB->mvs[0];                          pMB->mvs[1] = pMB->mvs[2] = pMB->mvs[3] = pMB->mvs[0];
# Line 1861  Line 1469 
1469                  }                  }
1470          }          }
1471    
1472          if (Data->qpel) {          CheckCandidate = b_mb->mode == MODE_INTER4V ? CheckCandidateDirect : CheckCandidateDirectno4v;
                         if (b_mb->mode == MODE_INTER4V)  
                 CheckCandidate = CheckCandidateDirect_qpel;  
                         else CheckCandidate = CheckCandidateDirectno4v_qpel;  
         } else {  
                         if (b_mb->mode == MODE_INTER4V) CheckCandidate = CheckCandidateDirect;  
                         else CheckCandidate = CheckCandidateDirectno4v;  
         }  
1473    
1474          (*CheckCandidate)(0, 0, 255, &k, Data);          (*CheckCandidate)(0, 0, 255, &k, Data);
1475    
1476  // skip decision  // initial (fast) skip decision
1477          if (*Data->iMinSAD < pMB->quant * SKIP_THRESH_B) {          if (*Data->iMinSAD < pMB->quant * INITIAL_SKIP_THRESH * 2) {
1478                  //possible skip - checking chroma. everything copied from MC                  //possible skip - checking chroma
1479                  //this is not full chroma compensation, only it's fullpel approximation. should work though                  SkipDecisionB(pCur, f_Ref, b_Ref, pMB, x, y, Data);
1480                  int sum, dx, dy, b_dx, b_dy;                  if (pMB->mode == MODE_DIRECT_NONE_MV) return *Data->iMinSAD; // skip.
   
                 if (Data->qpel) {  
                         sum = pMB->mvs[0].y/2 + pMB->mvs[1].y/2 + pMB->mvs[2].y/2 + pMB->mvs[3].y/2;  
                         dy = (sum >> 3) + roundtab_76[sum & 0xf];  
                         sum = pMB->mvs[0].x/2 + pMB->mvs[1].x/2 + pMB->mvs[2].x/2 + pMB->mvs[3].x/2;  
                         dx = (sum >> 3) + roundtab_76[sum & 0xf];  
   
                         sum = pMB->b_mvs[0].y/2 + pMB->b_mvs[1].y/2 + pMB->b_mvs[2].y/2 + pMB->b_mvs[3].y/2;  
                         b_dy = (sum >> 3) + roundtab_76[sum & 0xf];  
                         sum = pMB->b_mvs[0].x/2 + pMB->b_mvs[1].x/2 + pMB->b_mvs[2].x/2 + pMB->b_mvs[3].x/2;  
                         b_dx = (sum >> 3) + roundtab_76[sum & 0xf];  
   
                 } else {  
                         sum = pMB->mvs[0].x + pMB->mvs[1].x + pMB->mvs[2].x + pMB->mvs[3].x;  
                         dx = (sum == 0 ? 0 : SIGN(sum) * (roundtab[ABS(sum) % 16] + (ABS(sum) / 16) * 2));  
                         sum = pMB->mvs[0].y + pMB->mvs[1].y + pMB->mvs[2].y + pMB->mvs[3].y;  
                         dy = (sum == 0 ? 0 : SIGN(sum) * (roundtab[ABS(sum) % 16] + (ABS(sum) / 16) * 2));  
   
                         sum = pMB->b_mvs[0].x + pMB->b_mvs[1].x + pMB->b_mvs[2].x + pMB->b_mvs[3].x;  
                         b_dx = (sum == 0 ? 0 : SIGN(sum) * (roundtab[ABS(sum) % 16] + (ABS(sum) / 16) * 2));  
                         sum = pMB->b_mvs[0].y + pMB->b_mvs[1].y + pMB->b_mvs[2].y + pMB->b_mvs[3].y;  
                         b_dy = (sum == 0 ? 0 : SIGN(sum) * (roundtab[ABS(sum) % 16] + (ABS(sum) / 16) * 2));  
                 }  
                 sum = sad8bi(pCur->u + 8*x + 8*y*(Data->iEdgedWidth/2),  
                                         f_Ref->u + (y*8 + dy/2) * (Data->iEdgedWidth/2) + x*8 + dx/2,  
                                         b_Ref->u + (y*8 + b_dy/2) * (Data->iEdgedWidth/2) + x*8 + b_dx/2,  
                                         Data->iEdgedWidth/2);  
                 sum += sad8bi(pCur->v + 8*x + 8*y*(Data->iEdgedWidth/2),  
                                         f_Ref->v + (y*8 + dy/2) * (Data->iEdgedWidth/2) + x*8 + dx/2,  
                                         b_Ref->v + (y*8 + b_dy/2) * (Data->iEdgedWidth/2) + x*8 + b_dx/2,  
                                         Data->iEdgedWidth/2);  
   
                 if (sum < MAX_CHROMA_SAD_FOR_SKIP * pMB->quant) {  
                         pMB->mode = MODE_DIRECT_NONE_MV;  
                         return *Data->iMinSAD;  
                 }  
1481          }          }
1482    
1483          skip_sad = *Data->iMinSAD;          skip_sad = *Data->iMinSAD;
# Line 1926  Line 1491 
1491    
1492          (*MainSearchPtr)(0, 0, Data, 255);          (*MainSearchPtr)(0, 0, Data, 255);
1493    
1494          HalfpelRefine(Data); //or qpel refine, if we're in qpel mode          SubpelRefine(Data);
1495    
         *Data->iMinSAD +=  1 * Data->lambda16; // one bit is needed to code direct mode  
1496          *best_sad = *Data->iMinSAD;          *best_sad = *Data->iMinSAD;
1497    
1498          if (b_mb->mode == MODE_INTER4V)          if (Data->qpel || b_mb->mode == MODE_INTER4V) pMB->mode = MODE_DIRECT;
                 pMB->mode = MODE_DIRECT;  
1499          else pMB->mode = MODE_DIRECT_NO4V; //for faster compensation          else pMB->mode = MODE_DIRECT_NO4V; //for faster compensation
1500    
1501          pMB->pmvs[3] = *Data->currentMV;          pMB->pmvs[3] = *Data->currentMV;
# Line 1964  Line 1527 
1527          return skip_sad;          return skip_sad;
1528  }  }
1529    
1530    static void
 static __inline void  
1531  SearchInterpolate(const uint8_t * const f_Ref,  SearchInterpolate(const uint8_t * const f_Ref,
1532                                  const uint8_t * const f_RefH,                                  const uint8_t * const f_RefH,
1533                                  const uint8_t * const f_RefV,                                  const uint8_t * const f_RefV,
# Line 1988  Line 1550 
1550    
1551  {  {
1552    
         const int32_t iEdgedWidth = pParam->edged_width;  
1553          int iDirection, i, j;          int iDirection, i, j;
1554          SearchData bData;          SearchData bData;
1555    
1556          *(bData.iMinSAD = fData->iMinSAD) = 4096*256;          fData->qpel_precision = 0;
1557          bData.Cur = fData->Cur;          memcpy(&bData, fData, sizeof(SearchData)); //quick copy of common data
1558          fData->iEdgedWidth = bData.iEdgedWidth = iEdgedWidth;          *fData->iMinSAD = 4096*256;
1559          bData.currentMV = fData->currentMV + 1; bData.currentQMV = fData->currentQMV + 1;          bData.currentMV++; bData.currentQMV++;
         bData.lambda16 = fData->lambda16;  
1560          fData->iFcode = bData.bFcode = fcode; fData->bFcode = bData.iFcode = bcode;          fData->iFcode = bData.bFcode = fcode; fData->bFcode = bData.iFcode = bcode;
1561    
1562          bData.bRef = fData->Ref = f_Ref + (x + y * iEdgedWidth) * 16;          i = (x + y * fData->iEdgedWidth) * 16;
1563          bData.bRefH = fData->RefH = f_RefH + (x + y * iEdgedWidth) * 16;          bData.bRef = fData->Ref = f_Ref + i;
1564          bData.bRefV = fData->RefV = f_RefV + (x + y * iEdgedWidth) * 16;          bData.bRefH = fData->RefH = f_RefH + i;
1565          bData.bRefHV = fData->RefHV = f_RefHV + (x + y * iEdgedWidth) * 16;          bData.bRefV = fData->RefV = f_RefV + i;
1566          bData.Ref = fData->bRef = b_Ref + (x + y * iEdgedWidth) * 16;          bData.bRefHV = fData->RefHV = f_RefHV + i;
1567          bData.RefH = fData->bRefH = b_RefH + (x + y * iEdgedWidth) * 16;          bData.Ref = fData->bRef = b_Ref + i;
1568          bData.RefV = fData->bRefV = b_RefV + (x + y * iEdgedWidth) * 16;          bData.RefH = fData->bRefH = b_RefH + i;
1569          bData.RefHV = fData->bRefHV = b_RefHV + (x + y * iEdgedWidth) * 16;          bData.RefV = fData->bRefV = b_RefV + i;
1570          bData.RefQ = fData->RefQ;          bData.RefHV = fData->bRefHV = b_RefHV + i;
1571    
1572          bData.bpredMV = fData->predMV = *f_predMV;          bData.bpredMV = fData->predMV = *f_predMV;
1573          fData->bpredMV = bData.predMV = *b_predMV;          fData->bpredMV = bData.predMV = *b_predMV;
   
1574          fData->currentMV[0] = fData->currentMV[2];          fData->currentMV[0] = fData->currentMV[2];
1575          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);  
1576          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(&fData->min_dx, &fData->max_dx, &fData->min_dy, &fData->max_dy, x, y, 16, pParam->width, pParam->height, fcode - fData->qpel, 0, 0);
1577            get_range(&bData.min_dx, &bData.max_dx, &bData.min_dy, &bData.max_dy, x, y, 16, pParam->width, pParam->height, bcode - fData->qpel, 0, 0);
1578    
1579          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;
1580          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;
1581          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;
1582          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;
1583    
1584          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;
1585          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;
1586          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;
1587          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;
1588    
1589          CheckCandidateInt(fData->currentMV[0].x, fData->currentMV[0].y, 255, &iDirection, fData);          CheckCandidateInt(fData->currentMV[0].x, fData->currentMV[0].y, 255, &iDirection, fData);
1590    
1591  //diamond. I wish we could use normal mainsearch functions (square, advdiamond)  //diamond
   
1592          do {          do {
1593                  iDirection = 255;                  iDirection = 255;
1594                  // forward MV moves                  // forward MV moves
# Line 2050  Line 1609 
1609    
1610          } while (!(iDirection));          } while (!(iDirection));
1611    
1612          *fData->iMinSAD +=  2 * fData->lambda16; // two bits are needed to code interpolate mode.  //qpel refinement
   
1613          if (fData->qpel) {          if (fData->qpel) {
1614                  CheckCandidate = CheckCandidateInt_qpel;                  if (*fData->iMinSAD > *best_sad + 500) return;
1615                  get_range(&fData->min_dx, &fData->max_dx, &fData->min_dy, &fData->max_dy, x, y, 16, pParam->width, pParam->height, fcode, 0);                  CheckCandidate = CheckCandidateInt;
1616                  get_range(&bData.min_dx, &bData.max_dx, &bData.min_dy, &bData.max_dy, x, y, 16, pParam->width, pParam->height, bcode, 0);                  fData->qpel_precision = bData.qpel_precision = 1;
1617                    get_range(&fData->min_dx, &fData->max_dx, &fData->min_dy, &fData->max_dy, x, y, 16, pParam->width, pParam->height, fcode, 1, 0);
1618                    get_range(&bData.min_dx, &bData.max_dx, &bData.min_dy, &bData.max_dy, x, y, 16, pParam->width, pParam->height, bcode, 1, 0);
1619                  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;
1620                  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;
1621                  fData->currentQMV[1].x = 2 * fData->currentMV[1].x;                  fData->currentQMV[1].x = 2 * fData->currentMV[1].x;
1622                  fData->currentQMV[1].y = 2 * fData->currentMV[1].y;                  fData->currentQMV[1].y = 2 * fData->currentMV[1].y;
1623  //              QuarterpelRefine(fData);                  SubpelRefine(fData);
1624                    if (*fData->iMinSAD > *best_sad + 300) return;
1625                  fData->currentQMV[2] = fData->currentQMV[0];                  fData->currentQMV[2] = fData->currentQMV[0];
1626  //              QuarterpelRefine(&bData);                  SubpelRefine(&bData);
1627          }          }
1628    
1629            *fData->iMinSAD += (2+3) * fData->lambda16; // two bits are needed to code interpolate mode.
1630    
1631          if (*fData->iMinSAD < *best_sad) {          if (*fData->iMinSAD < *best_sad) {
1632                  *best_sad = *fData->iMinSAD;                  *best_sad = *fData->iMinSAD;
1633                  pMB->mvs[0] = fData->currentMV[0];                  pMB->mvs[0] = fData->currentMV[0];
# Line 2105  Line 1668 
1668                                           const IMAGE * const b_refHV)                                           const IMAGE * const b_refHV)
1669  {  {
1670          uint32_t i, j;          uint32_t i, j;
1671          int32_t best_sad, skip_sad;          int32_t best_sad;
1672            uint32_t skip_sad;
1673          int f_count = 0, b_count = 0, i_count = 0, d_count = 0, n_count = 0;          int f_count = 0, b_count = 0, i_count = 0, d_count = 0, n_count = 0;
         static const VECTOR zeroMV={0,0};  
1674          const MACROBLOCK * const b_mbs = b_reference->mbs;          const MACROBLOCK * const b_mbs = b_reference->mbs;
1675    
1676          VECTOR f_predMV, b_predMV;      /* there is no prediction for direct mode*/          VECTOR f_predMV, b_predMV;      /* there is no prediction for direct mode*/
1677    
1678          const int32_t TRB = time_pp - time_bp;          const int32_t TRB = time_pp - time_bp;
1679          const int32_t TRD = time_pp;          const int32_t TRD = time_pp;
         uint8_t * qimage;  
1680    
1681  // some pre-inintialized data for the rest of the search  // some pre-inintialized data for the rest of the search
1682    
# Line 2122  Line 1684 
1684          int32_t iMinSAD;          int32_t iMinSAD;
1685          VECTOR currentMV[3];          VECTOR currentMV[3];
1686          VECTOR currentQMV[3];          VECTOR currentQMV[3];
1687            memset(&Data, 0, sizeof(SearchData));
1688          Data.iEdgedWidth = pParam->edged_width;          Data.iEdgedWidth = pParam->edged_width;
1689          Data.currentMV = currentMV; Data.currentQMV = currentQMV;          Data.currentMV = currentMV; Data.currentQMV = currentQMV;
1690          Data.iMinSAD = &iMinSAD;          Data.iMinSAD = &iMinSAD;
1691          Data.lambda16 = lambda_vec16[frame->quant];          Data.lambda16 = lambda_vec16[frame->quant];
1692            Data.chroma = frame->quant;
1693          Data.qpel = pParam->m_quarterpel;          Data.qpel = pParam->m_quarterpel;
1694            Data.rounding = 0;
1695    
1696          if((qimage = (uint8_t *) malloc(32 * pParam->edged_width)) == NULL)          Data.RefQ = f_refV->u; // a good place, also used in MC (for similar purpose)
                 return; // allocate some mem for qpel interpolated blocks  
                                   // somehow this is dirty since I think we shouldn't use malloc outside  
                                   // encoder_create() - so please fix me!  
         Data.RefQ = qimage;  
   
1697          // note: i==horizontal, j==vertical          // note: i==horizontal, j==vertical
1698          for (j = 0; j < pParam->mb_height; j++) {          for (j = 0; j < pParam->mb_height; j++) {
1699    
# Line 2185  Line 1745 
1745                                                  MODE_BACKWARD, &Data);                                                  MODE_BACKWARD, &Data);
1746    
1747                          // interpolate search comes last, because it uses data from forward and backward as prediction                          // interpolate search comes last, because it uses data from forward and backward as prediction
 /*  
1748                          SearchInterpolate(f_ref->y, f_refH->y, f_refV->y, f_refHV->y,                          SearchInterpolate(f_ref->y, f_refH->y, f_refV->y, f_refHV->y,
1749                                                  b_ref->y, b_refH->y, b_refV->y, b_refHV->y,                                                  b_ref->y, b_refH->y, b_refV->y, b_refHV->y,
1750                                                  &frame->image,                                                  &frame->image,
# Line 2196  Line 1755 
1755                                                  &f_predMV, &b_predMV,                                                  &f_predMV, &b_predMV,
1756                                                  pMB, &best_sad,                                                  pMB, &best_sad,
1757                                                  &Data);                                                  &Data);
1758  */  
1759    // final skip decision
1760                            if ( (skip_sad < frame->quant * MAX_SAD00_FOR_SKIP*2)
1761                                            && ((100*best_sad)/(skip_sad+1) > FINAL_SKIP_THRESH) )
1762                                    SkipDecisionB(&frame->image, f_ref, b_ref, pMB, i, j, &Data);
1763    
1764                          switch (pMB->mode) {                          switch (pMB->mode) {
1765                                  case MODE_FORWARD:                                  case MODE_FORWARD:
1766                                          f_count++;                                          f_count++;
1767                                          if (pParam->m_quarterpel) f_predMV = pMB->qmvs[0];                                          f_predMV = Data.qpel ? pMB->qmvs[0] : pMB->mvs[0];
                                         else f_predMV = pMB->mvs[0];  
1768                                          break;                                          break;
1769                                  case MODE_BACKWARD:                                  case MODE_BACKWARD:
1770                                          b_count++;                                          b_count++;
1771                                          if (pParam->m_quarterpel) b_predMV = pMB->b_qmvs[0];                                          b_predMV = Data.qpel ? pMB->b_qmvs[0] : pMB->b_mvs[0];
                                         else b_predMV = pMB->b_mvs[0];  
1772                                          break;                                          break;
1773                                  case MODE_INTERPOLATE:                                  case MODE_INTERPOLATE:
1774                                          i_count++;                                          i_count++;
1775                                          if (pParam->m_quarterpel) {                                          f_predMV = Data.qpel ? pMB->qmvs[0] : pMB->mvs[0];
1776                                                  f_predMV = pMB->qmvs[0];                                          b_predMV = Data.qpel ? pMB->b_qmvs[0] : pMB->b_mvs[0];
                                                 b_predMV = pMB->b_qmvs[0];  
                                         } else {  
                                                 f_predMV = pMB->mvs[0];  
                                                 b_predMV = pMB->b_mvs[0];  
                                         }  
1777                                          break;                                          break;
1778                                  case MODE_DIRECT:                                  case MODE_DIRECT:
1779                                  case MODE_DIRECT_NO4V:                                  case MODE_DIRECT_NO4V:
1780                                          d_count++;                                          d_count++;
                                         break;  
1781                                  default:                                  default:
1782                                          break;                                          break;
1783                          }                          }
1784                  }                  }
1785          }          }
         free(qimage);  
 }  
   
 /* Hinted ME starts here */  
   
 static void  
 SearchPhinted ( const IMAGE * const pRef,  
                                 const uint8_t * const pRefH,  
                                 const uint8_t * const pRefV,  
                                 const uint8_t * const pRefHV,  
                                 const IMAGE * const pCur,  
                                 const int x,  
                                 const int y,  
                                 const uint32_t MotionFlags,  
                                 const uint32_t iQuant,  
                                 const MBParam * const pParam,  
                                 const MACROBLOCK * const pMBs,  
                                 int inter4v,  
                                 MACROBLOCK * const pMB,  
                                 SearchData * const Data)  
 {  
   
         int i, t;  
         MainSearchFunc * MainSearchPtr;  
   
         Data->predMV = get_pmv2(pMBs, pParam->mb_width, 0, x, y, 0);  
         Data->predQMV = get_qpmv2(pMBs, pParam->mb_width, 0, x, y, 0);  
         get_range(&Data->min_dx, &Data->max_dx, &Data->min_dy, &Data->max_dy, x, y, 16,  
                                 pParam->width, pParam->height, Data->iFcode, pParam->m_quarterpel);  
   
         Data->Cur = pCur->y + (x + y * Data->iEdgedWidth) * 16;  
         Data->CurV = pCur->v + (x + y * (Data->iEdgedWidth/2)) * 8;  
         Data->CurU = pCur->u + (x + y * (Data->iEdgedWidth/2)) * 8;  
   
         Data->Ref = pRef->y + (x + Data->iEdgedWidth*y) * 16;  
         Data->RefH = pRefH + (x + Data->iEdgedWidth*y) * 16;  
         Data->RefV = pRefV + (x + Data->iEdgedWidth*y) * 16;  
         Data->RefHV = pRefHV + (x + Data->iEdgedWidth*y) * 16;  
         Data->RefCV = pRef->v + (x + y * (Data->iEdgedWidth/2)) * 8;  
         Data->RefCU = pRef->u + (x + y * (Data->iEdgedWidth/2)) * 8;  
   
         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);  
         }  
   
         for(i = 0; i < 5; i++) Data->iMinSAD[i] = MV_MAX_ERROR;  
   
         if (pMB->dquant != NO_CHANGE) inter4v = 0;  
   
         if (inter4v || pParam->m_quarterpel || Data->chroma) CheckCandidate = CheckCandidate16;  
         else CheckCandidate = CheckCandidate16no4v;  
   
         pMB->mvs[0].x = EVEN(pMB->mvs[0].x);  
         pMB->mvs[0].y = EVEN(pMB->mvs[0].y);  
         if (pMB->mvs[0].x > Data->max_dx) pMB->mvs[0].x = Data->max_dx; // this is in case iFcode changed  
         if (pMB->mvs[0].x < Data->min_dx) pMB->mvs[0].x = Data->min_dx;  
         if (pMB->mvs[0].y > Data->max_dy) pMB->mvs[0].y = Data->max_dy;  
         if (pMB->mvs[0].y < Data->min_dy) pMB->mvs[0].y = Data->min_dy;  
   
         (*CheckCandidate)(pMB->mvs[0].x, pMB->mvs[0].y, 0, &t, Data);  
   
         if (pMB->mode == MODE_INTER4V)  
                 for (i = 1; i < 4; i++) { // all four vectors will be used as four predictions for 16x16 search  
                         pMB->mvs[i].x = EVEN(pMB->mvs[i].x);  
                         pMB->mvs[i].y = EVEN(pMB->mvs[i].y);  
                         if (!(make_mask(pMB->mvs, i)))  
                                 (*CheckCandidate)(pMB->mvs[i].x, pMB->mvs[i].y, 0, &t, Data);  
                 }  
   
         if (MotionFlags & PMV_USESQUARES16)  
                 MainSearchPtr = SquareSearch;  
         else if (MotionFlags & PMV_ADVANCEDDIAMOND16)  
                 MainSearchPtr = AdvDiamondSearch;  
                 else MainSearchPtr = DiamondSearch;  
   
         (*MainSearchPtr)(Data->currentMV->x, Data->currentMV->y, Data, 255);  
   
         if (MotionFlags & PMV_HALFPELREFINE16) HalfpelRefine(Data);  
   
         for(i = 0; i < 5; i++) {  
                 Data->currentQMV[i].x = 2 * Data->currentMV[i].x; // initialize qpel vectors  
                 Data->currentQMV[i].y = 2 * Data->currentMV[i].y;  
         }  
   
         if((pParam->m_quarterpel) && (MotionFlags & PMV_QUARTERPELREFINE16)) {  
                 get_range(&Data->min_dx, &Data->max_dx, &Data->min_dy, &Data->max_dy, x, y, 16,  
                                 pParam->width, pParam->height, Data->iFcode, 0);  
                 CheckCandidate = CheckCandidate16_qpel;  
                 QuarterpelRefine(Data);  
         }  
   
         if (inter4v) {  
                 SearchData Data8;  
                 Data8.iFcode = Data->iFcode;  
                 Data8.lambda8 = Data->lambda8;  
                 Data8.iEdgedWidth = Data->iEdgedWidth;  
                 Data8.RefQ = Data->RefQ;  
                 Data8.qpel = Data->qpel;  
                 Search8(Data, 2*x, 2*y, MotionFlags, pParam, pMB, pMBs, 0, &Data8);  
                 Search8(Data, 2*x + 1, 2*y, MotionFlags, pParam, pMB, pMBs, 1, &Data8);  
                 Search8(Data, 2*x, 2*y + 1, MotionFlags, pParam, pMB, pMBs, 2, &Data8);  
                 Search8(Data, 2*x + 1, 2*y + 1, MotionFlags, pParam, pMB, pMBs, 3, &Data8);  
   
                 if (Data->chroma) {  
                         int sum, dx, dy;  
   
                         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);  
                         Data->iMinSAD[1] += ChromaSAD(dx, dy, Data);  
                 }  
         }  
   
         if (!(inter4v) ||  
                 (Data->iMinSAD[0] < Data->iMinSAD[1] + Data->iMinSAD[2] + Data->iMinSAD[3] +  
                                                         Data->iMinSAD[4] + IMV16X16 * (int32_t)iQuant )) {  
 // INTER MODE  
                 pMB->mode = MODE_INTER;  
                 pMB->mvs[0] = pMB->mvs[1]  
                         = pMB->mvs[2] = pMB->mvs[3] = Data->currentMV[0];  
   
                 pMB->qmvs[0] = pMB->qmvs[1]  
                         = pMB->qmvs[2] = pMB->qmvs[3] = Data->currentQMV[0];  
   
                 pMB->sad16 = pMB->sad8[0] = pMB->sad8[1] =  
                         pMB->sad8[2] = pMB->sad8[3] =  Data->iMinSAD[0];  
   
                 if(pParam->m_quarterpel) {  
                         pMB->pmvs[0].x = Data->currentQMV[0].x - Data->predQMV.x;  
                         pMB->pmvs[0].y = Data->currentQMV[0].y - Data->predQMV.y;  
                 } else {  
                         pMB->pmvs[0].x = Data->currentMV[0].x - Data->predMV.x;  
                         pMB->pmvs[0].y = Data->currentMV[0].y - Data->predMV.y;  
                 }  
         } else {  
 // INTER4V MODE; all other things are already set in Search8  
                 pMB->mode = MODE_INTER4V;  
                 pMB->sad16 = Data->iMinSAD[1] + Data->iMinSAD[2] + Data->iMinSAD[3]  
                                                 + Data->iMinSAD[4] + IMV16X16 * iQuant;  
         }  
   
 }  
   
 void  
 MotionEstimationHinted( MBParam * const pParam,  
                                                 FRAMEINFO * const current,  
                                                 FRAMEINFO * const reference,  
                                                 const IMAGE * const pRefH,  
                                                 const IMAGE * const pRefV,  
                                                 const IMAGE * const pRefHV)  
 {  
         MACROBLOCK *const pMBs = current->mbs;  
         const IMAGE *const pCurrent = &current->image;  
         const IMAGE *const pRef = &reference->image;  
   
         uint32_t x, y;  
         uint8_t * qimage;  
         int32_t temp[5], quant = current->quant;  
         int32_t iMinSAD[5];  
         VECTOR currentMV[5], currentQMV[5];  
         SearchData Data;  
         Data.iEdgedWidth = pParam->edged_width;  
         Data.currentMV = currentMV;  
         Data.currentQMV = currentQMV;  
         Data.iMinSAD = iMinSAD;  
         Data.temp = temp;  
         Data.iFcode = current->fcode;  
         Data.rounding = pParam->m_rounding_type;  
         Data.qpel = pParam->m_quarterpel;  
         Data.chroma = current->global_flags & XVID_ME_COLOUR;  
   
         if((qimage = (uint8_t *) malloc(32 * pParam->edged_width)) == NULL)  
                 return; // allocate some mem for qpel interpolated blocks  
                                   // somehow this is dirty since I think we shouldn't use malloc outside  
                                   // encoder_create() - so please fix me!  
   
         Data.RefQ = qimage;  
   
         if (sadInit) (*sadInit) ();  
   
         for (y = 0; y < pParam->mb_height; y++) {  
                 for (x = 0; x < pParam->mb_width; x++)  {  
   
                         MACROBLOCK *pMB = &pMBs[x + y * pParam->mb_width];  
   
 //intra mode is copied from the first pass. At least for the time being  
                         if  ((pMB->mode == MODE_INTRA) || (pMB->mode == MODE_NOT_CODED) ) continue;  
   
                         if (!(current->global_flags & XVID_LUMIMASKING)) {  
                                 pMB->dquant = NO_CHANGE;  
                                 pMB->quant = current->quant; }  
                         else {  
                                 if (pMB->dquant != NO_CHANGE) {  
                                         quant += DQtab[pMB->dquant];  
                                         if (quant > 31) quant = 31;  
                                         else if (quant < 1) quant = 1;  
                                 }  
                                 pMB->quant = quant;  
                         }  
   
                         SearchPhinted(pRef, pRefH->y, pRefV->y, pRefHV->y, pCurrent, x,  
                                                         y, current->motion_flags, pMB->quant,  
                                                         pParam, pMBs, current->global_flags & XVID_INTER4V, pMB,  
                                                         &Data);  
   
                 }  
         }  
         free(qimage);  
1786  }  }
1787    
1788  static __inline int  static __inline void
1789  MEanalyzeMB (   const uint8_t * const pRef,  MEanalyzeMB (   const uint8_t * const pRef,
1790                                  const uint8_t * const pCur,                                  const uint8_t * const pCur,
1791                                  const int x,                                  const int x,
1792                                  const int y,                                  const int y,
1793                                  const MBParam * const pParam,                                  const MBParam * const pParam,
1794                                  const MACROBLOCK * const pMBs,                                  MACROBLOCK * const pMBs,
                                 MACROBLOCK * const pMB,  
1795                                  SearchData * const Data)                                  SearchData * const Data)
1796  {  {
1797    
1798          int i = 255, mask;          int i, mask;
1799          VECTOR pmv[3];          VECTOR pmv[3];
1800          *(Data->iMinSAD) = MV_MAX_ERROR;          MACROBLOCK * pMB = &pMBs[x + y * pParam->mb_width];
1801    
1802            for (i = 0; i < 5; i++) Data->iMinSAD[i] = MV_MAX_ERROR;
1803    
1804          //median is only used as prediction. it doesn't have to be real          //median is only used as prediction. it doesn't have to be real
1805          if (x == 1 && y == 1) Data->predMV.x = Data->predMV.y = 0;          if (x == 1 && y == 1) Data->predMV.x = Data->predMV.y = 0;
1806          else          else
1807                  if (x == 1) //left macroblock does not have any vector now                  if (x == 1) //left macroblock does not have any vector now
1808                          Data->predMV = (pMB - pParam->mb_width)->mvs[0]; // top instead of median                          Data->predMV = (pMB - pParam->mb_width)->mvs[0]; // top instead of median
1809                  else if (y == 1) // top macroblock don't have it's vector                  else if (y == 1) // top macroblock doesn't have it's vector
1810                          Data->predMV = (pMB - 1)->mvs[0]; // left instead of median                          Data->predMV = (pMB - 1)->mvs[0]; // left instead of median
1811                          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
1812    
1813          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,
1814                                  pParam->width, pParam->height, Data->iFcode, pParam->m_quarterpel);                                  pParam->width, pParam->height, Data->iFcode - pParam->m_quarterpel, 0, Data->rrv);
1815    
1816          Data->Cur = pCur + (x + y * pParam->edged_width) * 16;          Data->Cur = pCur + (x + y * pParam->edged_width) * 16;
1817          Data->Ref = pRef + (x + y * pParam->edged_width) * 16;          Data->Ref = pRef + (x + y * pParam->edged_width) * 16;
# Line 2484  Line 1822 
1822          pmv[2].y = EVEN(Data->predMV.y);          pmv[2].y = EVEN(Data->predMV.y);
1823          pmv[0].x = pmv[0].y = 0;          pmv[0].x = pmv[0].y = 0;
1824    
1825          (*CheckCandidate)(0, 0, 255, &i, Data);          CheckCandidate32I(0, 0, 255, &i, Data);
1826    
1827  //early skip for 0,0          if (*Data->iMinSAD > 4 * MAX_SAD00_FOR_SKIP * 4) {
         if (*Data->iMinSAD < MAX_SAD00_FOR_SKIP * 4) {  
                 pMB->mvs[0] = pMB->mvs[1] = pMB->mvs[2] = pMB->mvs[3] = Data->currentMV[0];  
                 pMB->mode = MODE_NOT_CODED;  
                 return 0;  
         }  
1828    
1829          if (!(mask = make_mask(pmv, 1)))          if (!(mask = make_mask(pmv, 1)))
1830                  (*CheckCandidate)(pmv[1].x, pmv[1].y, mask, &i, Data);                          CheckCandidate32I(pmv[1].x, pmv[1].y, mask, &i, Data);
1831          if (!(mask = make_mask(pmv, 2)))          if (!(mask = make_mask(pmv, 2)))
1832                  (*CheckCandidate)(pmv[2].x, pmv[2].y, mask, &i, Data);                          CheckCandidate32I(pmv[2].x, pmv[2].y, mask, &i, Data);
1833    
1834          if (*Data->iMinSAD > MAX_SAD00_FOR_SKIP * 4) // diamond only if needed                  if (*Data->iMinSAD > 4 * MAX_SAD00_FOR_SKIP * 4) // diamond only if needed
1835                  DiamondSearch(Data->currentMV->x, Data->currentMV->y, Data, i);                  DiamondSearch(Data->currentMV->x, Data->currentMV->y, Data, i);
1836    
1837          pMB->mvs[0] = pMB->mvs[1] = pMB->mvs[2] = pMB->mvs[3] = Data->currentMV[0];                  for (i = 0; i < 4; i++) {
1838          pMB->mode = MODE_INTER;                          MACROBLOCK * MB = &pMBs[x + (i&1) + (y+(i>>1)) * pParam->mb_width];
1839          return *(Data->iMinSAD);                          MB->mvs[0] = MB->mvs[1] = MB->mvs[2] = MB->mvs[3] = Data->currentMV[i];
1840                            MB->mode = MODE_INTER;
1841                            MB->sad16 = Data->iMinSAD[i+1];
1842                    }
1843            }
1844  }  }
1845    
1846  #define INTRA_THRESH    1350  #define INTRA_BIAS              2500
1847  #define INTER_THRESH    900  #define INTRA_THRESH    1500
1848    #define INTER_THRESH    1400
1849    
1850  int  int
1851  MEanalysis(     const IMAGE * const pRef,  MEanalysis(     const IMAGE * const pRef,
# Line 2516  Line 1853 
1853                          MBParam * const pParam,                          MBParam * const pParam,
1854                          int maxIntra, //maximum number if non-I frames                          int maxIntra, //maximum number if non-I frames
1855                          int intraCount, //number of non-I frames after last I frame; 0 if we force P/B frame                          int intraCount, //number of non-I frames after last I frame; 0 if we force P/B frame
1856                          int bCount) // number if B frames in a row                          int bCount) // number of B frames in a row
1857  {  {
1858          uint32_t x, y, intra = 0;          uint32_t x, y, intra = 0;
1859          int sSAD = 0;          int sSAD = 0;
# Line 2524  Line 1861 
1861          const IMAGE * const pCurrent = &Current->image;          const IMAGE * const pCurrent = &Current->image;
1862          int IntraThresh = INTRA_THRESH, InterThresh = INTER_THRESH;          int IntraThresh = INTRA_THRESH, InterThresh = INTER_THRESH;
1863    
1864          VECTOR currentMV;          int32_t iMinSAD[5], temp[5];
1865          int32_t iMinSAD;          VECTOR currentMV[5];
1866          SearchData Data;          SearchData Data;
1867          Data.iEdgedWidth = pParam->edged_width;          Data.iEdgedWidth = pParam->edged_width;
1868          Data.currentMV = &currentMV;          Data.currentMV = currentMV;
1869          Data.iMinSAD = &iMinSAD;          Data.iMinSAD = iMinSAD;
1870          Data.iFcode = Current->fcode;          Data.iFcode = Current->fcode;
1871          CheckCandidate = CheckCandidate16no4vI;          Data.rrv = Current->global_flags & XVID_REDUCED;
1872            Data.temp = temp;
1873            CheckCandidate = CheckCandidate32I;
1874    
1875          if (intraCount < 10) // we're right after an I frame          if (intraCount != 0 && intraCount < 10) // we're right after an I frame
1876                  IntraThresh += 4 * (intraCount - 10) * (intraCount - 10);                  IntraThresh += 4 * (intraCount - 10) * (intraCount - 10);
1877          else          else
1878                  if ( 5*(maxIntra - intraCount) < maxIntra) // we're close to maximum. 2 sec when max is 10 sec                  if ( 5*(maxIntra - intraCount) < maxIntra) // we're close to maximum. 2 sec when max is 10 sec
1879                          IntraThresh -= (IntraThresh * (maxIntra - 5*(maxIntra - intraCount)))/maxIntra;                          IntraThresh -= (IntraThresh * (maxIntra - 5*(maxIntra - intraCount)))/maxIntra;
1880    
1881            InterThresh += 400 * (1 - bCount);
1882          InterThresh += 300 * (1 - bCount);          if (InterThresh < 300) InterThresh = 300;
         if (InterThresh < 200) InterThresh = 200;  
1883    
1884          if (sadInit) (*sadInit) ();          if (sadInit) (*sadInit) ();
1885    
1886          for (y = 1; y < pParam->mb_height-1; y++) {          for (y = 1; y < pParam->mb_height-1; y += 2) {
1887                  for (x = 1; x < pParam->mb_width-1; x++) {                  for (x = 1; x < pParam->mb_width-1; x += 2) {
1888                          int sad, dev;                          int i;
1889                          MACROBLOCK *pMB = &pMBs[x + y * pParam->mb_width];  
1890                            if (bCount == 0) pMBs[x + y * pParam->mb_width].mvs[0] = zeroMV;
1891                          sad = MEanalyzeMB(pRef->y, pCurrent->y, x, y,  
1892                                                                  pParam, pMBs, pMB, &Data);                          MEanalyzeMB(pRef->y, pCurrent->y, x, y, pParam, pMBs, &Data);
1893    
1894                          if (sad > IntraThresh) {                          for (i = 0; i < 4; i++) {
1895                                  dev = dev16(pCurrent->y + (x + y * pParam->edged_width) * 16,                                  int dev;
1896                                    MACROBLOCK *pMB = &pMBs[x+(i&1) + (y+(i>>1)) * pParam->mb_width];
1897                                    if (pMB->sad16 > IntraThresh) {
1898                                            dev = dev16(pCurrent->y + (x + (i&1) + (y + (i>>1)) * pParam->edged_width) * 16,
1899                                                            pParam->edged_width);                                                            pParam->edged_width);
1900                                  if (dev + IntraThresh < sad) {                                          if (dev + IntraThresh < pMB->sad16) {
1901                                          pMB->mode = MODE_INTRA;                                          pMB->mode = MODE_INTRA;
1902                                          if (++intra > (pParam->mb_height-2)*(pParam->mb_width-2)/2) return 2;  // I frame                                                  if (++intra > (pParam->mb_height-2)*(pParam->mb_width-2)/2) return I_VOP;
1903                                            }
1904                                  }                                  }
1905                                    sSAD += pMB->sad16;
1906                          }                          }
                         sSAD += sad;  
1907                  }                  }
1908          }          }
1909          sSAD /= (pParam->mb_height-2)*(pParam->mb_width-2);          sSAD /= (pParam->mb_height-2)*(pParam->mb_width-2);
1910          if (sSAD > InterThresh ) return 1; //P frame          if (sSAD > IntraThresh + INTRA_BIAS) return I_VOP;
1911            if (sSAD > InterThresh ) return P_VOP;
1912          emms();          emms();
1913          return 0; // B frame          return B_VOP;
1914    
1915  }  }
1916    
1917  int  
1918  FindFcode(      const MBParam * const pParam,  static WARPPOINTS
1919                          const FRAMEINFO * const current)  GlobalMotionEst(const MACROBLOCK * const pMBs,
1920                                    const MBParam * const pParam,
1921                                    const FRAMEINFO * const current,
1922                                    const FRAMEINFO * const reference,
1923                                    const IMAGE * const pRefH,
1924                                    const IMAGE * const pRefV,
1925                                    const IMAGE * const pRefHV      )
1926  {  {
         uint32_t x, y;  
         int max = 0, min = 0, i;  
1927    
1928          for (y = 0; y < pParam->mb_height; y++) {          const int deltax=8;             // upper bound for difference between a MV and it's neighbour MVs
1929                  for (x = 0; x < pParam->mb_width; x++) {          const int deltay=8;
1930            const int grad=512;             // lower bound for deviation in MB
1931    
1932                          MACROBLOCK *pMB = &current->mbs[x + y * pParam->mb_width];          WARPPOINTS gmc;
                         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;  
1933    
1934                                  if (pMB->mvs[i].x < min) min = pMB->mvs[i].x;          uint32_t mx, my;
1935                                  if (pMB->mvs[i].y < min) min = pMB->mvs[i].y;  
1936                          }          int MBh = pParam->mb_height;
1937                  }          int MBw = pParam->mb_width;
         }  
1938    
1939          min = -min;          int *MBmask= calloc(MBh*MBw,sizeof(int));
1940          max += 1;          double DtimesF[4] = { 0.,0., 0., 0. };
1941          if (min > max) max = min;          double sol[4] = { 0., 0., 0., 0. };
1942          if (pParam->m_quarterpel) max *= 2;          double a,b,c,n,denom;
1943            double meanx,meany;
1944            int num,oldnum;
1945    
1946            if (!MBmask) { fprintf(stderr,"Mem error\n"); return gmc;}
1947    
1948    // filter mask of all blocks
1949    
1950            for (my = 1; my < MBh-1; my++)
1951            for (mx = 1; mx < MBw-1; mx++)
1952            {
1953                    const int mbnum = mx + my * MBw;
1954                    const MACROBLOCK *pMB = &pMBs[mbnum];
1955                    const VECTOR mv = pMB->mvs[0];
1956    
1957                    if (pMB->mode == MODE_INTRA || pMB->mode == MODE_NOT_CODED)
1958                            continue;
1959    
1960          for (i = 1; (max > 32 << (i - 1)); i++);                  if ( ( (ABS(mv.x -   (pMB-1)->mvs[0].x) < deltax) && (ABS(mv.y -   (pMB-1)->mvs[0].y) < deltay) )
1961          return i;                  &&   ( (ABS(mv.x -   (pMB+1)->mvs[0].x) < deltax) && (ABS(mv.y -   (pMB+1)->mvs[0].y) < deltay) )
1962                    &&   ( (ABS(mv.x - (pMB-MBw)->mvs[0].x) < deltax) && (ABS(mv.y - (pMB-MBw)->mvs[0].y) < deltay) )
1963                    &&   ( (ABS(mv.x - (pMB+MBw)->mvs[0].x) < deltax) && (ABS(mv.y - (pMB+MBw)->mvs[0].y) < deltay) ) )
1964                            MBmask[mbnum]=1;
1965  }  }
1966    
1967  static void          for (my = 1; my < MBh-1; my++)
1968  CheckGMC(int x, int y, const int dir, int * iDirection,          for (mx = 1; mx < MBw-1; mx++)
                 const MACROBLOCK * const pMBs, uint32_t * bestcount, VECTOR * GMC,  
                 const MBParam * const pParam)  
1969  {  {
1970          uint32_t mx, my, a, count = 0;                  const uint8_t *const pCur = current->image.y + 16*my*pParam->edged_width + 16*mx;
1971    
1972          for (my = 1; my < pParam->mb_height-1; my++)                  const int mbnum = mx + my * MBw;
1973                  for (mx = 1; mx < pParam->mb_width-1; mx++) {                  if (!MBmask[mbnum])
1974                          VECTOR mv;                          continue;
1975                          const MACROBLOCK *pMB = &pMBs[mx + my * pParam->mb_width];  
1976                          if (pMB->mode == MODE_INTRA || pMB->mode == MODE_NOT_CODED) continue;                  if (sad16 ( pCur, pCur+1 , pParam->edged_width, 65536) <= grad )
1977                          mv = pMB->mvs[0];                          MBmask[mbnum] = 0;
1978                          a = ABS(mv.x - x) + ABS(mv.y - y);                  if (sad16 ( pCur, pCur+pParam->edged_width, pParam->edged_width, 65536) <= grad )
1979                          if (a < 6) count += 6 - a;                          MBmask[mbnum] = 0;
                 }  
1980    
         if (count > *bestcount) {  
                 *bestcount = count;  
                 *iDirection = dir;  
                 GMC->x = x; GMC->y = y;  
         }  
1981  }  }
1982    
1983            emms();
1984    
1985  static VECTOR          do {            /* until convergence */
 GlobalMotionEst(const MACROBLOCK * const pMBs, const MBParam * const pParam, const uint32_t iFcode)  
 {  
1986    
1987          uint32_t count, bestcount = 0;          a = b = c = n = 0;
1988          int x, y;          DtimesF[0] = DtimesF[1] = DtimesF[2] = DtimesF[3] = 0.;
1989          VECTOR gmc = {0,0};          for (my = 0; my < MBh; my++)
1990          int step, min_x, max_x, min_y, max_y;                  for (mx = 0; mx < MBw; mx++)
1991          uint32_t mx, my;                  {
1992          int iDirection, bDirection;                          const int mbnum = mx + my * MBw;
1993                            const MACROBLOCK *pMB = &pMBs[mbnum];
1994                            const VECTOR mv = pMB->mvs[0];
1995    
1996          min_x = min_y = -32<<iFcode;                          if (!MBmask[mbnum])
1997          max_x = max_y = 32<<iFcode;                                  continue;
1998    
1999  //step1: let's find a rough camera panning                          n++;
2000          for (step = 32; step >= 2; step /= 2) {                          a += 16*mx+8;
2001                  bestcount = 0;                          b += 16*my+8;
2002                  for (y = min_y; y <= max_y; y += step)                          c += (16*mx+8)*(16*mx+8)+(16*my+8)*(16*my+8);
2003                          for (x = min_x ; x <= max_x; x += step) {  
2004                                  count = 0;                          DtimesF[0] += (double)mv.x;
2005                                  //for all macroblocks                          DtimesF[1] += (double)mv.x*(16*mx+8) + (double)mv.y*(16*my+8);
2006                                  for (my = 1; my < pParam->mb_height-1; my++)                          DtimesF[2] += (double)mv.x*(16*my+8) - (double)mv.y*(16*mx+8);
2007                                          for (mx = 1; mx < pParam->mb_width-1; mx++) {                          DtimesF[3] += (double)mv.y;
2008                                                  const MACROBLOCK *pMB = &pMBs[mx + my * pParam->mb_width];                  }
2009                                                  VECTOR mv;  
2010            denom = a*a+b*b-c*n;
2011    
2012    /* Solve the system:     sol = (D'*E*D)^{-1} D'*E*F   */
2013    /* D'*E*F has been calculated in the same loop as matrix */
2014    
2015            sol[0] = -c*DtimesF[0] + a*DtimesF[1] + b*DtimesF[2];
2016            sol[1] =  a*DtimesF[0] - n*DtimesF[1]                + b*DtimesF[3];
2017            sol[2] =  b*DtimesF[0]                - n*DtimesF[2] - a*DtimesF[3];
2018            sol[3] =                 b*DtimesF[1] - a*DtimesF[2] - c*DtimesF[3];
2019    
2020            sol[0] /= denom;
2021            sol[1] /= denom;
2022            sol[2] /= denom;
2023            sol[3] /= denom;
2024    
2025            meanx = meany = 0.;
2026            oldnum = 0;
2027            for (my = 0; my < MBh; my++)
2028                    for (mx = 0; mx < MBw; mx++)
2029                    {
2030                            const int mbnum = mx + my * MBw;
2031                            const MACROBLOCK *pMB = &pMBs[mbnum];
2032                            const VECTOR mv = pMB->mvs[0];
2033    
2034                                                  if (pMB->mode == MODE_INTRA || pMB->mode == MODE_NOT_CODED)                          if (!MBmask[mbnum])
2035                                                          continue;                                                          continue;
2036    
2037                                                  mv = pMB->mvs[0];                          oldnum++;
2038                                                  if ( ABS(mv.x - x) <= step && ABS(mv.y - y) <= step )   /* GMC translation is always halfpel-res */                          meanx += ABS(( sol[0] + (16*mx+8)*sol[1] + (16*my+8)*sol[2] ) - mv.x );
2039                                                          count++;                          meany += ABS(( sol[3] + (16*my+8)*sol[1] - (16*mx+8)*sol[2] ) - mv.y );
2040                                          }  
                                 if (count >= bestcount) { bestcount = count; gmc.x = x; gmc.y = y; }  
2041                          }                          }
                 min_x = gmc.x - step;  
                 max_x = gmc.x + step;  
                 min_y = gmc.y - step;  
                 max_y = gmc.y + step;  
2042    
2043            if (2*meanx > oldnum)   /* mittlere Abweichung von Ebene */
2044                    meanx /= oldnum;
2045            else
2046                    meanx = 0.5;
2047            if (2*meany > oldnum)
2048                    meany /= oldnum;
2049            else
2050                    meanx = 0.5;
2051    
2052    //      fprintf(stderr,"meanx = %8.5f  meany = %8.5f   %d\n",meanx,meany, oldnum);
2053    
2054            num = 0;
2055            for (my = 0; my < MBh; my++)
2056                    for (mx = 0; mx < MBw; mx++)
2057                    {
2058                            const int mbnum = mx + my * MBw;
2059                            const MACROBLOCK *pMB = &pMBs[mbnum];
2060                            const VECTOR mv = pMB->mvs[0];
2061    
2062                            if (!MBmask[mbnum])
2063                                    continue;
2064    
2065                            if  ( ( ABS(( sol[0] + (16*mx+8)*sol[1] + (16*my+8)*sol[2] ) - mv.x ) > meanx )
2066                               || ( ABS(( sol[3] + (16*my+8)*sol[1] - (16*mx+8)*sol[2] ) - mv.y ) > meany ) )
2067                                    MBmask[mbnum]=0;
2068                            else
2069                                    num++;
2070          }          }
2071    
2072          if (bestcount < (pParam->mb_height-2)*(pParam->mb_width-2)/10)          } while ( (oldnum != num) && (num>=4) );
                 gmc.x = gmc.y = 0; //no camara pan, no GMC  
2073    
2074  // step2: let's refine camera panning using gradiend-descent approach.          if (num < 4)
2075  // TODO: more warping points may be evaluated here (like in interpolate mode search - two vectors in one diamond)          {
2076          bestcount = 0;                  gmc.duv[0].x= gmc.duv[0].y= gmc.duv[1].x= gmc.duv[1].y= gmc.duv[2].x= gmc.duv[2].y=0;
2077          CheckGMC(gmc.x, gmc.y, 255, &iDirection, pMBs, &bestcount, &gmc, pParam);          } else {
         do {  
                 x = gmc.x; y = gmc.y;  
                 bDirection = iDirection; iDirection = 0;  
                 if (bDirection & 1) CheckGMC(x - 1, y, 1+4+8, &iDirection, pMBs, &bestcount, &gmc, pParam);  
                 if (bDirection & 2) CheckGMC(x + 1, y, 2+4+8, &iDirection, pMBs, &bestcount, &gmc, pParam);  
                 if (bDirection & 4) CheckGMC(x, y - 1, 1+2+4, &iDirection, pMBs, &bestcount, &gmc, pParam);  
                 if (bDirection & 8) CheckGMC(x, y + 1, 1+2+8, &iDirection, pMBs, &bestcount, &gmc, pParam);  
2078    
2079          } while (iDirection);                  gmc.duv[0].x=(int)(sol[0]+0.5);
2080                    gmc.duv[0].y=(int)(sol[3]+0.5);
2081    
2082          if (pParam->m_quarterpel) {                  gmc.duv[1].x=(int)(sol[1]*pParam->width+0.5);
2083                  gmc.x *= 2;                  gmc.duv[1].y=(int)(-sol[2]*pParam->width+0.5);
2084                  gmc.y *= 2;     /* we store the halfpel value as pseudo-qpel to make comparison easier */  
2085                    gmc.duv[2].x=0;
2086                    gmc.duv[2].y=0;
2087          }          }
2088    //      fprintf(stderr,"wp1 = ( %4d, %4d)  wp2 = ( %4d, %4d) \n", gmc.duv[0].x, gmc.duv[0].y, gmc.duv[1].x, gmc.duv[1].y);
2089    
2090            free(MBmask);
2091    
2092          return gmc;          return gmc;
2093  }  }

Legend:
Removed from v.661  
changed lines
  Added in v.769

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