[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 675, Sun Nov 24 16:38:11 2002 UTC revision 819, Sat Feb 8 03:49:47 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 (15)  
52    
53  #define CHECK_CANDIDATE(X,Y,D) { \  #define CHECK_CANDIDATE(X,Y,D) { CheckCandidate((X),(Y), (D), &iDirection, data ); }
 (*CheckCandidate)((const int)(X),(const int)(Y), (D), &iDirection, data ); }  
54    
55  #define iDiamondSize 2  static __inline uint32_t
56    d_mv_bits(int x, int y, const VECTOR pred, const uint32_t iFcode, const int qpel, const int rrv)
 static __inline int  
 d_mv_bits(int x, int y, const uint32_t iFcode)  
57  {  {
58          int xb, yb;          int xb, yb;
59            x = qpel ? x<<1 : x;
60            y = qpel ? y<<1 : y;
61            if (rrv) { x = RRV_MV_SCALEDOWN(x); y = RRV_MV_SCALEDOWN(y); }
62    
63          if (x == 0) xb = 1;          x -= pred.x;
64          else {          y -= pred.y;
65                  if (x < 0) x = -x;  
66            if (x) {
67                    x = ABS(x);
68                  x += (1 << (iFcode - 1)) - 1;                  x += (1 << (iFcode - 1)) - 1;
69                  x >>= (iFcode - 1);                  x >>= (iFcode - 1);
70                  if (x > 32) x = 32;                  if (x > 32) x = 32;
71                  xb = mvtab[x] + iFcode;                  xb = mvtab[x] + iFcode;
72          }          } else xb = 1;
73    
74          if (y == 0) yb = 1;          if (y) {
75          else {                  y = ABS(y);
                 if (y < 0) y = -y;  
76                  y += (1 << (iFcode - 1)) - 1;                  y += (1 << (iFcode - 1)) - 1;
77                  y >>= (iFcode - 1);                  y >>= (iFcode - 1);
78                  if (y > 32) y = 32;                  if (y > 32) y = 32;
79                  yb = mvtab[y] + iFcode;                  yb = mvtab[y] + iFcode;
80          }          } else yb = 1;
81          return xb + yb;          return xb + yb;
82  }  }
83    
84    static int32_t ChromaSAD2(int fx, int fy, int bx, int by, const SearchData * const data)
85    {
86            int sad;
87            const uint32_t stride = data->iEdgedWidth/2;
88            uint8_t * f_refu = data->RefQ,
89                    * f_refv = data->RefQ + 8,
90                    * b_refu = data->RefQ + 16,
91                    * b_refv = data->RefQ + 24;
92    
93            switch (((fx & 1) << 1) | (fy & 1))     {
94                    case 0:
95                            fx = fx / 2; fy = fy / 2;
96                            f_refu = (uint8_t*)data->RefCU + fy * stride + fx, stride;
97                            f_refv = (uint8_t*)data->RefCV + fy * stride + fx, stride;
98                            break;
99                    case 1:
100                            fx = fx / 2; fy = (fy - 1) / 2;
101                            interpolate8x8_halfpel_v(f_refu, data->RefCU + fy * stride + fx, stride, data->rounding);
102                            interpolate8x8_halfpel_v(f_refv, data->RefCV + fy * stride + fx, stride, data->rounding);
103                            break;
104                    case 2:
105                            fx = (fx - 1) / 2; fy = fy / 2;
106                            interpolate8x8_halfpel_h(f_refu, data->RefCU + fy * stride + fx, stride, data->rounding);
107                            interpolate8x8_halfpel_h(f_refv, data->RefCV + fy * stride + fx, stride, data->rounding);
108                            break;
109                    default:
110                            fx = (fx - 1) / 2; fy = (fy - 1) / 2;
111                            interpolate8x8_halfpel_hv(f_refu, data->RefCU + fy * stride + fx, stride, data->rounding);
112                            interpolate8x8_halfpel_hv(f_refv, data->RefCV + fy * stride + fx, stride, data->rounding);
113                            break;
114            }
115    
116            switch (((bx & 1) << 1) | (by & 1))     {
117                    case 0:
118                            bx = bx / 2; by = by / 2;
119                            b_refu = (uint8_t*)data->b_RefCU + by * stride + bx, stride;
120                            b_refv = (uint8_t*)data->b_RefCV + by * stride + bx, stride;
121                            break;
122                    case 1:
123                            bx = bx / 2; by = (by - 1) / 2;
124                            interpolate8x8_halfpel_v(b_refu, data->b_RefCU + by * stride + bx, stride, data->rounding);
125                            interpolate8x8_halfpel_v(b_refv, data->b_RefCV + by * stride + bx, stride, data->rounding);
126                            break;
127                    case 2:
128                            bx = (bx - 1) / 2; by = by / 2;
129                            interpolate8x8_halfpel_h(b_refu, data->b_RefCU + by * stride + bx, stride, data->rounding);
130                            interpolate8x8_halfpel_h(b_refv, data->b_RefCV + by * stride + bx, stride, data->rounding);
131                            break;
132                    default:
133                            bx = (bx - 1) / 2; by = (by - 1) / 2;
134                            interpolate8x8_halfpel_hv(b_refu, data->b_RefCU + by * stride + bx, stride, data->rounding);
135                            interpolate8x8_halfpel_hv(b_refv, data->b_RefCV + by * stride + bx, stride, data->rounding);
136                            break;
137            }
138    
139            sad = sad8bi(data->CurU, b_refu, f_refu, stride);
140            sad += sad8bi(data->CurV, b_refv, f_refv, stride);
141    
142            return sad;
143    }
144    
145    
146  static int32_t  static int32_t
147  ChromaSAD(int dx, int dy, const SearchData * const data)  ChromaSAD(int dx, int dy, const SearchData * const data)
148  {  {
149          int sad;          int sad;
150          dx = (dx >> 1) + roundtab_79[dx & 0x3];          const uint32_t stride = data->iEdgedWidth/2;
         dy = (dy >> 1) + roundtab_79[dy & 0x3];  
151    
152          switch (((dx & 1) << 1) + (dy & 1))     { // ((dx%2)?2:0)+((dy%2)?1:0)          if (dx == data->temp[5] && dy == data->temp[6]) return data->temp[7]; //it has been checked recently
153            data->temp[5] = dx; data->temp[6] = dy; // backup
154    
155            switch (((dx & 1) << 1) | (dy & 1))     {
156                  case 0:                  case 0:
157                          sad = sad8(data->CurU, data->RefCU + (dy/2) * (data->iEdgedWidth/2) + dx/2, data->iEdgedWidth/2);                          dx = dx / 2; dy = dy / 2;
158                          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);
159                            sad += sad8(data->CurV, data->RefCV + dy * stride + dx, stride);
160                          break;                          break;
161                  case 1:                  case 1:
162                          dx = dx / 2; dy = (dy - 1) / 2;                          dx = dx / 2; dy = (dy - 1) / 2;
163                          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);
164                          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);
165                          break;                          break;
166                  case 2:                  case 2:
167                          dx = (dx - 1) / 2; dy = dy / 2;                          dx = (dx - 1) / 2; dy = dy / 2;
168                          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);
169                          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);
170                          break;                          break;
171                  default:                  default:
172                          dx = (dx - 1) / 2; dy = (dy - 1) / 2;                          dx = (dx - 1) / 2; dy = (dy - 1) / 2;
173                          interpolate8x8_halfpel_hv(data->RefQ,                          interpolate8x8_halfpel_hv(data->RefQ, data->RefCU + dy * stride + dx, stride, data->rounding);
174                                                                           data->RefCU + dy * (data->iEdgedWidth/2) + dx, data->iEdgedWidth/2,                          sad = sad8(data->CurU, data->RefQ, stride);
175                                                                           data->rounding);  
176                          sad = sad8(data->CurU, data->RefQ, data->iEdgedWidth/2);                          interpolate8x8_halfpel_hv(data->RefQ, data->RefCV + dy * stride + dx, stride, data->rounding);
177                          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);  
178                          break;                          break;
179          }          }
180            data->temp[7] = sad; //backup, part 2
181          return sad;          return sad;
182  }  }
183    
184  static __inline const uint8_t *  static __inline const uint8_t *
185  GetReference(const int x, const int y, const int dir, const SearchData * const data)  GetReferenceB(const int x, const int y, const uint32_t dir, const SearchData * const data)
186  {  {
187  //      dir : 0 = forward, 1 = backward  //      dir : 0 = forward, 1 = backward
188          switch ( (dir << 2) | ((x&1)<<1) | (y&1) ) {          switch ( (dir << 2) | ((x&1)<<1) | (y&1) ) {
# Line 129  Line 194 
194                  case 5 : return data->bRefV + x/2 + ((y-1)/2)*(data->iEdgedWidth);                  case 5 : return data->bRefV + x/2 + ((y-1)/2)*(data->iEdgedWidth);
195                  case 6 : return data->bRefH + (x-1)/2 + (y/2)*(data->iEdgedWidth);                  case 6 : return data->bRefH + (x-1)/2 + (y/2)*(data->iEdgedWidth);
196                  default : return data->bRefHV + (x-1)/2 + ((y-1)/2)*(data->iEdgedWidth);                  default : return data->bRefHV + (x-1)/2 + ((y-1)/2)*(data->iEdgedWidth);
197            }
198    }
199    
200    // this is a simpler copy of GetReferenceB, but as it's __inline anyway, we can keep the two separate
201    static __inline const uint8_t *
202    GetReference(const int x, const int y, const SearchData * const data)
203    {
204            switch ( ((x&1)<<1) | (y&1) ) {
205                    case 0 : return data->Ref + x/2 + (y/2)*(data->iEdgedWidth);
206                    case 3 : return data->RefHV + (x-1)/2 + ((y-1)/2)*(data->iEdgedWidth);
207                    case 1 : return data->RefV + x/2 + ((y-1)/2)*(data->iEdgedWidth);
208                    default : return data->RefH + (x-1)/2 + (y/2)*(data->iEdgedWidth);      //case 2
209          }          }
210  }  }
211    
212  static uint8_t *  static uint8_t *
213  Interpolate8x8qpel(const int x, const int y, const int block, const int dir, const SearchData * const data)  Interpolate8x8qpel(const int x, const int y, const uint32_t block, const uint32_t dir, const SearchData * const data)
214  {  {
215  // create or find a qpel-precision reference picture; return pointer to it  // create or find a qpel-precision reference picture; return pointer to it
216          uint8_t * Reference = (uint8_t *)data->RefQ + 16*dir;          uint8_t * Reference = data->RefQ + 16*dir;
217          const int32_t iEdgedWidth = data->iEdgedWidth;          const uint32_t iEdgedWidth = data->iEdgedWidth;
218          const uint32_t rounding = data->rounding;          const uint32_t rounding = data->rounding;
219          const int halfpel_x = x/2;          const int halfpel_x = x/2;
220          const int halfpel_y = y/2;          const int halfpel_y = y/2;
221          const uint8_t *ref1, *ref2, *ref3, *ref4;          const uint8_t *ref1, *ref2, *ref3, *ref4;
222    
223          ref1 = GetReference(halfpel_x, halfpel_y, dir, data); // this reference is used in all cases          ref1 = GetReferenceB(halfpel_x, halfpel_y, dir, data);
224          ref1 += 8 * (block&1) + 8 * (block>>1) * iEdgedWidth;          ref1 += 8 * (block&1) + 8 * (block>>1) * iEdgedWidth;
225          switch( ((x&1)<<1) + (y&1) ) {          switch( ((x&1)<<1) + (y&1) ) {
226          case 0: // pure halfpel position          case 0: // pure halfpel position
227                  Reference = (uint8_t *) GetReference(halfpel_x, halfpel_y, dir, data);                  return (uint8_t *) ref1;
                 Reference += 8 * (block&1) + 8 * (block>>1) * iEdgedWidth;  
228                  break;                  break;
229    
230          case 1: // x halfpel, y qpel - top or bottom during qpel refinement          case 1: // x halfpel, y qpel - top or bottom during qpel refinement
231                  ref2 = GetReference(halfpel_x, y - halfpel_y, dir, data);                  ref2 = GetReferenceB(halfpel_x, y - halfpel_y, dir, data);
232                  ref2 += 8 * (block&1) + 8 * (block>>1) * iEdgedWidth;                  ref2 += 8 * (block&1) + 8 * (block>>1) * iEdgedWidth;
233                  interpolate8x8_avg2(Reference, ref1, ref2, iEdgedWidth, rounding, 8);                  interpolate8x8_avg2(Reference, ref1, ref2, iEdgedWidth, rounding, 8);
234                  break;                  break;
235    
236          case 2: // x qpel, y halfpel - left or right during qpel refinement          case 2: // x qpel, y halfpel - left or right during qpel refinement
237                  ref2 = GetReference(x - halfpel_x, halfpel_y, dir, data);                  ref2 = GetReferenceB(x - halfpel_x, halfpel_y, dir, data);
238                  ref2 += 8 * (block&1) + 8 * (block>>1) * iEdgedWidth;                  ref2 += 8 * (block&1) + 8 * (block>>1) * iEdgedWidth;
239                  interpolate8x8_avg2(Reference, ref1, ref2, iEdgedWidth, rounding, 8);                  interpolate8x8_avg2(Reference, ref1, ref2, iEdgedWidth, rounding, 8);
240                  break;                  break;
241    
242          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
243                           // bottom left/right) during qpel refinement                           // bottom left/right) during qpel refinement
244                  ref2 = GetReference(halfpel_x, y - halfpel_y, dir, data);                  ref2 = GetReferenceB(halfpel_x, y - halfpel_y, dir, data);
245                  ref3 = GetReference(x - halfpel_x, halfpel_y, dir, data);                  ref3 = GetReferenceB(x - halfpel_x, halfpel_y, dir, data);
246                  ref4 = GetReference(x - halfpel_x, y - halfpel_y, dir, data);                  ref4 = GetReferenceB(x - halfpel_x, y - halfpel_y, dir, data);
247                  ref2 += 8 * (block&1) + 8 * (block>>1) * iEdgedWidth;                  ref2 += 8 * (block&1) + 8 * (block>>1) * iEdgedWidth;
248                  ref3 += 8 * (block&1) + 8 * (block>>1) * iEdgedWidth;                  ref3 += 8 * (block&1) + 8 * (block>>1) * iEdgedWidth;
249                  ref4 += 8 * (block&1) + 8 * (block>>1) * iEdgedWidth;                  ref4 += 8 * (block&1) + 8 * (block>>1) * iEdgedWidth;
# Line 179  Line 254 
254  }  }
255    
256  static uint8_t *  static uint8_t *
257  Interpolate16x16qpel(const int x, const int y, const int dir, const SearchData * const data)  Interpolate16x16qpel(const int x, const int y, const uint32_t dir, const SearchData * const data)
258  {  {
259  // create or find a qpel-precision reference picture; return pointer to it  // create or find a qpel-precision reference picture; return pointer to it
260          uint8_t * Reference = (uint8_t *)data->RefQ + 16*dir;          uint8_t * Reference = data->RefQ + 16*dir;
261          const int32_t iEdgedWidth = data->iEdgedWidth;          const uint32_t iEdgedWidth = data->iEdgedWidth;
262          const uint32_t rounding = data->rounding;          const uint32_t rounding = data->rounding;
263          const int halfpel_x = x/2;          const int halfpel_x = x/2;
264          const int halfpel_y = y/2;          const int halfpel_y = y/2;
265          const uint8_t *ref1, *ref2, *ref3, *ref4;          const uint8_t *ref1, *ref2, *ref3, *ref4;
266    
267          ref1 = GetReference(halfpel_x, halfpel_y, dir, data); // this reference is used in all cases          ref1 = GetReferenceB(halfpel_x, halfpel_y, dir, data);
268          switch( ((x&1)<<1) + (y&1) ) {          switch( ((x&1)<<1) + (y&1) ) {
269          case 0: // pure halfpel position          case 3: // x and y in qpel resolution - the "corners" (top left/right and
270                  return (uint8_t *) GetReference(halfpel_x, halfpel_y, dir, data);                           // bottom left/right) during qpel refinement
271                    ref2 = GetReferenceB(halfpel_x, y - halfpel_y, dir, data);
272                    ref3 = GetReferenceB(x - halfpel_x, halfpel_y, dir, data);
273                    ref4 = GetReferenceB(x - halfpel_x, y - halfpel_y, dir, data);
274                    interpolate8x8_avg4(Reference, ref1, ref2, ref3, ref4, iEdgedWidth, rounding);
275                    interpolate8x8_avg4(Reference+8, ref1+8, ref2+8, ref3+8, ref4+8, iEdgedWidth, rounding);
276                    interpolate8x8_avg4(Reference+8*iEdgedWidth, ref1+8*iEdgedWidth, ref2+8*iEdgedWidth, ref3+8*iEdgedWidth, ref4+8*iEdgedWidth, iEdgedWidth, rounding);
277                    interpolate8x8_avg4(Reference+8*iEdgedWidth+8, ref1+8*iEdgedWidth+8, ref2+8*iEdgedWidth+8, ref3+8*iEdgedWidth+8, ref4+8*iEdgedWidth+8, iEdgedWidth, rounding);
278                    break;
279    
280          case 1: // x halfpel, y qpel - top or bottom during qpel refinement          case 1: // x halfpel, y qpel - top or bottom during qpel refinement
281                  ref2 = GetReference(halfpel_x, y - halfpel_y, dir, data);                  ref2 = GetReferenceB(halfpel_x, y - halfpel_y, dir, data);
282                  interpolate8x8_avg2(Reference, ref1, ref2, iEdgedWidth, rounding, 8);                  interpolate8x8_avg2(Reference, ref1, ref2, iEdgedWidth, rounding, 8);
283                  interpolate8x8_avg2(Reference+8, ref1+8, ref2+8, iEdgedWidth, rounding, 8);                  interpolate8x8_avg2(Reference+8, ref1+8, ref2+8, iEdgedWidth, rounding, 8);
284                  interpolate8x8_avg2(Reference+8*iEdgedWidth, ref1+8*iEdgedWidth, ref2+8*iEdgedWidth, iEdgedWidth, rounding, 8);                  interpolate8x8_avg2(Reference+8*iEdgedWidth, ref1+8*iEdgedWidth, ref2+8*iEdgedWidth, iEdgedWidth, rounding, 8);
# Line 202  Line 286 
286                  break;                  break;
287    
288          case 2: // x qpel, y halfpel - left or right during qpel refinement          case 2: // x qpel, y halfpel - left or right during qpel refinement
289                  ref2 = GetReference(x - halfpel_x, halfpel_y, dir, data);                  ref2 = GetReferenceB(x - halfpel_x, halfpel_y, dir, data);
290                  interpolate8x8_avg2(Reference, ref1, ref2, iEdgedWidth, rounding, 8);                  interpolate8x8_avg2(Reference, ref1, ref2, iEdgedWidth, rounding, 8);
291                  interpolate8x8_avg2(Reference+8, ref1+8, ref2+8, iEdgedWidth, rounding, 8);                  interpolate8x8_avg2(Reference+8, ref1+8, ref2+8, iEdgedWidth, rounding, 8);
292                  interpolate8x8_avg2(Reference+8*iEdgedWidth, ref1+8*iEdgedWidth, ref2+8*iEdgedWidth, iEdgedWidth, rounding, 8);                  interpolate8x8_avg2(Reference+8*iEdgedWidth, ref1+8*iEdgedWidth, ref2+8*iEdgedWidth, iEdgedWidth, rounding, 8);
293                  interpolate8x8_avg2(Reference+8*iEdgedWidth+8, ref1+8*iEdgedWidth+8, ref2+8*iEdgedWidth+8, iEdgedWidth, rounding, 8);                  interpolate8x8_avg2(Reference+8*iEdgedWidth+8, ref1+8*iEdgedWidth+8, ref2+8*iEdgedWidth+8, iEdgedWidth, rounding, 8);
294                  break;                  break;
295    
296          default: // x and y in qpel resolution - the "corners" (top left/right and          case 0: // pure halfpel position
297                           // bottom left/right) during qpel refinement                  return (uint8_t *) ref1;
                 ref2 = GetReference(halfpel_x, y - halfpel_y, dir, data);  
                 ref3 = GetReference(x - halfpel_x, halfpel_y, dir, data);  
                 ref4 = GetReference(x - halfpel_x, y - halfpel_y, dir, data);  
                 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);  
                 break;  
298          }          }
299          return Reference;          return Reference;
300  }  }
# Line 228  Line 304 
304  static void  static void
305  CheckCandidate16(const int x, const int y, const int Direction, int * const dir, const SearchData * const data)  CheckCandidate16(const int x, const int y, const int Direction, int * const dir, const SearchData * const data)
306  {  {
307          int t, xc, yc;          int xc, yc;
308          const uint8_t * Reference;          const uint8_t * Reference;
309          VECTOR * current;          VECTOR * current;
310            int32_t sad; uint32_t t;
311    
312          if (( x > data->max_dx) || ( x < data->min_dx)          if (( x > data->max_dx) || ( x < data->min_dx)
313                  || ( y > data->max_dy) || (y < data->min_dy)) return;                  || ( y > data->max_dy) || (y < data->min_dy)) return;
314    
315          if (data->qpel_precision) { // x and y are in 1/4 precision          if (!data->qpel_precision) {
316                    Reference = GetReference(x, y, data);
317                    current = data->currentMV;
318                    xc = x; yc = y;
319            } else { // x and y are in 1/4 precision
320                  Reference = Interpolate16x16qpel(x, y, 0, data);                  Reference = Interpolate16x16qpel(x, y, 0, data);
                 t = d_mv_bits(x - data->predMV.x, y - data->predMV.y, data->iFcode);  
321                  xc = x/2; yc = y/2; //for chroma sad                  xc = x/2; yc = y/2; //for chroma sad
322                  current = data->currentQMV;                  current = data->currentQMV;
         } else {  
                 switch ( ((x&1)<<1) + (y&1) ) {  
                         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;  
                 }  
                 if (data->qpel) t = d_mv_bits(2*x - data->predMV.x, 2*y - data->predMV.y, data->iFcode);  
                 else t = d_mv_bits(x - data->predMV.x, y - data->predMV.y, data->iFcode);  
                 current = data->currentMV;  
                 xc = x; yc = y;  
323          }          }
324    
325          data->temp[0] = sad16v(data->Cur, Reference, data->iEdgedWidth, data->temp + 1);          sad = sad16v(data->Cur, Reference, data->iEdgedWidth, data->temp + 1);
326            t = d_mv_bits(x, y, data->predMV, data->iFcode, data->qpel^data->qpel_precision, 0);
327    
328          data->temp[0] += (data->lambda16 * t * data->temp[0])/1000;          sad += (data->lambda16 * t * sad)>>10;
329          data->temp[1] += (data->lambda8 * t * (data->temp[1] + NEIGH_8X8_BIAS))/100;          data->temp[1] += (data->lambda8 * t * (data->temp[1] + NEIGH_8X8_BIAS))>>10;
330    
331          if (data->chroma) data->temp[0] += ChromaSAD(xc, yc, data);          if (data->chroma) sad += ChromaSAD((xc >> 1) + roundtab_79[xc & 0x3],
332                                                                                                            (yc >> 1) + roundtab_79[yc & 0x3], data);
333    
334          if (data->temp[0] < data->iMinSAD[0]) {          if (sad < data->iMinSAD[0]) {
335                  data->iMinSAD[0] = data->temp[0];                  data->iMinSAD[0] = sad;
336                  current[0].x = x; current[0].y = y;                  current[0].x = x; current[0].y = y;
337                  *dir = Direction; }                  *dir = Direction;
338            }
339    
340          if (data->temp[1] < data->iMinSAD[1]) {          if (data->temp[1] < data->iMinSAD[1]) {
341                  data->iMinSAD[1] = data->temp[1]; current[1].x = x; current[1].y= y; }                  data->iMinSAD[1] = data->temp[1]; current[1].x = x; current[1].y= y; }
# Line 277  Line 349 
349  }  }
350    
351  static void  static void
352  CheckCandidate16no4v(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)
353  {  {
354          int32_t sad;          int32_t sad; uint32_t t;
355          const uint8_t * Reference;          const uint8_t * Reference;
         int t;  
         VECTOR * current;  
356    
357          if (( x > data->max_dx) || ( x < data->min_dx)          if (( x > data->max_dx) || ( x < data->min_dx)
358                  || ( y > data->max_dy) || (y < data->min_dy)) return;                  || ( y > data->max_dy) || (y < data->min_dy)) return;
359    
360            if (!data->qpel_precision) Reference = GetReference(x, y, data);
361            else Reference = Interpolate8x8qpel(x, y, 0, 0, data);
362    
363            sad = sad8(data->Cur, Reference, data->iEdgedWidth);
364            t = d_mv_bits(x, y, data->predMV, data->iFcode, data->qpel^data->qpel_precision, 0);
365    
366            sad += (data->lambda8 * t * (sad+NEIGH_8X8_BIAS))>>10;
367    
368            if (sad < *(data->iMinSAD)) {
369                    *(data->iMinSAD) = sad;
370                    data->currentMV->x = x; data->currentMV->y = y;
371                    *dir = Direction;
372            }
373    }
374    
375    
376    static void
377    CheckCandidate32(const int x, const int y, const int Direction, int * const dir, const SearchData * const data)
378    {
379            uint32_t t;
380            const uint8_t * Reference;
381    
382            if ( (!(x&1) && x !=0) || (!(y&1) && y !=0) || //non-zero integer value
383                    (x > data->max_dx) || (x < data->min_dx)
384                    || (y > data->max_dy) || (y < data->min_dy) ) return;
385    
386            Reference = GetReference(x, y, data);
387            t = d_mv_bits(x, y, data->predMV, data->iFcode, 0, 1);
388    
389            data->temp[0] = sad32v_c(data->Cur, Reference, data->iEdgedWidth, data->temp + 1);
390    
391            data->temp[0] += (data->lambda16 * t * data->temp[0]) >> 10;
392            data->temp[1] += (data->lambda8 * t * (data->temp[1] + NEIGH_8X8_BIAS))>>10;
393    
394            if (data->temp[0] < data->iMinSAD[0]) {
395                    data->iMinSAD[0] = data->temp[0];
396                    data->currentMV[0].x = x; data->currentMV[0].y = y;
397                    *dir = Direction; }
398    
399            if (data->temp[1] < data->iMinSAD[1]) {
400                    data->iMinSAD[1] = data->temp[1]; data->currentMV[1].x = x; data->currentMV[1].y = y; }
401            if (data->temp[2] < data->iMinSAD[2]) {
402                    data->iMinSAD[2] = data->temp[2]; data->currentMV[2].x = x; data->currentMV[2].y = y; }
403            if (data->temp[3] < data->iMinSAD[3]) {
404                    data->iMinSAD[3] = data->temp[3]; data->currentMV[3].x = x; data->currentMV[3].y = y; }
405            if (data->temp[4] < data->iMinSAD[4]) {
406                    data->iMinSAD[4] = data->temp[4]; data->currentMV[4].x = x; data->currentMV[4].y = y; }
407    }
408    
409    static void
410    CheckCandidate16no4v(const int x, const int y, const int Direction, int * const dir, const SearchData * const data)
411    {
412            int32_t sad, xc, yc;
413            const uint8_t * Reference;
414            uint32_t t;
415            VECTOR * current;
416    
417            if ( (x > data->max_dx) | ( x < data->min_dx)
418                    | (y > data->max_dy) | (y < data->min_dy) ) return;
419    
420            if (data->rrv && (!(x&1) && x !=0) | (!(y&1) && y !=0) ) return; //non-zero even value
421    
422          if (data->qpel_precision) { // x and y are in 1/4 precision          if (data->qpel_precision) { // x and y are in 1/4 precision
423                  Reference = Interpolate16x16qpel(x, y, 0, data);                  Reference = Interpolate16x16qpel(x, y, 0, data);
                 t = d_mv_bits(x - data->predMV.x, y - data->predMV.y, data->iFcode);  
424                  current = data->currentQMV;                  current = data->currentQMV;
425                    xc = x/2; yc = y/2;
426          } else {          } else {
427                  switch ( ((x&1)<<1) + (y&1) ) {                  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;  
                 }  
                 if (data->qpel) t = d_mv_bits(2*x - data->predMV.x, 2*y - data->predMV.y, data->iFcode);  
                 else t = d_mv_bits(x - data->predMV.x, y - data->predMV.y, data->iFcode);  
428                  current = data->currentMV;                  current = data->currentMV;
429                    xc = x; yc = y;
430          }          }
431            t = d_mv_bits(x, y, data->predMV, data->iFcode,
432                                            data->qpel^data->qpel_precision, data->rrv);
433    
434          sad = sad16(data->Cur, Reference, data->iEdgedWidth, 256*4096);          sad = sad16(data->Cur, Reference, data->iEdgedWidth, 256*4096);
435          sad += (data->lambda16 * t * sad)/1000;          sad += (data->lambda16 * t * sad)>>10;
436    
437            if (data->chroma) sad += ChromaSAD((xc >> 1) + roundtab_79[xc & 0x3],
438                                                                                    (yc >> 1) + roundtab_79[yc & 0x3], data);
439    
440    
441          if (sad < *(data->iMinSAD)) {          if (sad < *(data->iMinSAD)) {
442                  *(data->iMinSAD) = sad;                  *(data->iMinSAD) = sad;
443                  current->x = x; current->y = y;                  current->x = x; current->y = y;
444                  *dir = Direction; }                  *dir = Direction;
445            }
446  }  }
447    
448  static void  static void
449  CheckCandidate16no4vI(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)
450  {  {
451  // maximum speed - for P/B/I decision  // maximum speed - for P/B/I decision
452          int32_t sad;          int32_t sad;
# Line 321  Line 454 
454          if (( x > data->max_dx) || ( x < data->min_dx)          if (( x > data->max_dx) || ( x < data->min_dx)
455                  || ( y > data->max_dy) || (y < data->min_dy)) return;                  || ( y > data->max_dy) || (y < data->min_dy)) return;
456    
457          sad = sad16(data->Cur, data->Ref + x/2 + (y/2)*(data->iEdgedWidth),          sad = sad32v_c(data->Cur, data->Ref + x/2 + (y/2)*(data->iEdgedWidth),
458                                          data->iEdgedWidth, 256*4096);                                                          data->iEdgedWidth, data->temp+1);
459    
460          if (sad < *(data->iMinSAD)) {          if (sad < *(data->iMinSAD)) {
461                  *(data->iMinSAD) = sad;                  *(data->iMinSAD) = sad;
462                  data->currentMV[0].x = x; data->currentMV[0].y = y;                  data->currentMV[0].x = x; data->currentMV[0].y = y;
463                  *dir = Direction; }                  *dir = Direction;
464  }  }
465            if (data->temp[1] < data->iMinSAD[1]) {
466                    data->iMinSAD[1] = data->temp[1]; data->currentMV[1].x = x; data->currentMV[1].y = y; }
467            if (data->temp[2] < data->iMinSAD[2]) {
468                    data->iMinSAD[2] = data->temp[2]; data->currentMV[2].x = x; data->currentMV[2].y = y; }
469            if (data->temp[3] < data->iMinSAD[3]) {
470                    data->iMinSAD[3] = data->temp[3]; data->currentMV[3].x = x; data->currentMV[3].y = y; }
471            if (data->temp[4] < data->iMinSAD[4]) {
472                    data->iMinSAD[4] = data->temp[4]; data->currentMV[4].x = x; data->currentMV[4].y = y; }
473    
474    }
475    
476  static void  static void
477  CheckCandidateInt(const int xf, const int yf, const int Direction, int * const dir, const SearchData * const data)  CheckCandidateInt(const int xf, const int yf, const int Direction, int * const dir, const SearchData * const data)
478  {  {
479          int32_t sad;          int32_t sad, xb, yb, xcf, ycf, xcb, ycb;
480          int xb, yb, t;          uint32_t t;
481          const uint8_t *ReferenceF, *ReferenceB;          const uint8_t *ReferenceF, *ReferenceB;
482          VECTOR *current;          VECTOR *current;
483    
484          if (( xf > data->max_dx) || ( xf < data->min_dx)          if ( (xf > data->max_dx) | (xf < data->min_dx)
485                  || ( yf > data->max_dy) || (yf < data->min_dy)) return;                  | (yf > data->max_dy) | (yf < data->min_dy) ) return;
486    
487          if (data->qpel_precision) {          if (!data->qpel_precision) {
488                    ReferenceF = GetReference(xf, yf, data);
489                    xb = data->currentMV[1].x; yb = data->currentMV[1].y;
490                    ReferenceB = GetReferenceB(xb, yb, 1, data);
491                    current = data->currentMV;
492                    xcf = xf; ycf = yf;
493                    xcb = xb; ycb = yb;
494            } else {
495                  ReferenceF = Interpolate16x16qpel(xf, yf, 0, data);                  ReferenceF = Interpolate16x16qpel(xf, yf, 0, data);
496                  xb = data->currentQMV[1].x; yb = data->currentQMV[1].y;                  xb = data->currentQMV[1].x; yb = data->currentQMV[1].y;
497                  current = data->currentQMV;                  current = data->currentQMV;
498                  ReferenceB = Interpolate16x16qpel(xb, yb, 1, data);                  ReferenceB = Interpolate16x16qpel(xb, yb, 1, data);
499                  t = d_mv_bits(xf - data->predMV.x, yf - data->predMV.y, data->iFcode)                  xcf = xf/2; ycf = yf/2;
500                                   + d_mv_bits(xb - data->bpredMV.x, yb - data->bpredMV.y, data->iFcode);                  xcb = xb/2; ycb = yb/2;
         } else {  
                 ReferenceF = Interpolate16x16qpel(2*xf, 2*yf, 0, data);  
                 xb = data->currentMV[1].x; yb = data->currentMV[1].y;  
                 ReferenceB = Interpolate16x16qpel(2*xb, 2*yb, 1, data);  
                 current = data->currentMV;  
                 if (data->qpel)  
                         t = 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);  
                 else  
                         t = 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);  
501          }          }
502    
503            t = d_mv_bits(xf, yf, data->predMV, data->iFcode, data->qpel^data->qpel_precision, 0)
504                     + d_mv_bits(xb, yb, data->bpredMV, data->iFcode, data->qpel^data->qpel_precision, 0);
505    
506          sad = sad16bi(data->Cur, ReferenceF, ReferenceB, data->iEdgedWidth);          sad = sad16bi(data->Cur, ReferenceF, ReferenceB, data->iEdgedWidth);
507          sad += (data->lambda16 * t * sad)/1000;          sad += (data->lambda16 * t * sad)>>10;
508    
509            if (data->chroma) sad += ChromaSAD2((xcf >> 1) + roundtab_79[xcf & 0x3],
510                                                                                    (ycf >> 1) + roundtab_79[ycf & 0x3],
511                                                                                    (xcb >> 1) + roundtab_79[xcb & 0x3],
512                                                                                    (ycb >> 1) + roundtab_79[ycb & 0x3], data);
513    
514          if (sad < *(data->iMinSAD)) {          if (sad < *(data->iMinSAD)) {
515                  *(data->iMinSAD) = sad;                  *(data->iMinSAD) = sad;
516                  current->x = xf; current->y = yf;                  current->x = xf; current->y = yf;
517                  *dir = Direction; }                  *dir = Direction;
518            }
519  }  }
520    
521  static void  static void
522  CheckCandidateDirect(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)
523  {  {
524          int32_t sad = 0;          int32_t sad = 0, xcf = 0, ycf = 0, xcb = 0, ycb = 0;
525          int k;          uint32_t k;
526          const uint8_t *ReferenceF;          const uint8_t *ReferenceF;
527          const uint8_t *ReferenceB;          const uint8_t *ReferenceB;
528          VECTOR mvs, b_mvs;          VECTOR mvs, b_mvs;
529    
530          if (( x > 31) || ( x < -32) || ( y > 31) || (y < -32)) return;          if (( x > 31) | ( x < -32) | ( y > 31) | (y < -32)) return;
531    
532          for (k = 0; k < 4; k++) {          for (k = 0; k < 4; k++) {
533                  mvs.x = data->directmvF[k].x + x;                  mvs.x = data->directmvF[k].x + x;
# Line 393  Line 540 
540                          data->directmvB[k].y                          data->directmvB[k].y
541                          : mvs.y - data->referencemv[k].y);                          : mvs.y - data->referencemv[k].y);
542    
543                  if (( mvs.x > data->max_dx ) || ( mvs.x < data->min_dx )                  if ( (mvs.x > data->max_dx) | (mvs.x < data->min_dx)
544                          || ( mvs.y > data->max_dy ) || ( mvs.y < data->min_dy )                          | (mvs.y > data->max_dy) | (mvs.y < data->min_dy)
545                          || ( b_mvs.x > data->max_dx ) || ( b_mvs.x < data->min_dx )                          | (b_mvs.x > data->max_dx) | (b_mvs.x < data->min_dx)
546                          || ( 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;
547    
548                  if (!data->qpel) {                  if (data->qpel) {
549                          mvs.x *= 2; mvs.y *= 2;                          xcf += mvs.x/2; ycf += mvs.y/2;
550                          b_mvs.x *= 2; b_mvs.y *= 2; //we move to qpel precision anyway                          xcb += b_mvs.x/2; ycb += b_mvs.y/2;
551                    } else {
552                            xcf += mvs.x; ycf += mvs.y;
553                            xcb += b_mvs.x; ycb += b_mvs.y;
554                            mvs.x *= 2; mvs.y *= 2; //we move to qpel precision anyway
555                            b_mvs.x *= 2; b_mvs.y *= 2;
556                  }                  }
557    
558                  ReferenceF = Interpolate8x8qpel(mvs.x, mvs.y, k, 0, data);                  ReferenceF = Interpolate8x8qpel(mvs.x, mvs.y, k, 0, data);
559                  ReferenceB = Interpolate8x8qpel(b_mvs.x, b_mvs.y, k, 1, data);                  ReferenceB = Interpolate8x8qpel(b_mvs.x, b_mvs.y, k, 1, data);
560    
561                  sad += sad8bi(data->Cur + 8*(k&1) + 8*(k>>1)*(data->iEdgedWidth),                  sad += sad8bi(data->Cur + 8*(k&1) + 8*(k>>1)*(data->iEdgedWidth),
562                                                  ReferenceF, ReferenceB,                                                  ReferenceF, ReferenceB, data->iEdgedWidth);
                                                 data->iEdgedWidth);  
563                  if (sad > *(data->iMinSAD)) return;                  if (sad > *(data->iMinSAD)) return;
564          }          }
565    
566          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;
567    
568            if (data->chroma) sad += ChromaSAD2((xcf >> 3) + roundtab_76[xcf & 0xf],
569                                                                                    (ycf >> 3) + roundtab_76[ycf & 0xf],
570                                                                                    (xcb >> 3) + roundtab_76[xcb & 0xf],
571                                                                                    (ycb >> 3) + roundtab_76[ycb & 0xf], data);
572    
573          if (sad < *(data->iMinSAD)) {          if (sad < *(data->iMinSAD)) {
574                  *(data->iMinSAD) = sad;                  *(data->iMinSAD) = sad;
575                  data->currentMV->x = x; data->currentMV->y = y;                  data->currentMV->x = x; data->currentMV->y = y;
576                  *dir = Direction; }                  *dir = Direction;
577            }
578  }  }
579    
580  static void  static void
581  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)
582  {  {
583          int32_t sad;          int32_t sad, xcf, ycf, xcb, ycb;
584          const uint8_t *ReferenceF;          const uint8_t *ReferenceF;
585          const uint8_t *ReferenceB;          const uint8_t *ReferenceB;
586          VECTOR mvs, b_mvs;          VECTOR mvs, b_mvs;
587    
588          if (( x > 31) || ( x < -32) || ( y > 31) || (y < -32)) return;          if (( x > 31) | ( x < -32) | ( y > 31) | (y < -32)) return;
589    
590          mvs.x = data->directmvF[0].x + x;          mvs.x = data->directmvF[0].x + x;
591          b_mvs.x = ((x == 0) ?          b_mvs.x = ((x == 0) ?
# Line 439  Line 597 
597                  data->directmvB[0].y                  data->directmvB[0].y
598                  : mvs.y - data->referencemv[0].y);                  : mvs.y - data->referencemv[0].y);
599    
600          if (( mvs.x > data->max_dx ) || ( mvs.x < data->min_dx )          if ( (mvs.x > data->max_dx) | (mvs.x < data->min_dx)
601                  || ( mvs.y > data->max_dy ) || ( mvs.y < data->min_dy )                  | (mvs.y > data->max_dy) | (mvs.y < data->min_dy)
602                  || ( b_mvs.x > data->max_dx ) || ( b_mvs.x < data->min_dx )                  | (b_mvs.x > data->max_dx) | (b_mvs.x < data->min_dx)
603                  || ( 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;
604    
605          if (!data->qpel) {          if (data->qpel) {
606                          mvs.x *= 2; mvs.y *= 2;                  xcf = 4*(mvs.x/2); ycf = 4*(mvs.y/2);
607                          b_mvs.x *= 2; b_mvs.y *= 2; //we move to qpel precision anyway                  xcb = 4*(b_mvs.x/2); ycb = 4*(b_mvs.y/2);
                 }  
608          ReferenceF = Interpolate16x16qpel(mvs.x, mvs.y, 0, data);          ReferenceF = Interpolate16x16qpel(mvs.x, mvs.y, 0, data);
609          ReferenceB = Interpolate16x16qpel(b_mvs.x, b_mvs.y, 1, data);          ReferenceB = Interpolate16x16qpel(b_mvs.x, b_mvs.y, 1, data);
610            } else {
611          sad = sad16bi(data->Cur, ReferenceF, ReferenceB, data->iEdgedWidth);                  xcf = 4*mvs.x; ycf = 4*mvs.y;
612          sad += (data->lambda16 * d_mv_bits(x, y, 1) * sad)/1000;                  xcb = 4*b_mvs.x; ycb = 4*b_mvs.y;
613                    ReferenceF = GetReference(mvs.x, mvs.y, data);
614          if (sad < *(data->iMinSAD)) {                  ReferenceB = GetReferenceB(b_mvs.x, b_mvs.y, 1, data);
                 *(data->iMinSAD) = sad;  
                 data->currentMV->x = x; data->currentMV->y = y;  
                 *dir = Direction; }  
615  }  }
616    
617  static void          sad = sad16bi(data->Cur, ReferenceF, ReferenceB, data->iEdgedWidth);
618  CheckCandidate8(const int x, const int y, const int Direction, int * const dir, const SearchData * const data)          sad += (data->lambda16 * d_mv_bits(x, y, zeroMV, 1, 0, 0) * sad)>>10;
 {  
         int32_t sad; int t;  
         const uint8_t * Reference;  
   
         if (( x > data->max_dx) || ( x < data->min_dx)  
                 || ( y > data->max_dy) || (y < data->min_dy)) return;  
   
         if (data->qpel) Reference = Interpolate16x16qpel(x, y, 0, data);  
         else Reference = Interpolate16x16qpel(2*x, 2*y, 0, data);  
   
         sad = sad8(data->Cur, Reference, data->iEdgedWidth);  
         if (data->qpel) t = d_mv_bits(2 * x - data->predMV.x, 2 * y - data->predMV.y, data->iFcode);  
         else t = d_mv_bits(x - data->predMV.x, y - data->predMV.y, data->iFcode);  
619    
620          sad += (data->lambda8 * t * (sad+NEIGH_8X8_BIAS))/100;          if (data->chroma) sad += ChromaSAD2((xcf >> 3) + roundtab_76[xcf & 0xf],
621                                                                                    (ycf >> 3) + roundtab_76[ycf & 0xf],
622                                                                                    (xcb >> 3) + roundtab_76[xcb & 0xf],
623                                                                                    (ycb >> 3) + roundtab_76[ycb & 0xf], data);
624    
625          if (sad < *(data->iMinSAD)) {          if (sad < *(data->iMinSAD)) {
626                  *(data->iMinSAD) = sad;                  *(data->iMinSAD) = sad;
627                  data->currentMV->x = x; data->currentMV->y = y;                  data->currentMV->x = x; data->currentMV->y = y;
628                  *dir = Direction; }                  *dir = Direction;
629            }
630  }  }
631    
632  /* CHECK_CANDIATE FUNCTIONS END */  /* CHECK_CANDIATE FUNCTIONS END */
# Line 496  Line 641 
641    
642                  int iDirection;                  int iDirection;
643    
644                  do {          for(;;) { //forever
645                          iDirection = 0;                          iDirection = 0;
646                          if (bDirection & 1) CHECK_CANDIDATE(x - iDiamondSize, y, 1);                          if (bDirection & 1) CHECK_CANDIDATE(x - iDiamondSize, y, 1);
647                          if (bDirection & 2) CHECK_CANDIDATE(x + iDiamondSize, y, 2);                          if (bDirection & 2) CHECK_CANDIDATE(x + iDiamondSize, y, 2);
# Line 505  Line 650 
650    
651                          /* now we're doing diagonal checks near our candidate */                          /* now we're doing diagonal checks near our candidate */
652    
653                          if (iDirection) {               //checking if anything found                  if (iDirection) {               //if anything found
654                                  bDirection = iDirection;                                  bDirection = iDirection;
655                                  iDirection = 0;                                  iDirection = 0;
656                                  x = data->currentMV->x; y = data->currentMV->y;                                  x = data->currentMV->x; y = data->currentMV->y;
# Line 514  Line 659 
659                                          CHECK_CANDIDATE(x, y - iDiamondSize, 4);                                          CHECK_CANDIDATE(x, y - iDiamondSize, 4);
660                                  } else {                        // what remains here is up or down                                  } else {                        // what remains here is up or down
661                                          CHECK_CANDIDATE(x + iDiamondSize, y, 2);                                          CHECK_CANDIDATE(x + iDiamondSize, y, 2);
662                                          CHECK_CANDIDATE(x - iDiamondSize, y, 1); }                                  CHECK_CANDIDATE(x - iDiamondSize, y, 1);
663                            }
664    
665                                  if (iDirection) {                                  if (iDirection) {
666                                          bDirection += iDirection;                                          bDirection += iDirection;
667                                          x = data->currentMV->x; y = data->currentMV->y; }                                  x = data->currentMV->x; y = data->currentMV->y;
668                            }
669                          } else {                                //about to quit, eh? not so fast....                          } else {                                //about to quit, eh? not so fast....
670                                  switch (bDirection) {                                  switch (bDirection) {
671                                  case 2:                                  case 2:
# Line 569  Line 716 
716                                  x = data->currentMV->x; y = data->currentMV->y;                                  x = data->currentMV->x; y = data->currentMV->y;
717                          }                          }
718                  }                  }
                 while (1);                              //forever  
719  }  }
720    
721  static void  static void
# Line 619  Line 765 
765                                          CHECK_CANDIDATE(x, y - iDiamondSize, 4);                                          CHECK_CANDIDATE(x, y - iDiamondSize, 4);
766                                  } else {                        // what remains here is up or down                                  } else {                        // what remains here is up or down
767                                          CHECK_CANDIDATE(x + iDiamondSize, y, 2);                                          CHECK_CANDIDATE(x + iDiamondSize, y, 2);
768                                          CHECK_CANDIDATE(x - iDiamondSize, y, 1); }                                  CHECK_CANDIDATE(x - iDiamondSize, y, 1);
769                            }
770                                  bDirection += iDirection;                                  bDirection += iDirection;
771                                  x = data->currentMV->x; y = data->currentMV->y;                                  x = data->currentMV->x; y = data->currentMV->y;
772                          }                          }
# Line 630  Line 776 
776    
777  /* MAINSEARCH FUNCTIONS END */  /* MAINSEARCH FUNCTIONS END */
778    
 /* HALFPELREFINE COULD BE A MAINSEARCH FUNCTION, BUT THERE IS NO NEED FOR IT */  
   
779  static void  static void
780  SubpelRefine(const SearchData * const data)  SubpelRefine(const SearchData * const data)
781  {  {
782  /* Do a half-pel or q-pel refinement */  /* Do a half-pel or q-pel refinement */
783          VECTOR backupMV;          const VECTOR centerMV = data->qpel_precision ? *data->currentQMV : *data->currentMV;
784          int iDirection; //not needed          int iDirection; //only needed because macro expects it
   
         if (data->qpel_precision)  
                 backupMV = *(data->currentQMV);  
         else backupMV = *(data->currentMV);  
   
         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);  
785    
786          CHECK_CANDIDATE(backupMV.x, backupMV.y + 1, 0);          CHECK_CANDIDATE(centerMV.x, centerMV.y - 1, 0);
787          CHECK_CANDIDATE(backupMV.x, backupMV.y - 1, 0);          CHECK_CANDIDATE(centerMV.x + 1, centerMV.y - 1, 0);
788            CHECK_CANDIDATE(centerMV.x + 1, centerMV.y, 0);
789            CHECK_CANDIDATE(centerMV.x + 1, centerMV.y + 1, 0);
790            CHECK_CANDIDATE(centerMV.x, centerMV.y + 1, 0);
791            CHECK_CANDIDATE(centerMV.x - 1, centerMV.y + 1, 0);
792            CHECK_CANDIDATE(centerMV.x - 1, centerMV.y, 0);
793            CHECK_CANDIDATE(centerMV.x - 1, centerMV.y - 1, 0);
794  }  }
795    
796  static __inline int  static __inline int
797  SkipDecisionP(const IMAGE * current, const IMAGE * reference,  SkipDecisionP(const IMAGE * current, const IMAGE * reference,
798                                                          const int x, const int y,                                                          const int x, const int y,
799                                                          const uint32_t iEdgedWidth, const uint32_t iQuant)                                                          const uint32_t stride, const uint32_t iQuant, int rrv)
800    
801  {  {
802  /*      keep repeating checks for all b-frames before this P frame,          if(!rrv) {
803          to make sure that SKIP is possible (todo)                  uint32_t sadC = sad8(current->u + x*8 + y*stride*8,
804          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);  
805          if (sadC > iQuant * MAX_CHROMA_SAD_FOR_SKIP) return 0;          if (sadC > iQuant * MAX_CHROMA_SAD_FOR_SKIP) return 0;
806          sadC += sad8(current->v + (x + y*(iEdgedWidth/2))*8,                  sadC += sad8(current->v + (x + y*stride)*8,
807                                          reference->v + (x + y*(iEdgedWidth/2))*8, iEdgedWidth/2);                                                  reference->v + (x + y*stride)*8, stride);
808          if (sadC > iQuant * MAX_CHROMA_SAD_FOR_SKIP) return 0;          if (sadC > iQuant * MAX_CHROMA_SAD_FOR_SKIP) return 0;
809                    return 1;
810    
811            } else {
812                    uint32_t sadC = sad16(current->u + x*16 + y*stride*16,
813                                                    reference->u + x*16 + y*stride*16, stride, 256*4096);
814                    if (sadC > iQuant * MAX_CHROMA_SAD_FOR_SKIP*4) return 0;
815                    sadC += sad16(current->v + (x + y*stride)*16,
816                                                    reference->v + (x + y*stride)*16, stride, 256*4096);
817                    if (sadC > iQuant * MAX_CHROMA_SAD_FOR_SKIP*4) return 0;
818          return 1;          return 1;
819  }  }
820    }
821    
822  static __inline void  static __inline void
823  SkipMacroblockP(MACROBLOCK *pMB, const int32_t sad)  SkipMacroblockP(MACROBLOCK *pMB, const int32_t sad)
824  {  {
825          pMB->mode = MODE_NOT_CODED;          pMB->mode = MODE_NOT_CODED;
826          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;
827          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;  
   
828          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;
829  }  }
830    
# Line 701  Line 841 
841          const IMAGE *const pCurrent = &current->image;          const IMAGE *const pCurrent = &current->image;
842          const IMAGE *const pRef = &reference->image;          const IMAGE *const pRef = &reference->image;
843    
844          const VECTOR zeroMV = { 0, 0 };          uint32_t mb_width = pParam->mb_width;
845            uint32_t mb_height = pParam->mb_height;
846            const uint32_t iEdgedWidth = pParam->edged_width;
847    
848          uint32_t x, y;          uint32_t x, y;
849          uint32_t iIntra = 0;          uint32_t iIntra = 0;
850          int32_t InterBias, quant = current->quant, sad00;          int32_t InterBias, quant = current->quant, sad00;
         uint8_t *qimage;  
851    
852          // some pre-initialized thingies for SearchP          // some pre-initialized thingies for SearchP
853          int32_t temp[5];          int32_t temp[8];
854          VECTOR currentMV[5];          VECTOR currentMV[5];
855          VECTOR currentQMV[5];          VECTOR currentQMV[5];
856          int32_t iMinSAD[5];          int32_t iMinSAD[5];
857          SearchData Data;          SearchData Data;
858          Data.iEdgedWidth = pParam->edged_width;          memset(&Data, 0, sizeof(SearchData));
859            Data.iEdgedWidth = iEdgedWidth;
860          Data.currentMV = currentMV;          Data.currentMV = currentMV;
861          Data.currentQMV = currentQMV;          Data.currentQMV = currentQMV;
862          Data.iMinSAD = iMinSAD;          Data.iMinSAD = iMinSAD;
# Line 722  Line 864 
864          Data.iFcode = current->fcode;          Data.iFcode = current->fcode;
865          Data.rounding = pParam->m_rounding_type;          Data.rounding = pParam->m_rounding_type;
866          Data.qpel = pParam->m_quarterpel;          Data.qpel = pParam->m_quarterpel;
867          Data.chroma = current->global_flags & XVID_ME_COLOUR;          Data.chroma = current->motion_flags & PMV_CHROMA16;
868            Data.rrv = current->global_flags & XVID_REDUCED;
869    
870          if((qimage = (uint8_t *) malloc(32 * pParam->edged_width)) == NULL)          if ((current->global_flags & XVID_REDUCED)) {
871                  return 1; // allocate some mem for qpel interpolated blocks                  mb_width = (pParam->width + 31) / 32;
872                                    // somehow this is dirty since I think we shouldn't use malloc outside                  mb_height = (pParam->height + 31) / 32;
873                                    // encoder_create() - so please fix me!                  Data.qpel = Data.chroma = 0;
874          Data.RefQ = qimage;          }
875    
876            Data.RefQ = pRefV->u; // a good place, also used in MC (for similar purpose)
877          if (sadInit) (*sadInit) ();          if (sadInit) (*sadInit) ();
878    
879          for (y = 0; y < pParam->mb_height; y++) {          for (y = 0; y < mb_height; y++) {
880                  for (x = 0; x < pParam->mb_width; x++)  {                  for (x = 0; x < mb_width; x++)  {
881                          MACROBLOCK *pMB = &pMBs[x + y * pParam->mb_width];                          MACROBLOCK *pMB = &pMBs[x + y * pParam->mb_width];
882    
883                          pMB->sad16                          if (!Data.rrv) pMB->sad16 =
884                                  = sad16v(pCurrent->y + (x + y * pParam->edged_width) * 16,                                  sad16v(pCurrent->y + (x + y * iEdgedWidth) * 16,
885                                                          pRef->y + (x + y * pParam->edged_width) * 16,                                                          pRef->y + (x + y * iEdgedWidth) * 16,
886                                                          pParam->edged_width, pMB->sad8 );                                                          pParam->edged_width, pMB->sad8 );
887    
888                          if (Data.chroma) {                          else pMB->sad16 =
889                                  pMB->sad16 += sad8(pCurrent->u + x*8 + y*(pParam->edged_width/2)*8,                                  sad32v_c(pCurrent->y + (x + y * iEdgedWidth) * 32,
890                                                                  pRef->u + x*8 + y*(pParam->edged_width/2)*8, pParam->edged_width/2);                                                          pRef->y + (x + y * iEdgedWidth) * 32,
891                                                            pParam->edged_width, pMB->sad8 );
892    
893                                  pMB->sad16 += sad8(pCurrent->v + (x + y*(pParam->edged_width/2))*8,                          if (Data.chroma) {
894                                                                  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,
895                                                                            pRef->u + x*8 + y*(iEdgedWidth/2)*8, iEdgedWidth/2)
896                                                                    + sad8(pCurrent->v + (x + y*(iEdgedWidth/2))*8,
897                                                                            pRef->v + (x + y*(iEdgedWidth/2))*8, iEdgedWidth/2);
898                                    pMB->sad16 += Data.temp[7];
899                          }                          }
900    
901                          sad00 = pMB->sad16; //if no gmc; else sad00 = (..)                          sad00 = pMB->sad16;
902    
903                          if (!(current->global_flags & XVID_LUMIMASKING)) {                          if (!(current->global_flags & XVID_LUMIMASKING)) {
904                                  pMB->dquant = NO_CHANGE;                                  pMB->dquant = NO_CHANGE;
                                 pMB->quant = current->quant;  
905                          } else {                          } else {
906                                  if (pMB->dquant != NO_CHANGE) {                                  if (pMB->dquant != NO_CHANGE) {
907                                          quant += DQtab[pMB->dquant];                                          quant += DQtab[pMB->dquant];
908                                          if (quant > 31) quant = 31;                                          if (quant > 31) quant = 31;
909                                          else if (quant < 1) quant = 1;                                          else if (quant < 1) quant = 1;
910                                  }                                  }
                                 pMB->quant = quant;  
911                          }                          }
912                            pMB->quant = current->quant;
913    
914  //initial skip decision  //initial skip decision
915  /* no early skip for GMC (global vector = skip vector is unknown!)  */  /* no early skip for GMC (global vector = skip vector is unknown!)  */
916                          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 */
917                                  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) )
918                                          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)) {
919                                                  SkipMacroblockP(pMB, sad00);                                                  SkipMacroblockP(pMB, sad00);
920                                                  continue;                                                  continue;
921                                          }                                          }
# Line 778  Line 927 
927                                                  current->global_flags & XVID_INTER4V, pMB);                                                  current->global_flags & XVID_INTER4V, pMB);
928    
929  /* 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?" */
930                          if (current->coding_type == P_VOP)      {                          if (!(current->global_flags & XVID_GMC))        {
931                                  if ( (pMB->dquant == NO_CHANGE) && (sad00 < pMB->quant * MAX_SAD00_FOR_SKIP)                                  if ( (pMB->dquant == NO_CHANGE) && (sad00 < pMB->quant * MAX_SAD00_FOR_SKIP)
932                                  && ((100*pMB->sad16)/(sad00+1) > FINAL_SKIP_THRESH) )                                          && ((100*pMB->sad16)/(sad00+1) > FINAL_SKIP_THRESH * (Data.rrv ? 4:1)) )
933                                          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)) {
934                                                  SkipMacroblockP(pMB, sad00);                                                  SkipMacroblockP(pMB, sad00);
935                                                  continue;                                                  continue;
936                                          }                                          }
# Line 797  Line 946 
946                                  if ((pMB - 1)->mode == MODE_INTRA ) InterBias -= 80;                                  if ((pMB - 1)->mode == MODE_INTRA ) InterBias -= 80;
947    
948                          if (Data.chroma) InterBias += 50; // to compensate bigger SAD                          if (Data.chroma) InterBias += 50; // to compensate bigger SAD
949                            if (Data.rrv) InterBias *= 4;
950    
951                          if (InterBias < pMB->sad16)  {                          if (InterBias < pMB->sad16)  {
952                                  const int32_t deviation =                                  int32_t deviation;
953                                          dev16(pCurrent->y + (x + y * pParam->edged_width) * 16,                                  if (!Data.rrv)
954                                                    pParam->edged_width);                                          deviation = dev16(pCurrent->y + (x + y * iEdgedWidth) * 16, iEdgedWidth);
955                                    else {
956                                            deviation = dev16(pCurrent->y + (x + y * iEdgedWidth) * 32, iEdgedWidth)
957                                                    + dev16(pCurrent->y + (x + y * iEdgedWidth) * 32 + 16, iEdgedWidth)
958                                                    + dev16(pCurrent->y + (x + y * iEdgedWidth) * 32 + 16 * iEdgedWidth, iEdgedWidth)
959                                                    + dev16(pCurrent->y + (x + y * iEdgedWidth) * 32 + 16 * (iEdgedWidth+1), iEdgedWidth);
960                                    }
961                                  if (deviation < (pMB->sad16 - InterBias)) {                                  if (deviation < (pMB->sad16 - InterBias)) {
962                                          if (++iIntra >= iLimit) { free(qimage); return 1; }                                          if (++iIntra >= iLimit) return 1;
963                                            SkipMacroblockP(pMB, 0); //same thing
964                                          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;  
965                                  }                                  }
966                          }                          }
967                  }                  }
968          }          }
         free(qimage);  
969    
970          if (current->coding_type == S_VOP)      /* first GMC step only for S(GMC)-VOPs */          if (current->global_flags & XVID_GMC )  /* GMC only for S(GMC)-VOPs */
971                  current->GMC_MV = GlobalMotionEst( pMBs, pParam, current->fcode );          {
972          else                  current->warp = GlobalMotionEst( pMBs, pParam, current, reference, pRefH, pRefV, pRefHV);
973                  current->GMC_MV = zeroMV;          }
974    
975          return 0;          return 0;
976  }  }
977    
978    
 #define PMV_HALFPEL16 (PMV_HALFPELDIAMOND16|PMV_HALFPELREFINE16)  
   
979  static __inline int  static __inline int
980  make_mask(const VECTOR * const pmv, const int i)  make_mask(const VECTOR * const pmv, const int i)
981  {  {
# Line 836  Line 983 
983          for (j = 0; j < i; j++) {          for (j = 0; j < i; j++) {
984                  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
985                  if (pmv[i].x == pmv[j].x) {                  if (pmv[i].x == pmv[j].x) {
986                          if (pmv[i].y == pmv[j].y + iDiamondSize) { mask &= ~4; continue; }                          if (pmv[i].y == pmv[j].y + iDiamondSize) mask &= ~4;
987                          if (pmv[i].y == pmv[j].y - iDiamondSize) { mask &= ~8; continue; }                          else if (pmv[i].y == pmv[j].y - iDiamondSize) mask &= ~8;
988                  } else                  } else
989                          if (pmv[i].y == pmv[j].y) {                          if (pmv[i].y == pmv[j].y) {
990                                  if (pmv[i].x == pmv[j].x + iDiamondSize) { mask &= ~1; continue; }                                  if (pmv[i].x == pmv[j].x + iDiamondSize) mask &= ~1;
991                                  if (pmv[i].x == pmv[j].x - iDiamondSize) { mask &= ~2; continue; }                                  else if (pmv[i].x == pmv[j].x - iDiamondSize) mask &= ~2;
992                          }                          }
993          }          }
994          return mask;          return mask;
995  }  }
996    
997  static __inline void  static __inline void
998  PreparePredictionsP(VECTOR * const pmv, int x, int y, const int iWcount,  PreparePredictionsP(VECTOR * const pmv, int x, int y, int iWcount,
999                          const int iHcount, const MACROBLOCK * const prevMB)                          int iHcount, const MACROBLOCK * const prevMB, int rrv)
1000  {  {
1001    
1002  //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
1003            if (rrv) { iWcount /= 2; iHcount /= 2; }
1004    
1005          if ( (y != 0) && (x != (iWcount-1)) ) {         // [5] top-right neighbour          if ( (y != 0) && (x < (iWcount-1)) ) {          // [5] top-right neighbour
1006                  pmv[5].x = EVEN(pmv[3].x);                  pmv[5].x = EVEN(pmv[3].x);
1007                  pmv[5].y = EVEN(pmv[3].y);                  pmv[5].y = EVEN(pmv[3].y);
1008          } else pmv[5].x = pmv[5].y = 0;          } else pmv[5].x = pmv[5].y = 0;
# Line 873  Line 1021 
1021          pmv[2].x = EVEN(prevMB->mvs[0].x); // [2] is last frame          pmv[2].x = EVEN(prevMB->mvs[0].x); // [2] is last frame
1022          pmv[2].y = EVEN(prevMB->mvs[0].y);          pmv[2].y = EVEN(prevMB->mvs[0].y);
1023    
1024          if ((x != iWcount-1) && (y != iHcount-1)) {          if ((x < iWcount-1) && (y < iHcount-1)) {
1025                  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
1026                  pmv[6].y = EVEN((prevMB+1+iWcount)->mvs[0].y);                  pmv[6].y = EVEN((prevMB+1+iWcount)->mvs[0].y);
1027          } else pmv[6].x = pmv[6].y = 0;          } else pmv[6].x = pmv[6].y = 0;
1028    
1029            if (rrv) {
1030                    int i;
1031                    for (i = 0; i < 7; i++) {
1032                            pmv[i].x = RRV_MV_SCALEUP(pmv[i].x);
1033                            pmv[i].y = RRV_MV_SCALEUP(pmv[i].y);
1034                    }
1035            }
1036  }  }
1037    
1038  static void  static void
# Line 900  Line 1056 
1056          int i, iDirection = 255, mask, threshA;          int i, iDirection = 255, mask, threshA;
1057          VECTOR pmv[7];          VECTOR pmv[7];
1058    
         get_pmvdata2(pMBs, pParam->mb_width, 0, x, y, 0, pmv, Data->temp);  //has to be changed to get_pmv(2)()  
1059          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,
1060                                  pParam->width, pParam->height, Data->iFcode, pParam->m_quarterpel);                                                  pParam->width, pParam->height, Data->iFcode - Data->qpel, 0, Data->rrv);
1061    
1062            get_pmvdata2(pMBs, pParam->mb_width, 0, x, y, 0, pmv, Data->temp);
1063    
1064          Data->Cur = pCur->y + (x + y * Data->iEdgedWidth) * 16;          Data->temp[5] = Data->temp[6] = 0; // chroma-sad cache
1065          Data->CurV = pCur->v + (x + y * (Data->iEdgedWidth/2)) * 8;          i = Data->rrv ? 2 : 1;
1066          Data->CurU = pCur->u + (x + y * (Data->iEdgedWidth/2)) * 8;          Data->Cur = pCur->y + (x + y * Data->iEdgedWidth) * 16*i;
1067            Data->CurV = pCur->v + (x + y * (Data->iEdgedWidth/2)) * 8*i;
1068          Data->Ref = pRef->y + (x + Data->iEdgedWidth*y) * 16;          Data->CurU = pCur->u + (x + y * (Data->iEdgedWidth/2)) * 8*i;
1069          Data->RefH = pRefH + (x + Data->iEdgedWidth*y) * 16;  
1070          Data->RefV = pRefV + (x + Data->iEdgedWidth*y) * 16;          Data->Ref = pRef->y + (x + Data->iEdgedWidth*y) * 16*i;
1071          Data->RefHV = pRefHV + (x + Data->iEdgedWidth*y) * 16;          Data->RefH = pRefH + (x + Data->iEdgedWidth*y) * 16*i;
1072          Data->RefCV = pRef->v + (x + y * (Data->iEdgedWidth/2)) * 8;          Data->RefV = pRefV + (x + Data->iEdgedWidth*y) * 16*i;
1073          Data->RefCU = pRef->u + (x + y * (Data->iEdgedWidth/2)) * 8;          Data->RefHV = pRefHV + (x + Data->iEdgedWidth*y) * 16*i;
1074            Data->RefCV = pRef->v + (x + y * (Data->iEdgedWidth/2)) * 8*i;
1075            Data->RefCU = pRef->u + (x + y * (Data->iEdgedWidth/2)) * 8*i;
1076    
1077          Data->lambda16 = lambda_vec16[iQuant];          Data->lambda16 = lambda_vec16[iQuant];
1078          Data->lambda8 = lambda_vec8[iQuant];          Data->lambda8 = lambda_vec8[iQuant];
1079          Data->qpel_precision = 0;          Data->qpel_precision = 0;
1080    
         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); }  
   
1081          if (pMB->dquant != NO_CHANGE) inter4v = 0;          if (pMB->dquant != NO_CHANGE) inter4v = 0;
1082    
1083          for(i = 0;  i < 5; i++)          for(i = 0;  i < 5; i++)
1084                  Data->currentMV[i].x = Data->currentMV[i].y = 0;                  Data->currentMV[i].x = Data->currentMV[i].y = 0;
1085    
1086          if (pParam->m_quarterpel) Data->predMV = get_qpmv2(pMBs, pParam->mb_width, 0, x, y, 0);          if (Data->qpel) Data->predMV = get_qpmv2(pMBs, pParam->mb_width, 0, x, y, 0);
1087          else Data->predMV = pmv[0];          else Data->predMV = pmv[0];
1088    
1089          i = d_mv_bits(Data->predMV.x, Data->predMV.y, Data->iFcode);          i = d_mv_bits(0, 0, Data->predMV, Data->iFcode, 0, 0);
1090          Data->iMinSAD[0] = pMB->sad16 + (Data->lambda16 * i * pMB->sad16)/1000;          Data->iMinSAD[0] = pMB->sad16 + ((Data->lambda16 * i * pMB->sad16)>>10);
1091          Data->iMinSAD[1] = pMB->sad8[0] + (Data->lambda8 * i * (pMB->sad8[0]+NEIGH_8X8_BIAS))/100;          Data->iMinSAD[1] = pMB->sad8[0] + ((Data->lambda8 * i * (pMB->sad8[0]+NEIGH_8X8_BIAS)) >> 10);
1092          Data->iMinSAD[2] = pMB->sad8[1];          Data->iMinSAD[2] = pMB->sad8[1];
1093          Data->iMinSAD[3] = pMB->sad8[2];          Data->iMinSAD[3] = pMB->sad8[2];
1094          Data->iMinSAD[4] = pMB->sad8[3];          Data->iMinSAD[4] = pMB->sad8[3];
1095    
1096          if ((x == 0) && (y == 0)) threshA = 512;          if (x | y) {
         else {  
1097                  threshA = Data->temp[0]; // that's when we keep this SAD atm                  threshA = Data->temp[0]; // that's when we keep this SAD atm
1098                  if (threshA < 512) threshA = 512;                  if (threshA < 512) threshA = 512;
1099                  if (threshA > 1024) threshA = 1024; }                  else if (threshA > 1024) threshA = 1024;
1100            } else threshA = 512;
1101    
1102          PreparePredictionsP(pmv, x, y, pParam->mb_width, pParam->mb_height,          PreparePredictionsP(pmv, x, y, pParam->mb_width, pParam->mb_height,
1103                                          prevMBs + x + y * pParam->mb_width);                                          prevMBs + x + y * pParam->mb_width, Data->rrv);
1104    
1105          if (inter4v || Data->chroma) CheckCandidate = CheckCandidate16;          if (!Data->rrv) {
1106                    if (inter4v | Data->chroma) CheckCandidate = CheckCandidate16;
1107          else CheckCandidate = CheckCandidate16no4v; //for extra speed          else CheckCandidate = CheckCandidate16no4v; //for extra speed
1108            } else CheckCandidate = CheckCandidate32;
1109    
1110  /* main loop. checking all predictions */  /* main loop. checking all predictions (but first, which is 0,0 and has been checked in MotionEstimation())*/
1111    
1112          for (i = 1; i < 7; i++) {          for (i = 1; i < 7; i++) {
1113                  if (!(mask = make_mask(pmv, i)) ) continue;                  if (!(mask = make_mask(pmv, i)) ) continue;
1114                  (*CheckCandidate)(pmv[i].x, pmv[i].y, mask, &iDirection, Data);                  CheckCandidate(pmv[i].x, pmv[i].y, mask, &iDirection, Data);
1115                  if (Data->iMinSAD[0] <= threshA) break;                  if (Data->iMinSAD[0] <= threshA) break;
1116          }          }
1117    
1118          if ((Data->iMinSAD[0] <= threshA) ||          if ((Data->iMinSAD[0] <= threshA) ||
1119                          (MVequal(Data->currentMV[0], (prevMBs+x+y*pParam->mb_width)->mvs[0]) &&                          (MVequal(Data->currentMV[0], (prevMBs+x+y*pParam->mb_width)->mvs[0]) &&
1120                          (Data->iMinSAD[0] < (prevMBs+x+y*pParam->mb_width)->sad16))) {                          (Data->iMinSAD[0] < (prevMBs+x+y*pParam->mb_width)->sad16)))
1121                  inter4v = 0;                  inter4v = 0;
1122          } else {          else {
1123    
1124                  MainSearchFunc * MainSearchPtr;                  MainSearchFunc * MainSearchPtr;
1125                  if (MotionFlags & PMV_USESQUARES16) MainSearchPtr = SquareSearch;                  if (MotionFlags & PMV_USESQUARES16) MainSearchPtr = SquareSearch;
# Line 980  Line 1135 
1135                  if (MotionFlags & PMV_EXTSEARCH16) {                  if (MotionFlags & PMV_EXTSEARCH16) {
1136                          int32_t bSAD;                          int32_t bSAD;
1137                          VECTOR startMV = Data->predMV, backupMV = Data->currentMV[0];                          VECTOR startMV = Data->predMV, backupMV = Data->currentMV[0];
1138                            if (Data->rrv) {
1139                                    startMV.x = RRV_MV_SCALEUP(startMV.x);
1140                                    startMV.y = RRV_MV_SCALEUP(startMV.y);
1141                            } else
1142                          if (!(MotionFlags & PMV_HALFPELREFINE16)) // who's gonna use extsearch and no halfpel?                          if (!(MotionFlags & PMV_HALFPELREFINE16)) // who's gonna use extsearch and no halfpel?
1143                                  startMV.x = EVEN(startMV.x); startMV.y = EVEN(startMV.y);                                  startMV.x = EVEN(startMV.x); startMV.y = EVEN(startMV.y);
1144                          if (!(MVequal(startMV, backupMV))) {                          if (!(MVequal(startMV, backupMV))) {
1145                                  bSAD = Data->iMinSAD[0]; Data->iMinSAD[0] = MV_MAX_ERROR;                                  bSAD = Data->iMinSAD[0]; Data->iMinSAD[0] = MV_MAX_ERROR;
1146    
1147                                  (*CheckCandidate)(startMV.x, startMV.y, 255, &iDirection, Data);                                  CheckCandidate(startMV.x, startMV.y, 255, &iDirection, Data);
1148                                  (*MainSearchPtr)(startMV.x, startMV.y, Data, 255);                                  (*MainSearchPtr)(startMV.x, startMV.y, Data, 255);
1149                                  if (bSAD < Data->iMinSAD[0]) {                                  if (bSAD < Data->iMinSAD[0]) {
1150                                          Data->currentMV[0] = backupMV;                                          Data->currentMV[0] = backupMV;
# Line 993  Line 1152 
1152                          }                          }
1153    
1154                          backupMV = Data->currentMV[0];                          backupMV = Data->currentMV[0];
1155                          if (MotionFlags & PMV_HALFPELREFINE16) startMV.x = startMV.y = 1;                          if (MotionFlags & PMV_HALFPELREFINE16 && !Data->rrv) startMV.x = startMV.y = 1;
1156                          else startMV.x = startMV.y = 0;                          else startMV.x = startMV.y = 0;
1157                          if (!(MVequal(startMV, backupMV))) {                          if (!(MVequal(startMV, backupMV))) {
1158                                  bSAD = Data->iMinSAD[0]; Data->iMinSAD[0] = MV_MAX_ERROR;                                  bSAD = Data->iMinSAD[0]; Data->iMinSAD[0] = MV_MAX_ERROR;
1159    
1160                                  (*CheckCandidate)(startMV.x, startMV.y, 255, &iDirection, Data);                                  CheckCandidate(startMV.x, startMV.y, 255, &iDirection, Data);
1161                                  (*MainSearchPtr)(startMV.x, startMV.y, Data, 255);                                  (*MainSearchPtr)(startMV.x, startMV.y, Data, 255);
1162                                  if (bSAD < Data->iMinSAD[0]) {                                  if (bSAD < Data->iMinSAD[0]) {
1163                                          Data->currentMV[0] = backupMV;                                          Data->currentMV[0] = backupMV;
# Line 1014  Line 1173 
1173                  Data->currentQMV[i].y = 2 * Data->currentMV[i].y;                  Data->currentQMV[i].y = 2 * Data->currentMV[i].y;
1174          }          }
1175    
1176          if((pParam->m_quarterpel) && (MotionFlags & PMV_QUARTERPELREFINE16)) {          if (Data->qpel && MotionFlags & PMV_QUARTERPELREFINE16) {
   
1177                  Data->qpel_precision = 1;                  Data->qpel_precision = 1;
1178                  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,
1179                                  pParam->width, pParam->height, Data->iFcode, 0);                                  pParam->width, pParam->height, Data->iFcode, 1, 0);
1180    
1181                  SubpelRefine(Data);                  SubpelRefine(Data);
1182          }          }
# Line 1026  Line 1184 
1184          if (Data->iMinSAD[0] < (int32_t)iQuant * 30 ) inter4v = 0;          if (Data->iMinSAD[0] < (int32_t)iQuant * 30 ) inter4v = 0;
1185          if (inter4v) {          if (inter4v) {
1186                  SearchData Data8;                  SearchData Data8;
1187                  Data8.iFcode = Data->iFcode;                  memcpy(&Data8, Data, sizeof(SearchData)); //quick copy of common data
1188                  Data8.lambda8 = Data->lambda8;  
                 Data8.iEdgedWidth = Data->iEdgedWidth;  
                 Data8.RefQ = Data->RefQ;  
                 Data8.qpel = Data->qpel;  
1189                  Search8(Data, 2*x, 2*y, MotionFlags, pParam, pMB, pMBs, 0, &Data8);                  Search8(Data, 2*x, 2*y, MotionFlags, pParam, pMB, pMBs, 0, &Data8);
1190                  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);
1191                  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);
1192                  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);
1193    
1194                  if (Data->chroma) {                  if (Data->chroma) {
1195                          int sumx, sumy, dx, dy;                          int sumx = 0, sumy = 0;
1196                            const int div = 1 + Data->qpel;
1197                            const VECTOR * const mv = Data->qpel ? pMB->qmvs : pMB->mvs;
1198    
1199                          if(pParam->m_quarterpel) {                          for (i = 0; i < 4; i++) {
1200                                  sumx= pMB->qmvs[0].x/2 + pMB->qmvs[1].x/2 + pMB->qmvs[2].x/2 + pMB->qmvs[3].x/2;                                  sumx += mv[i].x / div;
1201                                  sumy = pMB->qmvs[0].y/2 + pMB->qmvs[1].y/2 + pMB->qmvs[2].y/2 + pMB->qmvs[3].y/2;                                  sumy += mv[i].y / div;
                         } else {  
                                 sumx = pMB->mvs[0].x + pMB->mvs[1].x + pMB->mvs[2].x + pMB->mvs[3].x;  
                                 sumy = pMB->mvs[0].y + pMB->mvs[1].y + pMB->mvs[2].y + pMB->mvs[3].y;  
1202                          }                          }
                         dx = (sumx >> 3) + roundtab_76[sumx & 0xf];  
                         dy = (sumy >> 3) + roundtab_76[sumy & 0xf];  
1203    
1204                          Data->iMinSAD[1] += ChromaSAD(dx, dy, Data);                          Data->iMinSAD[1] += ChromaSAD(  (sumx >> 3) + roundtab_76[sumx & 0xf],
1205                                                                                            (sumy >> 3) + roundtab_76[sumy & 0xf], Data);
1206                    }
1207                  }                  }
1208    
1209            if (Data->rrv) {
1210                            Data->currentMV[0].x = RRV_MV_SCALEDOWN(Data->currentMV[0].x);
1211                            Data->currentMV[0].y = RRV_MV_SCALEDOWN(Data->currentMV[0].y);
1212          }          }
1213    
1214          if (!(inter4v) ||          if (!(inter4v) ||
# Line 1058  Line 1216 
1216                          Data->iMinSAD[3] + Data->iMinSAD[4] + IMV16X16 * (int32_t)iQuant )) {                          Data->iMinSAD[3] + Data->iMinSAD[4] + IMV16X16 * (int32_t)iQuant )) {
1217  // INTER MODE  // INTER MODE
1218                  pMB->mode = MODE_INTER;                  pMB->mode = MODE_INTER;
1219                  pMB->mvs[0] = pMB->mvs[1]                  pMB->mvs[0] = pMB->mvs[1] = pMB->mvs[2] = pMB->mvs[3] = Data->currentMV[0];
1220                          = 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];
   
                 pMB->sad16 = pMB->sad8[0] = pMB->sad8[1] =  
                         pMB->sad8[2] = pMB->sad8[3] =  Data->iMinSAD[0];  
1221    
1222                  if(pParam->m_quarterpel) {                  if(Data->qpel) {
1223                          pMB->qmvs[0] = pMB->qmvs[1]                          pMB->qmvs[0] = pMB->qmvs[1]
1224                                  = pMB->qmvs[2] = pMB->qmvs[3] = Data->currentQMV[0];                                  = pMB->qmvs[2] = pMB->qmvs[3] = Data->currentQMV[0];
1225                          pMB->pmvs[0].x = Data->currentQMV[0].x - Data->predMV.x;                          pMB->pmvs[0].x = Data->currentQMV[0].x - Data->predMV.x;
# Line 1091  Line 1246 
1246                  const int block,                  const int block,
1247                  SearchData * const Data)                  SearchData * const Data)
1248  {  {
1249            int i = 0;
1250          Data->iMinSAD = OldData->iMinSAD + 1 + block;          Data->iMinSAD = OldData->iMinSAD + 1 + block;
1251          Data->currentMV = OldData->currentMV + 1 + block;          Data->currentMV = OldData->currentMV + 1 + block;
1252          Data->currentQMV = OldData->currentQMV + 1 + block;          Data->currentQMV = OldData->currentQMV + 1 + block;
1253    
1254          if(pParam->m_quarterpel) {          if(Data->qpel) {
1255                  Data->predMV = 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);
1256                  if (block != 0) *(Data->iMinSAD) += (Data->lambda8 *                  if (block != 0) i = d_mv_bits(  Data->currentQMV->x, Data->currentQMV->y,
1257                                                                          d_mv_bits(      Data->currentQMV->x - Data->predMV.x,                                                                                  Data->predMV, Data->iFcode, 0, 0);
                                                                                                 Data->currentQMV->y - Data->predMV.y,  
                                                                                                 Data->iFcode) * (*Data->iMinSAD + NEIGH_8X8_BIAS))/100;  
1258          } else {          } else {
1259                  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);
1260                  if (block != 0) *(Data->iMinSAD) += (Data->lambda8 *                  if (block != 0) i = d_mv_bits(  Data->currentMV->x, Data->currentMV->y,
1261                                                                          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;  
1262          }          }
1263    
1264          if (MotionFlags & (PMV_EXTSEARCH8|PMV_HALFPELREFINE8)) {          *(Data->iMinSAD) += (Data->lambda8 * i * (*Data->iMinSAD + NEIGH_8X8_BIAS))>>10;
1265    
1266            if (MotionFlags & (PMV_EXTSEARCH8|PMV_HALFPELREFINE8|PMV_QUARTERPELREFINE8)) {
1267                    if (Data->rrv) i = 2; else i = 1;
1268    
1269                  Data->Ref = OldData->Ref + 8 * ((block&1) + pParam->edged_width*(block>>1));                  Data->Ref = OldData->Ref + i * 8 * ((block&1) + Data->iEdgedWidth*(block>>1));
1270                  Data->RefH = OldData->RefH + 8 * ((block&1) + pParam->edged_width*(block>>1));                  Data->RefH = OldData->RefH + i * 8 * ((block&1) + Data->iEdgedWidth*(block>>1));
1271                  Data->RefV = OldData->RefV + 8 * ((block&1) + pParam->edged_width*(block>>1));                  Data->RefV = OldData->RefV + i * 8 * ((block&1) + Data->iEdgedWidth*(block>>1));
1272                  Data->RefHV = OldData->RefHV + 8 * ((block&1) + pParam->edged_width*(block>>1));                  Data->RefHV = OldData->RefHV + i * 8 * ((block&1) + Data->iEdgedWidth*(block>>1));
1273    
1274                  Data->Cur = OldData->Cur + 8 * ((block&1) + pParam->edged_width*(block>>1));                  Data->Cur = OldData->Cur + i * 8 * ((block&1) + Data->iEdgedWidth*(block>>1));
1275                  Data->qpel_precision = 0;                  Data->qpel_precision = 0;
1276    
1277                  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,
1278                                  pParam->width, pParam->height, OldData->iFcode, pParam->m_quarterpel);                                          pParam->width, pParam->height, Data->iFcode - Data->qpel, 0, Data->rrv);
1279                  CheckCandidate = CheckCandidate8;  
1280                    if (!Data->rrv) CheckCandidate = CheckCandidate8;
1281                    else CheckCandidate = CheckCandidate16no4v;
1282    
1283                  if (MotionFlags & PMV_EXTSEARCH8) {                  if (MotionFlags & PMV_EXTSEARCH8) {
1284                          int32_t temp_sad = *(Data->iMinSAD); // store current MinSAD                          int32_t temp_sad = *(Data->iMinSAD); // store current MinSAD
# Line 1150  Line 1307 
1307                          }                          }
1308                  }                  }
1309    
1310                  if(pParam->m_quarterpel) {                  if (Data->qpel && MotionFlags & PMV_QUARTERPELREFINE8) {
                         if((!(Data->currentQMV->x & 1)) && (!(Data->currentQMV->y & 1)) &&  
                                 (MotionFlags & PMV_QUARTERPELREFINE8)) {  
1311                          Data->qpel_precision = 1;                          Data->qpel_precision = 1;
1312                          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,
1313                                  pParam->width, pParam->height, OldData->iFcode, 0);                                          pParam->width, pParam->height, Data->iFcode, 1, 0);
1314                          SubpelRefine(Data);                          SubpelRefine(Data);
1315                          }                          }
1316                  }                  }
1317    
1318            if (Data->rrv) {
1319                            Data->currentMV->x = RRV_MV_SCALEDOWN(Data->currentMV->x);
1320                            Data->currentMV->y = RRV_MV_SCALEDOWN(Data->currentMV->y);
1321          }          }
1322    
1323          if(pParam->m_quarterpel) {          if(Data->qpel) {
1324                  pMB->pmvs[block].x = Data->currentQMV->x - Data->predMV.x;                  pMB->pmvs[block].x = Data->currentQMV->x - Data->predMV.x;
1325                  pMB->pmvs[block].y = Data->currentQMV->y - Data->predMV.y;                  pMB->pmvs[block].y = Data->currentQMV->y - Data->predMV.y;
1326                  pMB->qmvs[block] = *(Data->currentQMV);                  pMB->qmvs[block] = *Data->currentQMV;
1327          }          } else {
         else {  
1328                  pMB->pmvs[block].x = Data->currentMV->x - Data->predMV.x;                  pMB->pmvs[block].x = Data->currentMV->x - Data->predMV.x;
1329                  pMB->pmvs[block].y = Data->currentMV->y - Data->predMV.y;                  pMB->pmvs[block].y = Data->currentMV->y - Data->predMV.y;
1330          }          }
1331    
1332          pMB->mvs[block] = *(Data->currentMV);          pMB->mvs[block] = *Data->currentMV;
1333          pMB->sad8[block] =  4 * (*Data->iMinSAD);          pMB->sad8[block] = 4 * *Data->iMinSAD;
1334  }  }
1335    
1336  /* B-frames code starts here */  /* motion estimation for B-frames */
1337    
1338  static __inline VECTOR  static __inline VECTOR
1339  ChoosePred(const MACROBLOCK * const pMB, const uint32_t mode)  ChoosePred(const MACROBLOCK * const pMB, const uint32_t mode)
1340  {  {
1341  /* the stupidiest function ever */  /* the stupidiest function ever */
1342          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];  
1343  }  }
1344    
1345  static void __inline  static void __inline
# Line 1215  Line 1372 
1372                  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);
1373          } else pmv[5].x = pmv[5].y = 0;          } else pmv[5].x = pmv[5].y = 0;
1374    
1375          if ((x != 0)&&(y != 0)) {          if (x != 0 && y != 0) {
1376                  pmv[6] = ChoosePred(pMB-1-iWcount, mode_curr);                  pmv[6] = ChoosePred(pMB-1-iWcount, mode_curr);
1377                  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);
1378          } else pmv[6].x = pmv[6].y = 0;          } else pmv[6].x = pmv[6].y = 0;
   
 // more?  
1379  }  }
1380    
1381    
1382  /* search backward or forward, for b-frames */  /* search backward or forward */
1383  static void  static void
1384  SearchBF(       const uint8_t * const pRef,  SearchBF(       const IMAGE * const pRef,
1385                          const uint8_t * const pRefH,                          const uint8_t * const pRefH,
1386                          const uint8_t * const pRefV,                          const uint8_t * const pRefV,
1387                          const uint8_t * const pRefHV,                          const uint8_t * const pRefHV,
# Line 1242  Line 1397 
1397                          SearchData * const Data)                          SearchData * const Data)
1398  {  {
1399    
1400          const int32_t iEdgedWidth = pParam->edged_width;          int i, iDirection = 255, mask;
   
         int i, iDirection, mask;  
1401          VECTOR pmv[7];          VECTOR pmv[7];
1402          MainSearchFunc *MainSearchPtr;          MainSearchFunc *MainSearchPtr;
1403          *Data->iMinSAD = MV_MAX_ERROR;          *Data->iMinSAD = MV_MAX_ERROR;
1404          Data->iFcode = iFcode;          Data->iFcode = iFcode;
1405          Data->qpel_precision = 0;          Data->qpel_precision = 0;
1406            Data->temp[5] = Data->temp[6] = Data->temp[7] = 256*4096; // reset chroma-sad cache
1407    
1408          Data->Ref = pRef + (x + y * iEdgedWidth) * 16;          Data->Ref = pRef->y + (x + y * Data->iEdgedWidth) * 16;
1409          Data->RefH = pRefH + (x + y * iEdgedWidth) * 16;          Data->RefH = pRefH + (x + y * Data->iEdgedWidth) * 16;
1410          Data->RefV = pRefV + (x + y * iEdgedWidth) * 16;          Data->RefV = pRefV + (x + y * Data->iEdgedWidth) * 16;
1411          Data->RefHV = pRefHV + (x + y * iEdgedWidth) * 16;          Data->RefHV = pRefHV + (x + y * Data->iEdgedWidth) * 16;
1412            Data->RefCU = pRef->u + (x + y * Data->iEdgedWidth/2) * 8;
1413            Data->RefCV = pRef->v + (x + y * Data->iEdgedWidth/2) * 8;
1414    
1415          Data->predMV = *predMV;          Data->predMV = *predMV;
1416    
1417          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,
1418                                  pParam->width, pParam->height, iFcode, pParam->m_quarterpel);                                  pParam->width, pParam->height, iFcode - Data->qpel, 0, 0);
1419    
1420          pmv[0] = Data->predMV;          pmv[0] = Data->predMV;
1421          if (Data->qpel) { pmv[0].x /= 2; pmv[0].y /= 2; }          if (Data->qpel) { pmv[0].x /= 2; pmv[0].y /= 2; }
1422    
1423          PreparePredictionsBF(pmv, x, y, pParam->mb_width, pMB, mode_current);          PreparePredictionsBF(pmv, x, y, pParam->mb_width, pMB, mode_current);
1424    
1425          Data->currentMV->x = Data->currentMV->y = 0;          Data->currentMV->x = Data->currentMV->y = 0;
1426          CheckCandidate = CheckCandidate16no4v;          CheckCandidate = CheckCandidate16no4v;
1427    
1428  // main loop. checking all predictions  // main loop. checking all predictions
1429          for (i = 0; i < 8; i++) {          for (i = 0; i < 7; i++) {
1430                  if (!(mask = make_mask(pmv, i)) ) continue;                  if (!(mask = make_mask(pmv, i)) ) continue;
1431                  CheckCandidate16no4v(pmv[i].x, pmv[i].y, mask, &iDirection, Data);                  CheckCandidate16no4v(pmv[i].x, pmv[i].y, mask, &iDirection, Data);
1432          }          }
1433    
1434          if (MotionFlags & PMV_USESQUARES16)          if (MotionFlags & PMV_USESQUARES16) MainSearchPtr = SquareSearch;
1435                  MainSearchPtr = SquareSearch;          else if (MotionFlags & PMV_ADVANCEDDIAMOND16) MainSearchPtr = AdvDiamondSearch;
         else if (MotionFlags & PMV_ADVANCEDDIAMOND16)  
                 MainSearchPtr = AdvDiamondSearch;  
1436                  else MainSearchPtr = DiamondSearch;                  else MainSearchPtr = DiamondSearch;
1437    
1438          (*MainSearchPtr)(Data->currentMV->x, Data->currentMV->y, Data, 255);          (*MainSearchPtr)(Data->currentMV->x, Data->currentMV->y, Data, iDirection);
1439    
1440          SubpelRefine(Data);          SubpelRefine(Data);
1441    
1442          if (Data->qpel) {          if (Data->qpel && *Data->iMinSAD < *best_sad + 300) {
1443                  Data->currentQMV->x = 2*Data->currentMV->x;                  Data->currentQMV->x = 2*Data->currentMV->x;
1444                  Data->currentQMV->y = 2*Data->currentMV->y;                  Data->currentQMV->y = 2*Data->currentMV->y;
1445                  Data->qpel_precision = 1;                  Data->qpel_precision = 1;
1446                  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,
1447                                          pParam->width, pParam->height, iFcode, 0);                                          pParam->width, pParam->height, iFcode, 1, 0);
1448                  SubpelRefine(Data);                  SubpelRefine(Data);
1449          }          }
1450    
1451  // three bits are needed to code backward mode. four for forward  // three bits are needed to code backward mode. four for forward
1452  // we treat the bits just like they were vector's  
1453          if (mode_current == MODE_FORWARD) *Data->iMinSAD +=  4 * Data->lambda16;          if (mode_current == MODE_FORWARD) *Data->iMinSAD +=  4 * Data->lambda16;
1454          else *Data->iMinSAD +=  3 * Data->lambda16;          else *Data->iMinSAD +=  3 * Data->lambda16;
1455    
# Line 1312  Line 1467 
1467                          pMB->pmvs[0].x = Data->currentMV->x - predMV->x;                          pMB->pmvs[0].x = Data->currentMV->x - predMV->x;
1468                          pMB->pmvs[0].y = Data->currentMV->y - predMV->y;                          pMB->pmvs[0].y = Data->currentMV->y - predMV->y;
1469                  }                  }
1470                  if (mode_current == MODE_FORWARD)                  if (mode_current == MODE_FORWARD) pMB->mvs[0] = *Data->currentMV;
1471                          pMB->mvs[0] = *(Data->currentMV+2) = *Data->currentMV;                  else pMB->b_mvs[0] = *Data->currentMV;
1472                  else          }
                         pMB->b_mvs[0] = *(Data->currentMV+1) = *Data->currentMV; //we store currmv for interpolate search  
1473    
1474            if (mode_current == MODE_FORWARD) *(Data->currentMV+2) = *Data->currentMV;
1475            else *(Data->currentMV+1) = *Data->currentMV; //we store currmv for interpolate search
1476          }          }
1477    
1478    static void
1479    SkipDecisionB(const IMAGE * const pCur,
1480                                    const IMAGE * const f_Ref,
1481                                    const IMAGE * const b_Ref,
1482                                    MACROBLOCK * const pMB,
1483                                    const uint32_t x, const uint32_t y,
1484                                    const SearchData * const Data)
1485    {
1486            int dx = 0, dy = 0, b_dx = 0, b_dy = 0;
1487            int32_t sum;
1488            const int div = 1 + Data->qpel;
1489            int k;
1490            const uint32_t stride = Data->iEdgedWidth/2;
1491    //this is not full chroma compensation, only it's fullpel approximation. should work though
1492    
1493            for (k = 0; k < 4; k++) {
1494                    dy += Data->directmvF[k].y / div;
1495                    dx += Data->directmvF[0].x / div;
1496                    b_dy += Data->directmvB[0].y / div;
1497                    b_dx += Data->directmvB[0].x / div;
1498  }  }
1499    
1500  static int32_t          dy = (dy >> 3) + roundtab_76[dy & 0xf];
1501            dx = (dx >> 3) + roundtab_76[dx & 0xf];
1502            b_dy = (b_dy >> 3) + roundtab_76[b_dy & 0xf];
1503            b_dx = (b_dx >> 3) + roundtab_76[b_dx & 0xf];
1504    
1505            sum = sad8bi(pCur->u + 8 * x + 8 * y * stride,
1506                                            f_Ref->u + (y*8 + dy/2) * stride + x*8 + dx/2,
1507                                            b_Ref->u + (y*8 + b_dy/2) * stride + x*8 + b_dx/2,
1508                                            stride);
1509    
1510            if (sum >= 2 * MAX_CHROMA_SAD_FOR_SKIP * pMB->quant) return; //no skip
1511    
1512            sum += sad8bi(pCur->v + 8*x + 8 * y * stride,
1513                                            f_Ref->v + (y*8 + dy/2) * stride + x*8 + dx/2,
1514                                            b_Ref->v + (y*8 + b_dy/2) * stride + x*8 + b_dx/2,
1515                                            stride);
1516    
1517            if (sum < 2 * MAX_CHROMA_SAD_FOR_SKIP * pMB->quant) pMB->mode = MODE_DIRECT_NONE_MV; //skipped
1518    }
1519    
1520    static __inline uint32_t
1521  SearchDirect(const IMAGE * const f_Ref,  SearchDirect(const IMAGE * const f_Ref,
1522                                  const uint8_t * const f_RefH,                                  const uint8_t * const f_RefH,
1523                                  const uint8_t * const f_RefV,                                  const uint8_t * const f_RefV,
# Line 1342  Line 1538 
1538    
1539  {  {
1540          int32_t skip_sad;          int32_t skip_sad;
1541          int k;          int k = (x + Data->iEdgedWidth*y) * 16;
   
1542          MainSearchFunc *MainSearchPtr;          MainSearchFunc *MainSearchPtr;
1543    
1544          *Data->iMinSAD = 256*4096;          *Data->iMinSAD = 256*4096;
1545            Data->Ref = f_Ref->y + k;
1546            Data->RefH = f_RefH + k;
1547            Data->RefV = f_RefV + k;
1548            Data->RefHV = f_RefHV + k;
1549            Data->bRef = b_Ref->y + k;
1550            Data->bRefH = b_RefH + k;
1551            Data->bRefV = b_RefV + k;
1552            Data->bRefHV = b_RefHV + k;
1553            Data->RefCU = f_Ref->u + (x + (Data->iEdgedWidth/2) * y) * 8;
1554            Data->RefCV = f_Ref->v + (x + (Data->iEdgedWidth/2) * y) * 8;
1555            Data->b_RefCU = b_Ref->u + (x + (Data->iEdgedWidth/2) * y) * 8;
1556            Data->b_RefCV = b_Ref->v + (x + (Data->iEdgedWidth/2) * y) * 8;
1557    
1558            k = Data->qpel ? 4 : 2;
1559            Data->max_dx = k * (pParam->width - x * 16);
1560            Data->max_dy = k * (pParam->height - y * 16);
1561            Data->min_dx = -k * (16 + x * 16);
1562            Data->min_dy = -k * (16 + y * 16);
1563    
1564          Data->Ref = f_Ref->y + (x + Data->iEdgedWidth*y) * 16;          Data->referencemv = Data->qpel ? b_mb->qmvs : b_mb->mvs;
1565          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;  
         Data->qpel_precision = 0; // it's a trick. it's 1 not 0, but we need 0 here  
1566    
1567          for (k = 0; k < 4; k++) {          for (k = 0; k < 4; k++) {
1568                  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 1376  Line 1570 
1570                  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);
1571                  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;
1572    
1573                  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)
1574                          || ( 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) ) {
1575    
1576                          *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
1577                          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"
1578                          pMB->b_mvs[0].x = pMB->b_mvs[0].y = 0;                          pMB->b_mvs[0].x = pMB->b_mvs[0].y = 0;
1579                          return 0;                          return 256*4096;
1580                  }                  }
1581                  if (b_mb->mode != MODE_INTER4V) {                  if (b_mb->mode != MODE_INTER4V) {
1582                          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 1393  Line 1587 
1587                  }                  }
1588          }          }
1589    
1590            CheckCandidate = b_mb->mode == MODE_INTER4V ? CheckCandidateDirect : CheckCandidateDirectno4v;
1591    
1592          if (b_mb->mode == MODE_INTER4V) CheckCandidate = CheckCandidateDirect;          CheckCandidate(0, 0, 255, &k, Data);
         else CheckCandidate = CheckCandidateDirectno4v;  
1593    
1594          (*CheckCandidate)(0, 0, 255, &k, Data);  // initial (fast) skip decision
1595            if (*Data->iMinSAD < pMB->quant * INITIAL_SKIP_THRESH * (2 + Data->chroma?1:0)) {
1596  // skip decision                  //possible skip
1597          if (*Data->iMinSAD < pMB->quant * SKIP_THRESH_B) {                  if (Data->chroma) {
                 //possible skip - checking chroma. everything copied from MC  
                 //this is not full chroma compensation, only it's fullpel approximation. should work though  
                 int sum, dx, dy, b_dx, b_dy;  
   
                 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) {  
1598                          pMB->mode = MODE_DIRECT_NONE_MV;                          pMB->mode = MODE_DIRECT_NONE_MV;
1599                          return *Data->iMinSAD;                          return *Data->iMinSAD; // skip.
1600                    } else {
1601                            SkipDecisionB(pCur, f_Ref, b_Ref, pMB, x, y, Data);
1602                            if (pMB->mode == MODE_DIRECT_NONE_MV) return *Data->iMinSAD; // skip.
1603                  }                  }
1604          }          }
1605    
# Line 1455  Line 1616 
1616    
1617          SubpelRefine(Data);          SubpelRefine(Data);
1618    
         *Data->iMinSAD +=  1 * Data->lambda16; // one bit is needed to code direct mode  
1619          *best_sad = *Data->iMinSAD;          *best_sad = *Data->iMinSAD;
1620    
1621          if (b_mb->mode == MODE_INTER4V)          if (Data->qpel || b_mb->mode == MODE_INTER4V) pMB->mode = MODE_DIRECT;
                 pMB->mode = MODE_DIRECT;  
1622          else pMB->mode = MODE_DIRECT_NO4V; //for faster compensation          else pMB->mode = MODE_DIRECT_NO4V; //for faster compensation
1623    
1624          pMB->pmvs[3] = *Data->currentMV;          pMB->pmvs[3] = *Data->currentMV;
# Line 1491  Line 1650 
1650          return skip_sad;          return skip_sad;
1651  }  }
1652    
1653    static void
1654  static __inline void  SearchInterpolate(const IMAGE * const f_Ref,
 SearchInterpolate(const uint8_t * const f_Ref,  
1655                                  const uint8_t * const f_RefH,                                  const uint8_t * const f_RefH,
1656                                  const uint8_t * const f_RefV,                                  const uint8_t * const f_RefV,
1657                                  const uint8_t * const f_RefHV,                                  const uint8_t * const f_RefHV,
1658                                  const uint8_t * const b_Ref,                                  const IMAGE * const b_Ref,
1659                                  const uint8_t * const b_RefH,                                  const uint8_t * const b_RefH,
1660                                  const uint8_t * const b_RefV,                                  const uint8_t * const b_RefV,
1661                                  const uint8_t * const b_RefHV,                                  const uint8_t * const b_RefHV,
# Line 1515  Line 1673 
1673    
1674  {  {
1675    
         const int32_t iEdgedWidth = pParam->edged_width;  
1676          int iDirection, i, j;          int iDirection, i, j;
1677          SearchData bData;          SearchData bData;
1678    
1679          *(bData.iMinSAD = fData->iMinSAD) = 4096*256;          fData->qpel_precision = 0;
1680          bData.Cur = fData->Cur;          memcpy(&bData, fData, sizeof(SearchData)); //quick copy of common data
1681          fData->iEdgedWidth = bData.iEdgedWidth = iEdgedWidth;          *fData->iMinSAD = 4096*256;
1682          bData.currentMV = fData->currentMV + 1; bData.currentQMV = fData->currentQMV + 1;          bData.currentMV++; bData.currentQMV++;
         bData.lambda16 = fData->lambda16;  
1683          fData->iFcode = bData.bFcode = fcode; fData->bFcode = bData.iFcode = bcode;          fData->iFcode = bData.bFcode = fcode; fData->bFcode = bData.iFcode = bcode;
1684    
1685          bData.bRef = fData->Ref = f_Ref + (x + y * iEdgedWidth) * 16;          i = (x + y * fData->iEdgedWidth) * 16;
1686          bData.bRefH = fData->RefH = f_RefH + (x + y * iEdgedWidth) * 16;          bData.bRef = fData->Ref = f_Ref->y + i;
1687          bData.bRefV = fData->RefV = f_RefV + (x + y * iEdgedWidth) * 16;          bData.bRefH = fData->RefH = f_RefH + i;
1688          bData.bRefHV = fData->RefHV = f_RefHV + (x + y * iEdgedWidth) * 16;          bData.bRefV = fData->RefV = f_RefV + i;
1689          bData.Ref = fData->bRef = b_Ref + (x + y * iEdgedWidth) * 16;          bData.bRefHV = fData->RefHV = f_RefHV + i;
1690          bData.RefH = fData->bRefH = b_RefH + (x + y * iEdgedWidth) * 16;          bData.Ref = fData->bRef = b_Ref->y + i;
1691          bData.RefV = fData->bRefV = b_RefV + (x + y * iEdgedWidth) * 16;          bData.RefH = fData->bRefH = b_RefH + i;
1692          bData.RefHV = fData->bRefHV = b_RefHV + (x + y * iEdgedWidth) * 16;          bData.RefV = fData->bRefV = b_RefV + i;
1693          bData.RefQ = fData->RefQ;          bData.RefHV = fData->bRefHV = b_RefHV + i;
1694          fData->qpel_precision = bData.qpel_precision = 0; bData.qpel = fData->qpel;          bData.b_RefCU = fData->RefCU = f_Ref->u + (x + (fData->iEdgedWidth/2) * y) * 8;
1695          bData.rounding = 0;          bData.b_RefCV = fData->RefCV = f_Ref->v + (x + (fData->iEdgedWidth/2) * y) * 8;
1696            bData.RefCU = fData->b_RefCU = b_Ref->u + (x + (fData->iEdgedWidth/2) * y) * 8;
1697            bData.RefCV = fData->b_RefCV = b_Ref->v + (x + (fData->iEdgedWidth/2) * y) * 8;
1698    
1699    
1700          bData.bpredMV = fData->predMV = *f_predMV;          bData.bpredMV = fData->predMV = *f_predMV;
1701          fData->bpredMV = bData.predMV = *b_predMV;          fData->bpredMV = bData.predMV = *b_predMV;
   
1702          fData->currentMV[0] = fData->currentMV[2];          fData->currentMV[0] = fData->currentMV[2];
1703          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);  
1704          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);
1705            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);
1706    
1707          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;
1708          if (fData->currentMV[0].x < fData->min_dx) fData->currentMV[0].x = fData->min_dx;          if (fData->currentMV[0].x < fData->min_dx) fData->currentMV[0].x = fData->min_dx;
# Line 1557  Line 1716 
1716    
1717          CheckCandidateInt(fData->currentMV[0].x, fData->currentMV[0].y, 255, &iDirection, fData);          CheckCandidateInt(fData->currentMV[0].x, fData->currentMV[0].y, 255, &iDirection, fData);
1718    
1719  //diamond. I wish we could use normal mainsearch functions (square, advdiamond)  //diamond
   
1720          do {          do {
1721                  iDirection = 255;                  iDirection = 255;
1722                  // forward MV moves                  // forward MV moves
# Line 1579  Line 1737 
1737    
1738          } while (!(iDirection));          } while (!(iDirection));
1739    
1740          *fData->iMinSAD +=  2 * fData->lambda16; // two bits are needed to code interpolate mode.  //qpel refinement
   
1741          if (fData->qpel) {          if (fData->qpel) {
1742                    if (*fData->iMinSAD > *best_sad + 500) return;
1743                  CheckCandidate = CheckCandidateInt;                  CheckCandidate = CheckCandidateInt;
1744                  fData->qpel_precision = bData.qpel_precision = 1;                  fData->qpel_precision = bData.qpel_precision = 1;
1745                  get_range(&fData->min_dx, &fData->max_dx, &fData->min_dy, &fData->max_dy, x, y, 16, pParam->width, pParam->height, fcode, 0);                  get_range(&fData->min_dx, &fData->max_dx, &fData->min_dy, &fData->max_dy, x, y, 16, pParam->width, pParam->height, fcode, 1, 0);
1746                  get_range(&bData.min_dx, &bData.max_dx, &bData.min_dy, &bData.max_dy, x, y, 16, pParam->width, pParam->height, bcode, 0);                  get_range(&bData.min_dx, &bData.max_dx, &bData.min_dy, &bData.max_dy, x, y, 16, pParam->width, pParam->height, bcode, 1, 0);
1747                  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;
1748                  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;
1749                  fData->currentQMV[1].x = 2 * fData->currentMV[1].x;                  fData->currentQMV[1].x = 2 * fData->currentMV[1].x;
1750                  fData->currentQMV[1].y = 2 * fData->currentMV[1].y;                  fData->currentQMV[1].y = 2 * fData->currentMV[1].y;
1751                  SubpelRefine(fData);                  SubpelRefine(fData);
1752                    if (*fData->iMinSAD > *best_sad + 300) return;
1753                  fData->currentQMV[2] = fData->currentQMV[0];                  fData->currentQMV[2] = fData->currentQMV[0];
1754                  SubpelRefine(&bData);                  SubpelRefine(&bData);
1755          }          }
1756    
1757            *fData->iMinSAD += (2+3) * fData->lambda16; // two bits are needed to code interpolate mode.
1758    
1759          if (*fData->iMinSAD < *best_sad) {          if (*fData->iMinSAD < *best_sad) {
1760                  *best_sad = *fData->iMinSAD;                  *best_sad = *fData->iMinSAD;
1761                  pMB->mvs[0] = fData->currentMV[0];                  pMB->mvs[0] = fData->currentMV[0];
# Line 1635  Line 1796 
1796                                           const IMAGE * const b_refHV)                                           const IMAGE * const b_refHV)
1797  {  {
1798          uint32_t i, j;          uint32_t i, j;
1799          int32_t best_sad, skip_sad;          int32_t best_sad;
1800            uint32_t skip_sad;
1801          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};  
1802          const MACROBLOCK * const b_mbs = b_reference->mbs;          const MACROBLOCK * const b_mbs = b_reference->mbs;
1803    
1804          VECTOR f_predMV, b_predMV;      /* there is no prediction for direct mode*/          VECTOR f_predMV, b_predMV;      /* there is no prediction for direct mode*/
1805    
1806          const int32_t TRB = time_pp - time_bp;          const int32_t TRB = time_pp - time_bp;
1807          const int32_t TRD = time_pp;          const int32_t TRD = time_pp;
         uint8_t * qimage;  
1808    
1809  // some pre-inintialized data for the rest of the search  // some pre-inintialized data for the rest of the search
1810    
# Line 1652  Line 1812 
1812          int32_t iMinSAD;          int32_t iMinSAD;
1813          VECTOR currentMV[3];          VECTOR currentMV[3];
1814          VECTOR currentQMV[3];          VECTOR currentQMV[3];
1815            int32_t temp[8];
1816            memset(&Data, 0, sizeof(SearchData));
1817          Data.iEdgedWidth = pParam->edged_width;          Data.iEdgedWidth = pParam->edged_width;
1818          Data.currentMV = currentMV; Data.currentQMV = currentQMV;          Data.currentMV = currentMV; Data.currentQMV = currentQMV;
1819          Data.iMinSAD = &iMinSAD;          Data.iMinSAD = &iMinSAD;
1820          Data.lambda16 = lambda_vec16[frame->quant];          Data.lambda16 = lambda_vec16[frame->quant];
1821          Data.qpel = pParam->m_quarterpel;          Data.qpel = pParam->m_quarterpel;
1822          Data.rounding = 0;          Data.rounding = 0;
1823            Data.chroma = frame->motion_flags & PMV_CHROMA8;
1824            Data.temp = temp;
1825    
1826          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;  
   
1827          // note: i==horizontal, j==vertical          // note: i==horizontal, j==vertical
1828          for (j = 0; j < pParam->mb_height; j++) {          for (j = 0; j < pParam->mb_height; j++) {
1829    
# Line 1682  Line 1841 
1841                                  }                                  }
1842    
1843                          Data.Cur = frame->image.y + (j * Data.iEdgedWidth + i) * 16;                          Data.Cur = frame->image.y + (j * Data.iEdgedWidth + i) * 16;
1844                            Data.CurU = frame->image.u + (j * Data.iEdgedWidth/2 + i) * 8;
1845                            Data.CurV = frame->image.v + (j * Data.iEdgedWidth/2 + i) * 8;
1846                          pMB->quant = frame->quant;                          pMB->quant = frame->quant;
1847    
1848  /* direct search comes first, because it (1) checks for SKIP-mode  /* direct search comes first, because it (1) checks for SKIP-mode
# Line 1700  Line 1861 
1861                          if (pMB->mode == MODE_DIRECT_NONE_MV) { n_count++; continue; }                          if (pMB->mode == MODE_DIRECT_NONE_MV) { n_count++; continue; }
1862    
1863                          // forward search                          // forward search
1864                          SearchBF(f_ref->y, f_refH->y, f_refV->y, f_refHV->y,                          SearchBF(f_ref, f_refH->y, f_refV->y, f_refHV->y,
1865                                                  &frame->image, i, j,                                                  &frame->image, i, j,
1866                                                  frame->motion_flags,                                                  frame->motion_flags,
1867                                                  frame->fcode, pParam,                                                  frame->fcode, pParam,
# Line 1708  Line 1869 
1869                                                  MODE_FORWARD, &Data);                                                  MODE_FORWARD, &Data);
1870    
1871                          // backward search                          // backward search
1872                          SearchBF(b_ref->y, b_refH->y, b_refV->y, b_refHV->y,                          SearchBF(b_ref, b_refH->y, b_refV->y, b_refHV->y,
1873                                                  &frame->image, i, j,                                                  &frame->image, i, j,
1874                                                  frame->motion_flags,                                                  frame->motion_flags,
1875                                                  frame->bcode, pParam,                                                  frame->bcode, pParam,
# Line 1716  Line 1877 
1877                                                  MODE_BACKWARD, &Data);                                                  MODE_BACKWARD, &Data);
1878    
1879                          // 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
1880                            SearchInterpolate(f_ref, f_refH->y, f_refV->y, f_refHV->y,
1881                          SearchInterpolate(f_ref->y, f_refH->y, f_refV->y, f_refHV->y,                                                  b_ref, b_refH->y, b_refV->y, b_refHV->y,
                                                 b_ref->y, b_refH->y, b_refV->y, b_refHV->y,  
1882                                                  &frame->image,                                                  &frame->image,
1883                                                  i, j,                                                  i, j,
1884                                                  frame->fcode, frame->bcode,                                                  frame->fcode, frame->bcode,
# Line 1728  Line 1888 
1888                                                  pMB, &best_sad,                                                  pMB, &best_sad,
1889                                                  &Data);                                                  &Data);
1890    
1891    // final skip decision
1892                            if ( (skip_sad < frame->quant * MAX_SAD00_FOR_SKIP * 2)
1893                                            && ((100*best_sad)/(skip_sad+1) > FINAL_SKIP_THRESH) )
1894                                    SkipDecisionB(&frame->image, f_ref, b_ref, pMB, i, j, &Data);
1895    
1896                          switch (pMB->mode) {                          switch (pMB->mode) {
1897                                  case MODE_FORWARD:                                  case MODE_FORWARD:
1898                                          f_count++;                                          f_count++;
1899                                          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];  
1900                                          break;                                          break;
1901                                  case MODE_BACKWARD:                                  case MODE_BACKWARD:
1902                                          b_count++;                                          b_count++;
1903                                          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];  
1904                                          break;                                          break;
1905                                  case MODE_INTERPOLATE:                                  case MODE_INTERPOLATE:
1906                                          i_count++;                                          i_count++;
1907                                          if (pParam->m_quarterpel) {                                          f_predMV = Data.qpel ? pMB->qmvs[0] : pMB->mvs[0];
1908                                                  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];  
                                         }  
1909                                          break;                                          break;
1910                                  case MODE_DIRECT:                                  case MODE_DIRECT:
1911                                  case MODE_DIRECT_NO4V:                                  case MODE_DIRECT_NO4V:
1912                                          d_count++;                                          d_count++;
                                         break;  
1913                                  default:                                  default:
1914                                          break;                                          break;
1915                          }                          }
1916                  }                  }
1917          }          }
         free(qimage);  
1918  }  }
1919    
1920  /* Hinted ME starts here */  static __inline void
   
 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;  
   
         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;  
         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);  
         }  
         if (pParam->m_quarterpel) Data->predMV = get_qpmv2(pMBs, pParam->mb_width, 0, x, y, 0);  
         else Data->predMV = get_pmv2(pMBs, pParam->mb_width, 0, x, y, 0);  
   
         for(i = 0; i < 5; i++) Data->iMinSAD[i] = MV_MAX_ERROR;  
   
         if (pMB->dquant != NO_CHANGE) inter4v = 0;  
   
         if (inter4v || 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) SubpelRefine(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);  
                 Data->qpel_precision = 1;  
                 SubpelRefine(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 sumx, sumy, dx, dy;  
   
                         if(pParam->m_quarterpel) {  
                                 sumx= pMB->qmvs[0].x/2 + pMB->qmvs[1].x/2 + pMB->qmvs[2].x/2 + pMB->qmvs[3].x/2;  
                                 sumy = pMB->qmvs[0].y/2 + pMB->qmvs[1].y/2 + pMB->qmvs[2].y/2 + pMB->qmvs[3].y/2;  
                         } else {  
                                 sumx = pMB->mvs[0].x + pMB->mvs[1].x + pMB->mvs[2].x + pMB->mvs[3].x;  
                                 sumy = pMB->mvs[0].y + pMB->mvs[1].y + pMB->mvs[2].y + pMB->mvs[3].y;  
                         }  
                         dx = (sumx >> 3) + roundtab_76[sumx & 0xf];  
                         dy = (sumy >> 3) + roundtab_76[sumy & 0xf];  
   
                         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->predMV.x;  
                         pMB->pmvs[0].y = Data->currentQMV[0].y - Data->predMV.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);  
 }  
   
 static __inline int  
1921  MEanalyzeMB (   const uint8_t * const pRef,  MEanalyzeMB (   const uint8_t * const pRef,
1922                                  const uint8_t * const pCur,                                  const uint8_t * const pCur,
1923                                  const int x,                                  const int x,
1924                                  const int y,                                  const int y,
1925                                  const MBParam * const pParam,                                  const MBParam * const pParam,
1926                                  const MACROBLOCK * const pMBs,                                  MACROBLOCK * const pMBs,
                                 MACROBLOCK * const pMB,  
1927                                  SearchData * const Data)                                  SearchData * const Data)
1928  {  {
1929    
1930          int i = 255, mask;          int i, mask;
1931          VECTOR pmv[3];          VECTOR pmv[3];
1932          *(Data->iMinSAD) = MV_MAX_ERROR;          MACROBLOCK * pMB = &pMBs[x + y * pParam->mb_width];
1933    
1934            for (i = 0; i < 5; i++) Data->iMinSAD[i] = MV_MAX_ERROR;
1935    
1936          //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
1937          if (x == 1 && y == 1) Data->predMV.x = Data->predMV.y = 0;          if (x == 1 && y == 1) Data->predMV.x = Data->predMV.y = 0;
1938          else          else
1939                  if (x == 1) //left macroblock does not have any vector now                  if (x == 1) //left macroblock does not have any vector now
1940                          Data->predMV = (pMB - pParam->mb_width)->mvs[0]; // top instead of median                          Data->predMV = (pMB - pParam->mb_width)->mvs[0]; // top instead of median
1941                  else if (y == 1) // top macroblock don't have it's vector                  else if (y == 1) // top macroblock doesn't have it's vector
1942                          Data->predMV = (pMB - 1)->mvs[0]; // left instead of median                          Data->predMV = (pMB - 1)->mvs[0]; // left instead of median
1943                          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
1944    
1945          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,
1946                                  pParam->width, pParam->height, Data->iFcode, pParam->m_quarterpel);                                  pParam->width, pParam->height, Data->iFcode - pParam->m_quarterpel, 0, Data->rrv);
1947    
1948          Data->Cur = pCur + (x + y * pParam->edged_width) * 16;          Data->Cur = pCur + (x + y * pParam->edged_width) * 16;
1949          Data->Ref = pRef + (x + y * pParam->edged_width) * 16;          Data->Ref = pRef + (x + y * pParam->edged_width) * 16;
# Line 2015  Line 1954 
1954          pmv[2].y = EVEN(Data->predMV.y);          pmv[2].y = EVEN(Data->predMV.y);
1955          pmv[0].x = pmv[0].y = 0;          pmv[0].x = pmv[0].y = 0;
1956    
1957          (*CheckCandidate)(0, 0, 255, &i, Data);          CheckCandidate32I(0, 0, 255, &i, Data);
1958    
1959  //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;  
         }  
1960    
1961          if (!(mask = make_mask(pmv, 1)))          if (!(mask = make_mask(pmv, 1)))
1962                  (*CheckCandidate)(pmv[1].x, pmv[1].y, mask, &i, Data);                          CheckCandidate32I(pmv[1].x, pmv[1].y, mask, &i, Data);
1963          if (!(mask = make_mask(pmv, 2)))          if (!(mask = make_mask(pmv, 2)))
1964                  (*CheckCandidate)(pmv[2].x, pmv[2].y, mask, &i, Data);                          CheckCandidate32I(pmv[2].x, pmv[2].y, mask, &i, Data);
1965    
1966          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
1967                  DiamondSearch(Data->currentMV->x, Data->currentMV->y, Data, i);                  DiamondSearch(Data->currentMV->x, Data->currentMV->y, Data, i);
1968    
1969          pMB->mvs[0] = pMB->mvs[1] = pMB->mvs[2] = pMB->mvs[3] = Data->currentMV[0];                  for (i = 0; i < 4; i++) {
1970          pMB->mode = MODE_INTER;                          MACROBLOCK * MB = &pMBs[x + (i&1) + (y+(i>>1)) * pParam->mb_width];
1971          return *(Data->iMinSAD);                          MB->mvs[0] = MB->mvs[1] = MB->mvs[2] = MB->mvs[3] = Data->currentMV[i];
1972                            MB->mode = MODE_INTER;
1973                            MB->sad16 = Data->iMinSAD[i+1];
1974                    }
1975            }
1976  }  }
1977    
1978  #define INTRA_THRESH    1350  #define INTRA_BIAS              2500
1979  #define INTER_THRESH    1200  #define INTRA_THRESH    1500
1980    #define INTER_THRESH    1400
1981    
1982  int  int
1983  MEanalysis(     const IMAGE * const pRef,  MEanalysis(     const IMAGE * const pRef,
# Line 2047  Line 1985 
1985                          MBParam * const pParam,                          MBParam * const pParam,
1986                          int maxIntra, //maximum number if non-I frames                          int maxIntra, //maximum number if non-I frames
1987                          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
1988                          int bCount) // number if B frames in a row                          int bCount) // number of B frames in a row
1989  {  {
1990          uint32_t x, y, intra = 0;          uint32_t x, y, intra = 0;
1991          int sSAD = 0;          int sSAD = 0;
# Line 2055  Line 1993 
1993          const IMAGE * const pCurrent = &Current->image;          const IMAGE * const pCurrent = &Current->image;
1994          int IntraThresh = INTRA_THRESH, InterThresh = INTER_THRESH;          int IntraThresh = INTRA_THRESH, InterThresh = INTER_THRESH;
1995    
1996          VECTOR currentMV;          int32_t iMinSAD[5], temp[5];
1997          int32_t iMinSAD;          VECTOR currentMV[5];
1998          SearchData Data;          SearchData Data;
1999          Data.iEdgedWidth = pParam->edged_width;          Data.iEdgedWidth = pParam->edged_width;
2000          Data.currentMV = &currentMV;          Data.currentMV = currentMV;
2001          Data.iMinSAD = &iMinSAD;          Data.iMinSAD = iMinSAD;
2002          Data.iFcode = Current->fcode;          Data.iFcode = Current->fcode;
2003          CheckCandidate = CheckCandidate16no4vI;          Data.rrv = Current->global_flags & XVID_REDUCED;
2004            Data.temp = temp;
2005            CheckCandidate = CheckCandidate32I;
2006    
2007          if (intraCount < 10) // we're right after an I frame          if (intraCount != 0 && intraCount < 10) // we're right after an I frame
2008                  IntraThresh += 4 * (intraCount - 10) * (intraCount - 10);                  IntraThresh += 4 * (intraCount - 10) * (intraCount - 10);
2009          else          else
2010                  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
2011                          IntraThresh -= (IntraThresh * (maxIntra - 5*(maxIntra - intraCount)))/maxIntra;                          IntraThresh -= (IntraThresh * (maxIntra - 5*(maxIntra - intraCount)))/maxIntra;
2012    
   
2013          InterThresh += 400 * (1 - bCount);          InterThresh += 400 * (1 - bCount);
2014          if (InterThresh < 200) InterThresh = 200;          if (InterThresh < 300) InterThresh = 300;
2015    
2016          if (sadInit) (*sadInit) ();          if (sadInit) (*sadInit) ();
2017    
2018          for (y = 1; y < pParam->mb_height-1; y++) {          for (y = 1; y < pParam->mb_height-1; y += 2) {
2019                  for (x = 1; x < pParam->mb_width-1; x++) {                  for (x = 1; x < pParam->mb_width-1; x += 2) {
2020                          int sad, dev;                          int i;
2021                          MACROBLOCK *pMB = &pMBs[x + y * pParam->mb_width];  
2022                            if (bCount == 0) pMBs[x + y * pParam->mb_width].mvs[0] = zeroMV;
2023                          sad = MEanalyzeMB(pRef->y, pCurrent->y, x, y,  
2024                                                                  pParam, pMBs, pMB, &Data);                          MEanalyzeMB(pRef->y, pCurrent->y, x, y, pParam, pMBs, &Data);
2025    
2026                          if (sad > IntraThresh) {                          for (i = 0; i < 4; i++) {
2027                                  dev = dev16(pCurrent->y + (x + y * pParam->edged_width) * 16,                                  int dev;
2028                                    MACROBLOCK *pMB = &pMBs[x+(i&1) + (y+(i>>1)) * pParam->mb_width];
2029                                    if (pMB->sad16 > IntraThresh) {
2030                                            dev = dev16(pCurrent->y + (x + (i&1) + (y + (i>>1)) * pParam->edged_width) * 16,
2031                                                            pParam->edged_width);                                                            pParam->edged_width);
2032                                  if (dev + IntraThresh < sad) {                                          if (dev + IntraThresh < pMB->sad16) {
2033                                          pMB->mode = MODE_INTRA;                                          pMB->mode = MODE_INTRA;
2034                                          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;
2035                                  }                                  }
2036                          }                          }
2037                          sSAD += sad;                                  sSAD += pMB->sad16;
2038                            }
2039                  }                  }
2040          }          }
2041          sSAD /= (pParam->mb_height-2)*(pParam->mb_width-2);          sSAD /= (pParam->mb_height-2)*(pParam->mb_width-2);
2042          if (sSAD > InterThresh ) return 1; //P frame  //      if (sSAD > IntraThresh + INTRA_BIAS) return I_VOP;
2043            if (sSAD > InterThresh ) return P_VOP;
2044          emms();          emms();
2045          return 0; // B frame          return B_VOP;
2046    
2047  }  }
2048    
2049  int  
2050  FindFcode(      const MBParam * const pParam,  static WARPPOINTS
2051                          const FRAMEINFO * const current)  GlobalMotionEst(const MACROBLOCK * const pMBs,
2052                                    const MBParam * const pParam,
2053                                    const FRAMEINFO * const current,
2054                                    const FRAMEINFO * const reference,
2055                                    const IMAGE * const pRefH,
2056                                    const IMAGE * const pRefV,
2057                                    const IMAGE * const pRefHV      )
2058  {  {
         uint32_t x, y;  
         int max = 0, min = 0, i;  
2059    
2060          for (y = 0; y < pParam->mb_height; y++) {          const int deltax=8;             // upper bound for difference between a MV and it's neighbour MVs
2061                  for (x = 0; x < pParam->mb_width; x++) {          const int deltay=8;
2062            const int grad=512;             // lower bound for deviation in MB
2063    
2064                          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;  
2065    
2066                                  if (pMB->mvs[i].x < min) min = pMB->mvs[i].x;          uint32_t mx, my;
2067                                  if (pMB->mvs[i].y < min) min = pMB->mvs[i].y;  
2068                          }          int MBh = pParam->mb_height;
2069                  }          int MBw = pParam->mb_width;
         }  
2070    
2071          min = -min;          int *MBmask= calloc(MBh*MBw,sizeof(int));
2072          max += 1;          double DtimesF[4] = { 0.,0., 0., 0. };
2073          if (min > max) max = min;          double sol[4] = { 0., 0., 0., 0. };
2074          if (pParam->m_quarterpel) max *= 2;          double a,b,c,n,denom;
2075            double meanx,meany;
2076            int num,oldnum;
2077    
2078            if (!MBmask) { fprintf(stderr,"Mem error\n"); return gmc;}
2079    
2080    // filter mask of all blocks
2081    
2082            for (my = 1; my < MBh-1; my++)
2083            for (mx = 1; mx < MBw-1; mx++)
2084            {
2085                    const int mbnum = mx + my * MBw;
2086                    const MACROBLOCK *pMB = &pMBs[mbnum];
2087                    const VECTOR mv = pMB->mvs[0];
2088    
2089                    if (pMB->mode == MODE_INTRA || pMB->mode == MODE_NOT_CODED)
2090                            continue;
2091    
2092          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) )
2093          return i;                  &&   ( (ABS(mv.x -   (pMB+1)->mvs[0].x) < deltax) && (ABS(mv.y -   (pMB+1)->mvs[0].y) < deltay) )
2094                    &&   ( (ABS(mv.x - (pMB-MBw)->mvs[0].x) < deltax) && (ABS(mv.y - (pMB-MBw)->mvs[0].y) < deltay) )
2095                    &&   ( (ABS(mv.x - (pMB+MBw)->mvs[0].x) < deltax) && (ABS(mv.y - (pMB+MBw)->mvs[0].y) < deltay) ) )
2096                            MBmask[mbnum]=1;
2097  }  }
2098    
2099  static void          for (my = 1; my < MBh-1; my++)
2100  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)  
2101  {  {
2102          uint32_t mx, my, a, count = 0;                  const uint8_t *const pCur = current->image.y + 16*my*pParam->edged_width + 16*mx;
2103    
2104          for (my = 1; my < pParam->mb_height-1; my++)                  const int mbnum = mx + my * MBw;
2105                  for (mx = 1; mx < pParam->mb_width-1; mx++) {                  if (!MBmask[mbnum])
2106                          VECTOR mv;                          continue;
2107                          const MACROBLOCK *pMB = &pMBs[mx + my * pParam->mb_width];  
2108                          if (pMB->mode == MODE_INTRA || pMB->mode == MODE_NOT_CODED) continue;                  if (sad16 ( pCur, pCur+1 , pParam->edged_width, 65536) <= grad )
2109                          mv = pMB->mvs[0];                          MBmask[mbnum] = 0;
2110                          a = ABS(mv.x - x) + ABS(mv.y - y);                  if (sad16 ( pCur, pCur+pParam->edged_width, pParam->edged_width, 65536) <= grad )
2111                          if (a < 6) count += 6 - a;                          MBmask[mbnum] = 0;
                 }  
2112    
         if (count > *bestcount) {  
                 *bestcount = count;  
                 *iDirection = dir;  
                 GMC->x = x; GMC->y = y;  
         }  
2113  }  }
2114    
2115            emms();
2116    
2117  static VECTOR          do {            /* until convergence */
 GlobalMotionEst(const MACROBLOCK * const pMBs, const MBParam * const pParam, const uint32_t iFcode)  
 {  
2118    
2119          uint32_t count, bestcount = 0;          a = b = c = n = 0;
2120          int x, y;          DtimesF[0] = DtimesF[1] = DtimesF[2] = DtimesF[3] = 0.;
2121          VECTOR gmc = {0,0};          for (my = 0; my < MBh; my++)
2122          int step, min_x, max_x, min_y, max_y;                  for (mx = 0; mx < MBw; mx++)
2123          uint32_t mx, my;                  {
2124          int iDirection, bDirection;                          const int mbnum = mx + my * MBw;
2125                            const MACROBLOCK *pMB = &pMBs[mbnum];
2126                            const VECTOR mv = pMB->mvs[0];
2127    
2128          min_x = min_y = -32<<iFcode;                          if (!MBmask[mbnum])
2129          max_x = max_y = 32<<iFcode;                                  continue;
2130    
2131  //step1: let's find a rough camera panning                          n++;
2132          for (step = 32; step >= 2; step /= 2) {                          a += 16*mx+8;
2133                  bestcount = 0;                          b += 16*my+8;
2134                  for (y = min_y; y <= max_y; y += step)                          c += (16*mx+8)*(16*mx+8)+(16*my+8)*(16*my+8);
2135                          for (x = min_x ; x <= max_x; x += step) {  
2136                                  count = 0;                          DtimesF[0] += (double)mv.x;
2137                                  //for all macroblocks                          DtimesF[1] += (double)mv.x*(16*mx+8) + (double)mv.y*(16*my+8);
2138                                  for (my = 1; my < pParam->mb_height-1; my++)                          DtimesF[2] += (double)mv.x*(16*my+8) - (double)mv.y*(16*mx+8);
2139                                          for (mx = 1; mx < pParam->mb_width-1; mx++) {                          DtimesF[3] += (double)mv.y;
2140                                                  const MACROBLOCK *pMB = &pMBs[mx + my * pParam->mb_width];                  }
2141                                                  VECTOR mv;  
2142            denom = a*a+b*b-c*n;
2143    
2144    /* Solve the system:     sol = (D'*E*D)^{-1} D'*E*F   */
2145    /* D'*E*F has been calculated in the same loop as matrix */
2146    
2147            sol[0] = -c*DtimesF[0] + a*DtimesF[1] + b*DtimesF[2];
2148            sol[1] =  a*DtimesF[0] - n*DtimesF[1]                + b*DtimesF[3];
2149            sol[2] =  b*DtimesF[0]                - n*DtimesF[2] - a*DtimesF[3];
2150            sol[3] =                 b*DtimesF[1] - a*DtimesF[2] - c*DtimesF[3];
2151    
2152            sol[0] /= denom;
2153            sol[1] /= denom;
2154            sol[2] /= denom;
2155            sol[3] /= denom;
2156    
2157            meanx = meany = 0.;
2158            oldnum = 0;
2159            for (my = 0; my < MBh; my++)
2160                    for (mx = 0; mx < MBw; mx++)
2161                    {
2162                            const int mbnum = mx + my * MBw;
2163                            const MACROBLOCK *pMB = &pMBs[mbnum];
2164                            const VECTOR mv = pMB->mvs[0];
2165    
2166                                                  if (pMB->mode == MODE_INTRA || pMB->mode == MODE_NOT_CODED)                          if (!MBmask[mbnum])
2167                                                          continue;                                                          continue;
2168    
2169                                                  mv = pMB->mvs[0];                          oldnum++;
2170                                                  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 );
2171                                                          count++;                          meany += ABS(( sol[3] - (16*mx+8)*sol[2] + (16*my+8)*sol[1] ) - mv.y );
2172                                          }                                          }
                                 if (count >= bestcount) { bestcount = count; gmc.x = x; gmc.y = y; }  
                         }  
                 min_x = gmc.x - step;  
                 max_x = gmc.x + step;  
                 min_y = gmc.y - step;  
                 max_y = gmc.y + step;  
2173    
2174            if (4*meanx > oldnum)   /* better fit than 0.25 is useless */
2175                    meanx /= oldnum;
2176            else
2177                    meanx = 0.25;
2178    
2179            if (4*meany > oldnum)
2180                    meany /= oldnum;
2181            else
2182                    meany = 0.25;
2183    
2184    /*      fprintf(stderr,"sol = (%8.5f, %8.5f, %8.5f, %8.5f)\n",sol[0],sol[1],sol[2],sol[3]);
2185            fprintf(stderr,"meanx = %8.5f  meany = %8.5f   %d\n",meanx,meany, oldnum);
2186    */
2187            num = 0;
2188            for (my = 0; my < MBh; my++)
2189                    for (mx = 0; mx < MBw; mx++)
2190                    {
2191                            const int mbnum = mx + my * MBw;
2192                            const MACROBLOCK *pMB = &pMBs[mbnum];
2193                            const VECTOR mv = pMB->mvs[0];
2194    
2195                            if (!MBmask[mbnum])
2196                                    continue;
2197    
2198                            if  ( ( ABS(( sol[0] + (16*mx+8)*sol[1] + (16*my+8)*sol[2] ) - mv.x ) > meanx )
2199                               || ( ABS(( sol[3] - (16*mx+8)*sol[2] + (16*my+8)*sol[1] ) - mv.y ) > meany ) )
2200                                    MBmask[mbnum]=0;
2201                            else
2202                                    num++;
2203          }          }
2204    
2205          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  
2206    
2207  // step2: let's refine camera panning using gradiend-descent approach.          if (num < 4)
2208  // TODO: more warping points may be evaluated here (like in interpolate mode search - two vectors in one diamond)          {
2209          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;
2210          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);  
2211    
2212          } while (iDirection);                  gmc.duv[0].x=(int)(sol[0]+0.5);
2213                    gmc.duv[0].y=(int)(sol[3]+0.5);
2214    
2215                    gmc.duv[1].x=(int)(sol[1]*pParam->width+0.5);
2216                    gmc.duv[1].y=(int)(-sol[2]*pParam->width+0.5);
2217    
2218          if (pParam->m_quarterpel) {                  gmc.duv[2].x=0;
2219                  gmc.x *= 2;                  gmc.duv[2].y=0;
                 gmc.y *= 2;     /* we store the halfpel value as pseudo-qpel to make comparison easier */  
2220          }          }
2221    //      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);
2222    
2223            free(MBmask);
2224    
2225          return gmc;          return gmc;
2226  }  }

Legend:
Removed from v.675  
changed lines
  Added in v.819

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