]> git.sesse.net Git - ffmpeg/blob - libavcodec/motion_est.c
Merge commit '7288b345850792430302a8f85a4b29140b770497'
[ffmpeg] / libavcodec / motion_est.c
1 /*
2  * Motion estimation
3  * Copyright (c) 2000,2001 Fabrice Bellard
4  * Copyright (c) 2002-2004 Michael Niedermayer
5  *
6  * new motion estimation (X1/EPZS) by Michael Niedermayer <michaelni@gmx.at>
7  *
8  * This file is part of FFmpeg.
9  *
10  * FFmpeg is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU Lesser General Public
12  * License as published by the Free Software Foundation; either
13  * version 2.1 of the License, or (at your option) any later version.
14  *
15  * FFmpeg is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18  * Lesser General Public License for more details.
19  *
20  * You should have received a copy of the GNU Lesser General Public
21  * License along with FFmpeg; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
23  */
24
25 /**
26  * @file
27  * Motion estimation.
28  */
29
30 #include <stdlib.h>
31 #include <stdio.h>
32 #include <limits.h>
33
34 #include "avcodec.h"
35 #include "mathops.h"
36 #include "mpegutils.h"
37 #include "mpegvideo.h"
38
39 #undef NDEBUG
40 #include <assert.h>
41
42 #define P_LEFT P[1]
43 #define P_TOP P[2]
44 #define P_TOPRIGHT P[3]
45 #define P_MEDIAN P[4]
46 #define P_MV1 P[9]
47
48 static int sad_hpel_motion_search(MpegEncContext * s,
49                                   int *mx_ptr, int *my_ptr, int dmin,
50                                   int src_index, int ref_index,
51                                   int size, int h);
52
53 static inline unsigned update_map_generation(MotionEstContext *c)
54 {
55     c->map_generation+= 1<<(ME_MAP_MV_BITS*2);
56     if(c->map_generation==0){
57         c->map_generation= 1<<(ME_MAP_MV_BITS*2);
58         memset(c->map, 0, sizeof(uint32_t)*ME_MAP_SIZE);
59     }
60     return c->map_generation;
61 }
62
63 /* shape adaptive search stuff */
64 typedef struct Minima{
65     int height;
66     int x, y;
67     int checked;
68 }Minima;
69
70 static int minima_cmp(const void *a, const void *b){
71     const Minima *da = (const Minima *) a;
72     const Minima *db = (const Minima *) b;
73
74     return da->height - db->height;
75 }
76
77 #define FLAG_QPEL   1 //must be 1
78 #define FLAG_CHROMA 2
79 #define FLAG_DIRECT 4
80
81 static inline void init_ref(MotionEstContext *c, uint8_t *src[3], uint8_t *ref[3], uint8_t *ref2[3], int x, int y, int ref_index){
82     const int offset[3]= {
83           y*c->  stride + x,
84         ((y*c->uvstride + x)>>1),
85         ((y*c->uvstride + x)>>1),
86     };
87     int i;
88     for(i=0; i<3; i++){
89         c->src[0][i]= src [i] + offset[i];
90         c->ref[0][i]= ref [i] + offset[i];
91     }
92     if(ref_index){
93         for(i=0; i<3; i++){
94             c->ref[ref_index][i]= ref2[i] + offset[i];
95         }
96     }
97 }
98
99 static int get_flags(MotionEstContext *c, int direct, int chroma){
100     return   ((c->avctx->flags&CODEC_FLAG_QPEL) ? FLAG_QPEL : 0)
101            + (direct ? FLAG_DIRECT : 0)
102            + (chroma ? FLAG_CHROMA : 0);
103 }
104
105 static av_always_inline int cmp_direct_inline(MpegEncContext *s, const int x, const int y, const int subx, const int suby,
106                       const int size, const int h, int ref_index, int src_index,
107                       me_cmp_func cmp_func, me_cmp_func chroma_cmp_func, int qpel){
108     MotionEstContext * const c= &s->me;
109     const int stride= c->stride;
110     const int hx= subx + (x<<(1+qpel));
111     const int hy= suby + (y<<(1+qpel));
112     uint8_t * const * const ref= c->ref[ref_index];
113     uint8_t * const * const src= c->src[src_index];
114     int d;
115     //FIXME check chroma 4mv, (no crashes ...)
116         av_assert2(x >= c->xmin && hx <= c->xmax<<(qpel+1) && y >= c->ymin && hy <= c->ymax<<(qpel+1));
117         if(x >= c->xmin && hx <= c->xmax<<(qpel+1) && y >= c->ymin && hy <= c->ymax<<(qpel+1)){
118             const int time_pp= s->pp_time;
119             const int time_pb= s->pb_time;
120             const int mask= 2*qpel+1;
121             if(s->mv_type==MV_TYPE_8X8){
122                 int i;
123                 for(i=0; i<4; i++){
124                     int fx = c->direct_basis_mv[i][0] + hx;
125                     int fy = c->direct_basis_mv[i][1] + hy;
126                     int bx = hx ? fx - c->co_located_mv[i][0] : c->co_located_mv[i][0]*(time_pb - time_pp)/time_pp + ((i &1)<<(qpel+4));
127                     int by = hy ? fy - c->co_located_mv[i][1] : c->co_located_mv[i][1]*(time_pb - time_pp)/time_pp + ((i>>1)<<(qpel+4));
128                     int fxy= (fx&mask) + ((fy&mask)<<(qpel+1));
129                     int bxy= (bx&mask) + ((by&mask)<<(qpel+1));
130
131                     uint8_t *dst= c->temp + 8*(i&1) + 8*stride*(i>>1);
132                     if(qpel){
133                         c->qpel_put[1][fxy](dst, ref[0] + (fx>>2) + (fy>>2)*stride, stride);
134                         c->qpel_avg[1][bxy](dst, ref[8] + (bx>>2) + (by>>2)*stride, stride);
135                     }else{
136                         c->hpel_put[1][fxy](dst, ref[0] + (fx>>1) + (fy>>1)*stride, stride, 8);
137                         c->hpel_avg[1][bxy](dst, ref[8] + (bx>>1) + (by>>1)*stride, stride, 8);
138                     }
139                 }
140             }else{
141                 int fx = c->direct_basis_mv[0][0] + hx;
142                 int fy = c->direct_basis_mv[0][1] + hy;
143                 int bx = hx ? fx - c->co_located_mv[0][0] : (c->co_located_mv[0][0]*(time_pb - time_pp)/time_pp);
144                 int by = hy ? fy - c->co_located_mv[0][1] : (c->co_located_mv[0][1]*(time_pb - time_pp)/time_pp);
145                 int fxy= (fx&mask) + ((fy&mask)<<(qpel+1));
146                 int bxy= (bx&mask) + ((by&mask)<<(qpel+1));
147
148                 if(qpel){
149                     c->qpel_put[1][fxy](c->temp               , ref[0] + (fx>>2) + (fy>>2)*stride               , stride);
150                     c->qpel_put[1][fxy](c->temp + 8           , ref[0] + (fx>>2) + (fy>>2)*stride + 8           , stride);
151                     c->qpel_put[1][fxy](c->temp     + 8*stride, ref[0] + (fx>>2) + (fy>>2)*stride     + 8*stride, stride);
152                     c->qpel_put[1][fxy](c->temp + 8 + 8*stride, ref[0] + (fx>>2) + (fy>>2)*stride + 8 + 8*stride, stride);
153                     c->qpel_avg[1][bxy](c->temp               , ref[8] + (bx>>2) + (by>>2)*stride               , stride);
154                     c->qpel_avg[1][bxy](c->temp + 8           , ref[8] + (bx>>2) + (by>>2)*stride + 8           , stride);
155                     c->qpel_avg[1][bxy](c->temp     + 8*stride, ref[8] + (bx>>2) + (by>>2)*stride     + 8*stride, stride);
156                     c->qpel_avg[1][bxy](c->temp + 8 + 8*stride, ref[8] + (bx>>2) + (by>>2)*stride + 8 + 8*stride, stride);
157                 }else{
158                     av_assert2((fx>>1) + 16*s->mb_x >= -16);
159                     av_assert2((fy>>1) + 16*s->mb_y >= -16);
160                     av_assert2((fx>>1) + 16*s->mb_x <= s->width);
161                     av_assert2((fy>>1) + 16*s->mb_y <= s->height);
162                     av_assert2((bx>>1) + 16*s->mb_x >= -16);
163                     av_assert2((by>>1) + 16*s->mb_y >= -16);
164                     av_assert2((bx>>1) + 16*s->mb_x <= s->width);
165                     av_assert2((by>>1) + 16*s->mb_y <= s->height);
166
167                     c->hpel_put[0][fxy](c->temp, ref[0] + (fx>>1) + (fy>>1)*stride, stride, 16);
168                     c->hpel_avg[0][bxy](c->temp, ref[8] + (bx>>1) + (by>>1)*stride, stride, 16);
169                 }
170             }
171             d = cmp_func(s, c->temp, src[0], stride, 16);
172         }else
173             d= 256*256*256*32;
174     return d;
175 }
176
177 static av_always_inline int cmp_inline(MpegEncContext *s, const int x, const int y, const int subx, const int suby,
178                       const int size, const int h, int ref_index, int src_index,
179                       me_cmp_func cmp_func, me_cmp_func chroma_cmp_func, int qpel, int chroma){
180     MotionEstContext * const c= &s->me;
181     const int stride= c->stride;
182     const int uvstride= c->uvstride;
183     const int dxy= subx + (suby<<(1+qpel)); //FIXME log2_subpel?
184     const int hx= subx + (x<<(1+qpel));
185     const int hy= suby + (y<<(1+qpel));
186     uint8_t * const * const ref= c->ref[ref_index];
187     uint8_t * const * const src= c->src[src_index];
188     int d;
189     //FIXME check chroma 4mv, (no crashes ...)
190         int uvdxy;              /* no, it might not be used uninitialized */
191         if(dxy){
192             if(qpel){
193                 c->qpel_put[size][dxy](c->temp, ref[0] + x + y*stride, stride); //FIXME prototype (add h)
194                 if(chroma){
195                     int cx= hx/2;
196                     int cy= hy/2;
197                     cx= (cx>>1)|(cx&1);
198                     cy= (cy>>1)|(cy&1);
199                     uvdxy= (cx&1) + 2*(cy&1);
200                     //FIXME x/y wrong, but mpeg4 qpel is sick anyway, we should drop as much of it as possible in favor for h264
201                 }
202             }else{
203                 c->hpel_put[size][dxy](c->temp, ref[0] + x + y*stride, stride, h);
204                 if(chroma)
205                     uvdxy= dxy | (x&1) | (2*(y&1));
206             }
207             d = cmp_func(s, c->temp, src[0], stride, h);
208         }else{
209             d = cmp_func(s, src[0], ref[0] + x + y*stride, stride, h);
210             if(chroma)
211                 uvdxy= (x&1) + 2*(y&1);
212         }
213         if(chroma){
214             uint8_t * const uvtemp= c->temp + 16*stride;
215             c->hpel_put[size+1][uvdxy](uvtemp  , ref[1] + (x>>1) + (y>>1)*uvstride, uvstride, h>>1);
216             c->hpel_put[size+1][uvdxy](uvtemp+8, ref[2] + (x>>1) + (y>>1)*uvstride, uvstride, h>>1);
217             d += chroma_cmp_func(s, uvtemp  , src[1], uvstride, h>>1);
218             d += chroma_cmp_func(s, uvtemp+8, src[2], uvstride, h>>1);
219         }
220     return d;
221 }
222
223 static int cmp_simple(MpegEncContext *s, const int x, const int y,
224                       int ref_index, int src_index,
225                       me_cmp_func cmp_func, me_cmp_func chroma_cmp_func){
226     return cmp_inline(s,x,y,0,0,0,16,ref_index,src_index, cmp_func, chroma_cmp_func, 0, 0);
227 }
228
229 static int cmp_fpel_internal(MpegEncContext *s, const int x, const int y,
230                       const int size, const int h, int ref_index, int src_index,
231                       me_cmp_func cmp_func, me_cmp_func chroma_cmp_func, const int flags){
232     if(flags&FLAG_DIRECT){
233         return cmp_direct_inline(s,x,y,0,0,size,h,ref_index,src_index, cmp_func, chroma_cmp_func, flags&FLAG_QPEL);
234     }else{
235         return cmp_inline(s,x,y,0,0,size,h,ref_index,src_index, cmp_func, chroma_cmp_func, 0, flags&FLAG_CHROMA);
236     }
237 }
238
239 static int cmp_internal(MpegEncContext *s, const int x, const int y, const int subx, const int suby,
240                       const int size, const int h, int ref_index, int src_index,
241                       me_cmp_func cmp_func, me_cmp_func chroma_cmp_func, const int flags){
242     if(flags&FLAG_DIRECT){
243         return cmp_direct_inline(s,x,y,subx,suby,size,h,ref_index,src_index, cmp_func, chroma_cmp_func, flags&FLAG_QPEL);
244     }else{
245         return cmp_inline(s,x,y,subx,suby,size,h,ref_index,src_index, cmp_func, chroma_cmp_func, flags&FLAG_QPEL, flags&FLAG_CHROMA);
246     }
247 }
248
249 /** @brief compares a block (either a full macroblock or a partition thereof)
250     against a proposed motion-compensated prediction of that block
251  */
252 static av_always_inline int cmp(MpegEncContext *s, const int x, const int y, const int subx, const int suby,
253                       const int size, const int h, int ref_index, int src_index,
254                       me_cmp_func cmp_func, me_cmp_func chroma_cmp_func, const int flags){
255     if(av_builtin_constant_p(flags) && av_builtin_constant_p(h) && av_builtin_constant_p(size)
256        && av_builtin_constant_p(subx) && av_builtin_constant_p(suby)
257        && flags==0 && h==16 && size==0 && subx==0 && suby==0){
258         return cmp_simple(s,x,y,ref_index,src_index, cmp_func, chroma_cmp_func);
259     }else if(av_builtin_constant_p(subx) && av_builtin_constant_p(suby)
260        && subx==0 && suby==0){
261         return cmp_fpel_internal(s,x,y,size,h,ref_index,src_index, cmp_func, chroma_cmp_func,flags);
262     }else{
263         return cmp_internal(s,x,y,subx,suby,size,h,ref_index,src_index, cmp_func, chroma_cmp_func, flags);
264     }
265 }
266
267 static int cmp_hpel(MpegEncContext *s, const int x, const int y, const int subx, const int suby,
268                       const int size, const int h, int ref_index, int src_index,
269                       me_cmp_func cmp_func, me_cmp_func chroma_cmp_func, const int flags){
270     if(flags&FLAG_DIRECT){
271         return cmp_direct_inline(s,x,y,subx,suby,size,h,ref_index,src_index, cmp_func, chroma_cmp_func, 0);
272     }else{
273         return cmp_inline(s,x,y,subx,suby,size,h,ref_index,src_index, cmp_func, chroma_cmp_func, 0, flags&FLAG_CHROMA);
274     }
275 }
276
277 static int cmp_qpel(MpegEncContext *s, const int x, const int y, const int subx, const int suby,
278                       const int size, const int h, int ref_index, int src_index,
279                       me_cmp_func cmp_func, me_cmp_func chroma_cmp_func, const int flags){
280     if(flags&FLAG_DIRECT){
281         return cmp_direct_inline(s,x,y,subx,suby,size,h,ref_index,src_index, cmp_func, chroma_cmp_func, 1);
282     }else{
283         return cmp_inline(s,x,y,subx,suby,size,h,ref_index,src_index, cmp_func, chroma_cmp_func, 1, flags&FLAG_CHROMA);
284     }
285 }
286
287 #include "motion_est_template.c"
288
289 static int zero_cmp(MpegEncContext *s, uint8_t *a, uint8_t *b,
290                     int stride, int h)
291 {
292     return 0;
293 }
294
295 static void zero_hpel(uint8_t *a, const uint8_t *b, ptrdiff_t stride, int h){
296 }
297
298 int ff_init_me(MpegEncContext *s){
299     MotionEstContext * const c= &s->me;
300     int cache_size= FFMIN(ME_MAP_SIZE>>ME_MAP_SHIFT, 1<<ME_MAP_SHIFT);
301     int dia_size= FFMAX(FFABS(s->avctx->dia_size)&255, FFABS(s->avctx->pre_dia_size)&255);
302
303     if(FFMIN(s->avctx->dia_size, s->avctx->pre_dia_size) < -FFMIN(ME_MAP_SIZE, MAX_SAB_SIZE)){
304         av_log(s->avctx, AV_LOG_ERROR, "ME_MAP size is too small for SAB diamond\n");
305         return -1;
306     }
307     //special case of snow is needed because snow uses its own iterative ME code
308     if(s->me_method!=ME_ZERO && s->me_method!=ME_EPZS && s->me_method!=ME_X1 && s->avctx->codec_id != AV_CODEC_ID_SNOW){
309         av_log(s->avctx, AV_LOG_ERROR, "me_method is only allowed to be set to zero and epzs; for hex,umh,full and others see dia_size\n");
310         return -1;
311     }
312
313     c->avctx= s->avctx;
314
315     if(cache_size < 2*dia_size && !c->stride){
316         av_log(s->avctx, AV_LOG_INFO, "ME_MAP size may be a little small for the selected diamond size\n");
317     }
318
319     ff_set_cmp(&s->mecc, s->mecc.me_pre_cmp, c->avctx->me_pre_cmp);
320     ff_set_cmp(&s->mecc, s->mecc.me_cmp,     c->avctx->me_cmp);
321     ff_set_cmp(&s->mecc, s->mecc.me_sub_cmp, c->avctx->me_sub_cmp);
322     ff_set_cmp(&s->mecc, s->mecc.mb_cmp,     c->avctx->mb_cmp);
323
324     c->flags    = get_flags(c, 0, c->avctx->me_cmp    &FF_CMP_CHROMA);
325     c->sub_flags= get_flags(c, 0, c->avctx->me_sub_cmp&FF_CMP_CHROMA);
326     c->mb_flags = get_flags(c, 0, c->avctx->mb_cmp    &FF_CMP_CHROMA);
327
328 /*FIXME s->no_rounding b_type*/
329     if(s->flags&CODEC_FLAG_QPEL){
330         c->sub_motion_search= qpel_motion_search;
331         c->qpel_avg = s->qdsp.avg_qpel_pixels_tab;
332         if (s->no_rounding)
333             c->qpel_put = s->qdsp.put_no_rnd_qpel_pixels_tab;
334         else
335             c->qpel_put = s->qdsp.put_qpel_pixels_tab;
336     }else{
337         if(c->avctx->me_sub_cmp&FF_CMP_CHROMA)
338             c->sub_motion_search= hpel_motion_search;
339         else if(   c->avctx->me_sub_cmp == FF_CMP_SAD
340                 && c->avctx->    me_cmp == FF_CMP_SAD
341                 && c->avctx->    mb_cmp == FF_CMP_SAD)
342             c->sub_motion_search= sad_hpel_motion_search; // 2050 vs. 2450 cycles
343         else
344             c->sub_motion_search= hpel_motion_search;
345     }
346     c->hpel_avg = s->hdsp.avg_pixels_tab;
347     if (s->no_rounding)
348         c->hpel_put = s->hdsp.put_no_rnd_pixels_tab;
349     else
350         c->hpel_put = s->hdsp.put_pixels_tab;
351
352     if(s->linesize){
353         c->stride  = s->linesize;
354         c->uvstride= s->uvlinesize;
355     }else{
356         c->stride  = 16*s->mb_width + 32;
357         c->uvstride=  8*s->mb_width + 16;
358     }
359
360     /* 8x8 fullpel search would need a 4x4 chroma compare, which we do
361      * not have yet, and even if we had, the motion estimation code
362      * does not expect it. */
363     if (s->codec_id != AV_CODEC_ID_SNOW) {
364         if ((c->avctx->me_cmp & FF_CMP_CHROMA) /* && !s->mecc.me_cmp[2] */)
365             s->mecc.me_cmp[2] = zero_cmp;
366         if ((c->avctx->me_sub_cmp & FF_CMP_CHROMA) && !s->mecc.me_sub_cmp[2])
367             s->mecc.me_sub_cmp[2] = zero_cmp;
368         c->hpel_put[2][0]= c->hpel_put[2][1]=
369         c->hpel_put[2][2]= c->hpel_put[2][3]= zero_hpel;
370     }
371
372     if(s->codec_id == AV_CODEC_ID_H261){
373         c->sub_motion_search= no_sub_motion_search;
374     }
375
376     return 0;
377 }
378
379 #define CHECK_SAD_HALF_MV(suffix, x, y) \
380 {\
381     d  = s->mecc.pix_abs[size][(x ? 1 : 0) + (y ? 2 : 0)](NULL, pix, ptr + ((x) >> 1), stride, h); \
382     d += (mv_penalty[pen_x + x] + mv_penalty[pen_y + y])*penalty_factor;\
383     COPY3_IF_LT(dminh, d, dx, x, dy, y)\
384 }
385
386 static int sad_hpel_motion_search(MpegEncContext * s,
387                                   int *mx_ptr, int *my_ptr, int dmin,
388                                   int src_index, int ref_index,
389                                   int size, int h)
390 {
391     MotionEstContext * const c= &s->me;
392     const int penalty_factor= c->sub_penalty_factor;
393     int mx, my, dminh;
394     uint8_t *pix, *ptr;
395     int stride= c->stride;
396     LOAD_COMMON
397
398     av_assert2(c->sub_flags == 0);
399
400     if(c->skip){
401         *mx_ptr = 0;
402         *my_ptr = 0;
403         return dmin;
404     }
405
406     pix = c->src[src_index][0];
407
408     mx = *mx_ptr;
409     my = *my_ptr;
410     ptr = c->ref[ref_index][0] + (my * stride) + mx;
411
412     dminh = dmin;
413
414     if (mx > xmin && mx < xmax &&
415         my > ymin && my < ymax) {
416         int dx=0, dy=0;
417         int d, pen_x, pen_y;
418         const int index= (my<<ME_MAP_SHIFT) + mx;
419         const int t= score_map[(index-(1<<ME_MAP_SHIFT))&(ME_MAP_SIZE-1)];
420         const int l= score_map[(index- 1               )&(ME_MAP_SIZE-1)];
421         const int r= score_map[(index+ 1               )&(ME_MAP_SIZE-1)];
422         const int b= score_map[(index+(1<<ME_MAP_SHIFT))&(ME_MAP_SIZE-1)];
423         mx<<=1;
424         my<<=1;
425
426
427         pen_x= pred_x + mx;
428         pen_y= pred_y + my;
429
430         ptr-= stride;
431         if(t<=b){
432             CHECK_SAD_HALF_MV(y2 , 0, -1)
433             if(l<=r){
434                 CHECK_SAD_HALF_MV(xy2, -1, -1)
435                 if(t+r<=b+l){
436                     CHECK_SAD_HALF_MV(xy2, +1, -1)
437                     ptr+= stride;
438                 }else{
439                     ptr+= stride;
440                     CHECK_SAD_HALF_MV(xy2, -1, +1)
441                 }
442                 CHECK_SAD_HALF_MV(x2 , -1,  0)
443             }else{
444                 CHECK_SAD_HALF_MV(xy2, +1, -1)
445                 if(t+l<=b+r){
446                     CHECK_SAD_HALF_MV(xy2, -1, -1)
447                     ptr+= stride;
448                 }else{
449                     ptr+= stride;
450                     CHECK_SAD_HALF_MV(xy2, +1, +1)
451                 }
452                 CHECK_SAD_HALF_MV(x2 , +1,  0)
453             }
454         }else{
455             if(l<=r){
456                 if(t+l<=b+r){
457                     CHECK_SAD_HALF_MV(xy2, -1, -1)
458                     ptr+= stride;
459                 }else{
460                     ptr+= stride;
461                     CHECK_SAD_HALF_MV(xy2, +1, +1)
462                 }
463                 CHECK_SAD_HALF_MV(x2 , -1,  0)
464                 CHECK_SAD_HALF_MV(xy2, -1, +1)
465             }else{
466                 if(t+r<=b+l){
467                     CHECK_SAD_HALF_MV(xy2, +1, -1)
468                     ptr+= stride;
469                 }else{
470                     ptr+= stride;
471                     CHECK_SAD_HALF_MV(xy2, -1, +1)
472                 }
473                 CHECK_SAD_HALF_MV(x2 , +1,  0)
474                 CHECK_SAD_HALF_MV(xy2, +1, +1)
475             }
476             CHECK_SAD_HALF_MV(y2 ,  0, +1)
477         }
478         mx+=dx;
479         my+=dy;
480
481     }else{
482         mx<<=1;
483         my<<=1;
484     }
485
486     *mx_ptr = mx;
487     *my_ptr = my;
488     return dminh;
489 }
490
491 static inline void set_p_mv_tables(MpegEncContext * s, int mx, int my, int mv4)
492 {
493     const int xy= s->mb_x + s->mb_y*s->mb_stride;
494
495     s->p_mv_table[xy][0] = mx;
496     s->p_mv_table[xy][1] = my;
497
498     /* has already been set to the 4 MV if 4MV is done */
499     if(mv4){
500         int mot_xy= s->block_index[0];
501
502         s->current_picture.motion_val[0][mot_xy    ][0] = mx;
503         s->current_picture.motion_val[0][mot_xy    ][1] = my;
504         s->current_picture.motion_val[0][mot_xy + 1][0] = mx;
505         s->current_picture.motion_val[0][mot_xy + 1][1] = my;
506
507         mot_xy += s->b8_stride;
508         s->current_picture.motion_val[0][mot_xy    ][0] = mx;
509         s->current_picture.motion_val[0][mot_xy    ][1] = my;
510         s->current_picture.motion_val[0][mot_xy + 1][0] = mx;
511         s->current_picture.motion_val[0][mot_xy + 1][1] = my;
512     }
513 }
514
515 /**
516  * get fullpel ME search limits.
517  */
518 static inline void get_limits(MpegEncContext *s, int x, int y)
519 {
520     MotionEstContext * const c= &s->me;
521     int range= c->avctx->me_range >> (1 + !!(c->flags&FLAG_QPEL));
522     int max_range = MAX_MV >> (1 + !!(c->flags&FLAG_QPEL));
523 /*
524     if(c->avctx->me_range) c->range= c->avctx->me_range >> 1;
525     else                   c->range= 16;
526 */
527     if (s->unrestricted_mv) {
528         c->xmin = - x - 16;
529         c->ymin = - y - 16;
530         c->xmax = - x + s->width;
531         c->ymax = - y + s->height;
532     } else if (s->out_format == FMT_H261){
533         // Search range of H261 is different from other codec standards
534         c->xmin = (x > 15) ? - 15 : 0;
535         c->ymin = (y > 15) ? - 15 : 0;
536         c->xmax = (x < s->mb_width * 16 - 16) ? 15 : 0;
537         c->ymax = (y < s->mb_height * 16 - 16) ? 15 : 0;
538     } else {
539         c->xmin = - x;
540         c->ymin = - y;
541         c->xmax = - x + s->mb_width *16 - 16;
542         c->ymax = - y + s->mb_height*16 - 16;
543     }
544     if(!range || range > max_range)
545         range = max_range;
546     if(range){
547         c->xmin = FFMAX(c->xmin,-range);
548         c->xmax = FFMIN(c->xmax, range);
549         c->ymin = FFMAX(c->ymin,-range);
550         c->ymax = FFMIN(c->ymax, range);
551     }
552 }
553
554 static inline void init_mv4_ref(MotionEstContext *c){
555     const int stride= c->stride;
556
557     c->ref[1][0] = c->ref[0][0] + 8;
558     c->ref[2][0] = c->ref[0][0] + 8*stride;
559     c->ref[3][0] = c->ref[2][0] + 8;
560     c->src[1][0] = c->src[0][0] + 8;
561     c->src[2][0] = c->src[0][0] + 8*stride;
562     c->src[3][0] = c->src[2][0] + 8;
563 }
564
565 static inline int h263_mv4_search(MpegEncContext *s, int mx, int my, int shift)
566 {
567     MotionEstContext * const c= &s->me;
568     const int size= 1;
569     const int h=8;
570     int block;
571     int P[10][2];
572     int dmin_sum=0, mx4_sum=0, my4_sum=0, i;
573     int same=1;
574     const int stride= c->stride;
575     uint8_t *mv_penalty= c->current_mv_penalty;
576     int saftey_cliping= s->unrestricted_mv && (s->width&15) && (s->height&15);
577
578     init_mv4_ref(c);
579
580     for(block=0; block<4; block++){
581         int mx4, my4;
582         int pred_x4, pred_y4;
583         int dmin4;
584         static const int off[4]= {2, 1, 1, -1};
585         const int mot_stride = s->b8_stride;
586         const int mot_xy = s->block_index[block];
587
588         if(saftey_cliping){
589             c->xmax = - 16*s->mb_x + s->width  - 8*(block &1);
590             c->ymax = - 16*s->mb_y + s->height - 8*(block>>1);
591         }
592
593         P_LEFT[0] = s->current_picture.motion_val[0][mot_xy - 1][0];
594         P_LEFT[1] = s->current_picture.motion_val[0][mot_xy - 1][1];
595
596         if(P_LEFT[0]       > (c->xmax<<shift)) P_LEFT[0]       = (c->xmax<<shift);
597
598         /* special case for first line */
599         if (s->first_slice_line && block<2) {
600             c->pred_x= pred_x4= P_LEFT[0];
601             c->pred_y= pred_y4= P_LEFT[1];
602         } else {
603             P_TOP[0]      = s->current_picture.motion_val[0][mot_xy - mot_stride             ][0];
604             P_TOP[1]      = s->current_picture.motion_val[0][mot_xy - mot_stride             ][1];
605             P_TOPRIGHT[0] = s->current_picture.motion_val[0][mot_xy - mot_stride + off[block]][0];
606             P_TOPRIGHT[1] = s->current_picture.motion_val[0][mot_xy - mot_stride + off[block]][1];
607             if(P_TOP[1]      > (c->ymax<<shift)) P_TOP[1]     = (c->ymax<<shift);
608             if(P_TOPRIGHT[0] < (c->xmin<<shift)) P_TOPRIGHT[0]= (c->xmin<<shift);
609             if(P_TOPRIGHT[0] > (c->xmax<<shift)) P_TOPRIGHT[0]= (c->xmax<<shift);
610             if(P_TOPRIGHT[1] > (c->ymax<<shift)) P_TOPRIGHT[1]= (c->ymax<<shift);
611
612             P_MEDIAN[0]= mid_pred(P_LEFT[0], P_TOP[0], P_TOPRIGHT[0]);
613             P_MEDIAN[1]= mid_pred(P_LEFT[1], P_TOP[1], P_TOPRIGHT[1]);
614
615             c->pred_x= pred_x4 = P_MEDIAN[0];
616             c->pred_y= pred_y4 = P_MEDIAN[1];
617         }
618         P_MV1[0]= mx;
619         P_MV1[1]= my;
620         if(saftey_cliping)
621             for(i=1; i<10; i++){
622                 if (s->first_slice_line && block<2 && i>1 && i<9)
623                     continue;
624                 if (i>4 && i<9)
625                     continue;
626                 if(P[i][0] > (c->xmax<<shift)) P[i][0]= (c->xmax<<shift);
627                 if(P[i][1] > (c->ymax<<shift)) P[i][1]= (c->ymax<<shift);
628             }
629
630         dmin4 = epzs_motion_search4(s, &mx4, &my4, P, block, block, s->p_mv_table, (1<<16)>>shift);
631
632         dmin4= c->sub_motion_search(s, &mx4, &my4, dmin4, block, block, size, h);
633
634         if (s->mecc.me_sub_cmp[0] != s->mecc.mb_cmp[0]) {
635             int dxy;
636             const int offset= ((block&1) + (block>>1)*stride)*8;
637             uint8_t *dest_y = c->scratchpad + offset;
638             if(s->quarter_sample){
639                 uint8_t *ref= c->ref[block][0] + (mx4>>2) + (my4>>2)*stride;
640                 dxy = ((my4 & 3) << 2) | (mx4 & 3);
641
642                 if(s->no_rounding)
643                     s->qdsp.put_no_rnd_qpel_pixels_tab[1][dxy](dest_y, ref, stride);
644                 else
645                     s->qdsp.put_qpel_pixels_tab[1][dxy](dest_y, ref, stride);
646             }else{
647                 uint8_t *ref= c->ref[block][0] + (mx4>>1) + (my4>>1)*stride;
648                 dxy = ((my4 & 1) << 1) | (mx4 & 1);
649
650                 if(s->no_rounding)
651                     s->hdsp.put_no_rnd_pixels_tab[1][dxy](dest_y    , ref    , stride, h);
652                 else
653                     s->hdsp.put_pixels_tab       [1][dxy](dest_y    , ref    , stride, h);
654             }
655             dmin_sum+= (mv_penalty[mx4-pred_x4] + mv_penalty[my4-pred_y4])*c->mb_penalty_factor;
656         }else
657             dmin_sum+= dmin4;
658
659         if(s->quarter_sample){
660             mx4_sum+= mx4/2;
661             my4_sum+= my4/2;
662         }else{
663             mx4_sum+= mx4;
664             my4_sum+= my4;
665         }
666
667         s->current_picture.motion_val[0][s->block_index[block]][0] = mx4;
668         s->current_picture.motion_val[0][s->block_index[block]][1] = my4;
669
670         if(mx4 != mx || my4 != my) same=0;
671     }
672
673     if(same)
674         return INT_MAX;
675
676     if (s->mecc.me_sub_cmp[0] != s->mecc.mb_cmp[0]) {
677         dmin_sum += s->mecc.mb_cmp[0](s,
678                                       s->new_picture.f->data[0] +
679                                       s->mb_x * 16 + s->mb_y * 16 * stride,
680                                       c->scratchpad, stride, 16);
681     }
682
683     if(c->avctx->mb_cmp&FF_CMP_CHROMA){
684         int dxy;
685         int mx, my;
686         int offset;
687
688         mx= ff_h263_round_chroma(mx4_sum);
689         my= ff_h263_round_chroma(my4_sum);
690         dxy = ((my & 1) << 1) | (mx & 1);
691
692         offset= (s->mb_x*8 + (mx>>1)) + (s->mb_y*8 + (my>>1))*s->uvlinesize;
693
694         if(s->no_rounding){
695             s->hdsp.put_no_rnd_pixels_tab[1][dxy](c->scratchpad    , s->last_picture.f->data[1] + offset, s->uvlinesize, 8);
696             s->hdsp.put_no_rnd_pixels_tab[1][dxy](c->scratchpad + 8, s->last_picture.f->data[2] + offset, s->uvlinesize, 8);
697         }else{
698             s->hdsp.put_pixels_tab       [1][dxy](c->scratchpad    , s->last_picture.f->data[1] + offset, s->uvlinesize, 8);
699             s->hdsp.put_pixels_tab       [1][dxy](c->scratchpad + 8, s->last_picture.f->data[2] + offset, s->uvlinesize, 8);
700         }
701
702         dmin_sum += s->mecc.mb_cmp[1](s, s->new_picture.f->data[1] + s->mb_x * 8 + s->mb_y * 8 * s->uvlinesize, c->scratchpad,     s->uvlinesize, 8);
703         dmin_sum += s->mecc.mb_cmp[1](s, s->new_picture.f->data[2] + s->mb_x * 8 + s->mb_y * 8 * s->uvlinesize, c->scratchpad + 8, s->uvlinesize, 8);
704     }
705
706     c->pred_x= mx;
707     c->pred_y= my;
708
709     switch(c->avctx->mb_cmp&0xFF){
710     /*case FF_CMP_SSE:
711         return dmin_sum+ 32*s->qscale*s->qscale;*/
712     case FF_CMP_RD:
713         return dmin_sum;
714     default:
715         return dmin_sum+ 11*c->mb_penalty_factor;
716     }
717 }
718
719 static inline void init_interlaced_ref(MpegEncContext *s, int ref_index){
720     MotionEstContext * const c= &s->me;
721
722     c->ref[1+ref_index][0] = c->ref[0+ref_index][0] + s->linesize;
723     c->src[1][0] = c->src[0][0] + s->linesize;
724     if(c->flags & FLAG_CHROMA){
725         c->ref[1+ref_index][1] = c->ref[0+ref_index][1] + s->uvlinesize;
726         c->ref[1+ref_index][2] = c->ref[0+ref_index][2] + s->uvlinesize;
727         c->src[1][1] = c->src[0][1] + s->uvlinesize;
728         c->src[1][2] = c->src[0][2] + s->uvlinesize;
729     }
730 }
731
732 static int interlaced_search(MpegEncContext *s, int ref_index,
733                              int16_t (*mv_tables[2][2])[2], uint8_t *field_select_tables[2], int mx, int my, int user_field_select)
734 {
735     MotionEstContext * const c= &s->me;
736     const int size=0;
737     const int h=8;
738     int block;
739     int P[10][2];
740     uint8_t * const mv_penalty= c->current_mv_penalty;
741     int same=1;
742     const int stride= 2*s->linesize;
743     int dmin_sum= 0;
744     const int mot_stride= s->mb_stride;
745     const int xy= s->mb_x + s->mb_y*mot_stride;
746
747     c->ymin>>=1;
748     c->ymax>>=1;
749     c->stride<<=1;
750     c->uvstride<<=1;
751     init_interlaced_ref(s, ref_index);
752
753     for(block=0; block<2; block++){
754         int field_select;
755         int best_dmin= INT_MAX;
756         int best_field= -1;
757
758         for(field_select=0; field_select<2; field_select++){
759             int dmin, mx_i, my_i;
760             int16_t (*mv_table)[2]= mv_tables[block][field_select];
761
762             if(user_field_select){
763                 av_assert1(field_select==0 || field_select==1);
764                 av_assert1(field_select_tables[block][xy]==0 || field_select_tables[block][xy]==1);
765                 if(field_select_tables[block][xy] != field_select)
766                     continue;
767             }
768
769             P_LEFT[0] = mv_table[xy - 1][0];
770             P_LEFT[1] = mv_table[xy - 1][1];
771             if(P_LEFT[0]       > (c->xmax<<1)) P_LEFT[0]       = (c->xmax<<1);
772
773             c->pred_x= P_LEFT[0];
774             c->pred_y= P_LEFT[1];
775
776             if(!s->first_slice_line){
777                 P_TOP[0]      = mv_table[xy - mot_stride][0];
778                 P_TOP[1]      = mv_table[xy - mot_stride][1];
779                 P_TOPRIGHT[0] = mv_table[xy - mot_stride + 1][0];
780                 P_TOPRIGHT[1] = mv_table[xy - mot_stride + 1][1];
781                 if(P_TOP[1]      > (c->ymax<<1)) P_TOP[1]     = (c->ymax<<1);
782                 if(P_TOPRIGHT[0] < (c->xmin<<1)) P_TOPRIGHT[0]= (c->xmin<<1);
783                 if(P_TOPRIGHT[0] > (c->xmax<<1)) P_TOPRIGHT[0]= (c->xmax<<1);
784                 if(P_TOPRIGHT[1] > (c->ymax<<1)) P_TOPRIGHT[1]= (c->ymax<<1);
785
786                 P_MEDIAN[0]= mid_pred(P_LEFT[0], P_TOP[0], P_TOPRIGHT[0]);
787                 P_MEDIAN[1]= mid_pred(P_LEFT[1], P_TOP[1], P_TOPRIGHT[1]);
788             }
789             P_MV1[0]= mx; //FIXME not correct if block != field_select
790             P_MV1[1]= my / 2;
791
792             dmin = epzs_motion_search2(s, &mx_i, &my_i, P, block, field_select+ref_index, mv_table, (1<<16)>>1);
793
794             dmin= c->sub_motion_search(s, &mx_i, &my_i, dmin, block, field_select+ref_index, size, h);
795
796             mv_table[xy][0]= mx_i;
797             mv_table[xy][1]= my_i;
798
799             if (s->mecc.me_sub_cmp[0] != s->mecc.mb_cmp[0]) {
800                 int dxy;
801
802                 //FIXME chroma ME
803                 uint8_t *ref= c->ref[field_select+ref_index][0] + (mx_i>>1) + (my_i>>1)*stride;
804                 dxy = ((my_i & 1) << 1) | (mx_i & 1);
805
806                 if(s->no_rounding){
807                     s->hdsp.put_no_rnd_pixels_tab[size][dxy](c->scratchpad, ref    , stride, h);
808                 }else{
809                     s->hdsp.put_pixels_tab       [size][dxy](c->scratchpad, ref    , stride, h);
810                 }
811                 dmin = s->mecc.mb_cmp[size](s, c->src[block][0], c->scratchpad, stride, h);
812                 dmin+= (mv_penalty[mx_i-c->pred_x] + mv_penalty[my_i-c->pred_y] + 1)*c->mb_penalty_factor;
813             }else
814                 dmin+= c->mb_penalty_factor; //field_select bits
815
816             dmin += field_select != block; //slightly prefer same field
817
818             if(dmin < best_dmin){
819                 best_dmin= dmin;
820                 best_field= field_select;
821             }
822         }
823         {
824             int16_t (*mv_table)[2]= mv_tables[block][best_field];
825
826             if(mv_table[xy][0] != mx) same=0; //FIXME check if these checks work and are any good at all
827             if(mv_table[xy][1]&1) same=0;
828             if(mv_table[xy][1]*2 != my) same=0;
829             if(best_field != block) same=0;
830         }
831
832         field_select_tables[block][xy]= best_field;
833         dmin_sum += best_dmin;
834     }
835
836     c->ymin<<=1;
837     c->ymax<<=1;
838     c->stride>>=1;
839     c->uvstride>>=1;
840
841     if(same)
842         return INT_MAX;
843
844     switch(c->avctx->mb_cmp&0xFF){
845     /*case FF_CMP_SSE:
846         return dmin_sum+ 32*s->qscale*s->qscale;*/
847     case FF_CMP_RD:
848         return dmin_sum;
849     default:
850         return dmin_sum+ 11*c->mb_penalty_factor;
851     }
852 }
853
854 static inline int get_penalty_factor(int lambda, int lambda2, int type){
855     switch(type&0xFF){
856     default:
857     case FF_CMP_SAD:
858         return lambda>>FF_LAMBDA_SHIFT;
859     case FF_CMP_DCT:
860         return (3*lambda)>>(FF_LAMBDA_SHIFT+1);
861     case FF_CMP_W53:
862         return (4*lambda)>>(FF_LAMBDA_SHIFT);
863     case FF_CMP_W97:
864         return (2*lambda)>>(FF_LAMBDA_SHIFT);
865     case FF_CMP_SATD:
866     case FF_CMP_DCT264:
867         return (2*lambda)>>FF_LAMBDA_SHIFT;
868     case FF_CMP_RD:
869     case FF_CMP_PSNR:
870     case FF_CMP_SSE:
871     case FF_CMP_NSSE:
872         return lambda2>>FF_LAMBDA_SHIFT;
873     case FF_CMP_BIT:
874         return 1;
875     }
876 }
877
878 void ff_estimate_p_frame_motion(MpegEncContext * s,
879                                 int mb_x, int mb_y)
880 {
881     MotionEstContext * const c= &s->me;
882     uint8_t *pix, *ppix;
883     int sum, mx, my, dmin;
884     int varc;            ///< the variance of the block (sum of squared (p[y][x]-average))
885     int vard;            ///< sum of squared differences with the estimated motion vector
886     int P[10][2];
887     const int shift= 1+s->quarter_sample;
888     int mb_type=0;
889     Picture * const pic= &s->current_picture;
890
891     init_ref(c, s->new_picture.f->data, s->last_picture.f->data, NULL, 16*mb_x, 16*mb_y, 0);
892
893     av_assert0(s->quarter_sample==0 || s->quarter_sample==1);
894     av_assert0(s->linesize == c->stride);
895     av_assert0(s->uvlinesize == c->uvstride);
896
897     c->penalty_factor    = get_penalty_factor(s->lambda, s->lambda2, c->avctx->me_cmp);
898     c->sub_penalty_factor= get_penalty_factor(s->lambda, s->lambda2, c->avctx->me_sub_cmp);
899     c->mb_penalty_factor = get_penalty_factor(s->lambda, s->lambda2, c->avctx->mb_cmp);
900     c->current_mv_penalty= c->mv_penalty[s->f_code] + MAX_MV;
901
902     get_limits(s, 16*mb_x, 16*mb_y);
903     c->skip=0;
904
905     /* intra / predictive decision */
906     pix = c->src[0][0];
907     sum  = s->mpvencdsp.pix_sum(pix, s->linesize);
908     varc = s->mpvencdsp.pix_norm1(pix, s->linesize) -
909            (((unsigned) sum * sum) >> 8) + 500;
910
911     pic->mb_mean[s->mb_stride * mb_y + mb_x] = (sum+128)>>8;
912     pic->mb_var [s->mb_stride * mb_y + mb_x] = (varc+128)>>8;
913     c->mb_var_sum_temp += (varc+128)>>8;
914
915     switch(s->me_method) {
916     case ME_ZERO:
917     default:
918         mx   = 0;
919         my   = 0;
920         dmin = 0;
921         break;
922     case ME_X1:
923     case ME_EPZS:
924        {
925             const int mot_stride = s->b8_stride;
926             const int mot_xy = s->block_index[0];
927
928             P_LEFT[0] = s->current_picture.motion_val[0][mot_xy - 1][0];
929             P_LEFT[1] = s->current_picture.motion_val[0][mot_xy - 1][1];
930
931             if(P_LEFT[0]       > (c->xmax<<shift)) P_LEFT[0]       = (c->xmax<<shift);
932
933             if(!s->first_slice_line) {
934                 P_TOP[0]      = s->current_picture.motion_val[0][mot_xy - mot_stride    ][0];
935                 P_TOP[1]      = s->current_picture.motion_val[0][mot_xy - mot_stride    ][1];
936                 P_TOPRIGHT[0] = s->current_picture.motion_val[0][mot_xy - mot_stride + 2][0];
937                 P_TOPRIGHT[1] = s->current_picture.motion_val[0][mot_xy - mot_stride + 2][1];
938                 if(P_TOP[1]      > (c->ymax<<shift)) P_TOP[1]     = (c->ymax<<shift);
939                 if(P_TOPRIGHT[0] < (c->xmin<<shift)) P_TOPRIGHT[0]= (c->xmin<<shift);
940                 if(P_TOPRIGHT[1] > (c->ymax<<shift)) P_TOPRIGHT[1]= (c->ymax<<shift);
941
942                 P_MEDIAN[0]= mid_pred(P_LEFT[0], P_TOP[0], P_TOPRIGHT[0]);
943                 P_MEDIAN[1]= mid_pred(P_LEFT[1], P_TOP[1], P_TOPRIGHT[1]);
944
945                 if(s->out_format == FMT_H263){
946                     c->pred_x = P_MEDIAN[0];
947                     c->pred_y = P_MEDIAN[1];
948                 }else { /* mpeg1 at least */
949                     c->pred_x= P_LEFT[0];
950                     c->pred_y= P_LEFT[1];
951                 }
952             }else{
953                 c->pred_x= P_LEFT[0];
954                 c->pred_y= P_LEFT[1];
955             }
956
957         }
958         dmin = ff_epzs_motion_search(s, &mx, &my, P, 0, 0, s->p_mv_table, (1<<16)>>shift, 0, 16);
959
960         break;
961     }
962
963     /* At this point (mx,my) are full-pell and the relative displacement */
964     ppix = c->ref[0][0] + (my * s->linesize) + mx;
965
966     vard = s->mecc.sse[0](NULL, pix, ppix, s->linesize, 16);
967
968     pic->mc_mb_var[s->mb_stride * mb_y + mb_x] = (vard+128)>>8;
969     c->mc_mb_var_sum_temp += (vard+128)>>8;
970
971     if(mb_type){
972         int p_score= FFMIN(vard, varc-500+(s->lambda2>>FF_LAMBDA_SHIFT)*100);
973         int i_score= varc-500+(s->lambda2>>FF_LAMBDA_SHIFT)*20;
974         c->scene_change_score+= ff_sqrt(p_score) - ff_sqrt(i_score);
975
976         if(mb_type == CANDIDATE_MB_TYPE_INTER){
977             c->sub_motion_search(s, &mx, &my, dmin, 0, 0, 0, 16);
978             set_p_mv_tables(s, mx, my, 1);
979         }else{
980             mx <<=shift;
981             my <<=shift;
982         }
983         if(mb_type == CANDIDATE_MB_TYPE_INTER4V){
984             h263_mv4_search(s, mx, my, shift);
985
986             set_p_mv_tables(s, mx, my, 0);
987         }
988         if(mb_type == CANDIDATE_MB_TYPE_INTER_I){
989             interlaced_search(s, 0, s->p_field_mv_table, s->p_field_select_table, mx, my, 1);
990         }
991     }else if(c->avctx->mb_decision > FF_MB_DECISION_SIMPLE){
992         int p_score= FFMIN(vard, varc-500+(s->lambda2>>FF_LAMBDA_SHIFT)*100);
993         int i_score= varc-500+(s->lambda2>>FF_LAMBDA_SHIFT)*20;
994         c->scene_change_score+= ff_sqrt(p_score) - ff_sqrt(i_score);
995
996         if (vard*2 + 200*256 > varc)
997             mb_type|= CANDIDATE_MB_TYPE_INTRA;
998         if (varc*2 + 200*256 > vard || s->qscale > 24){
999 //        if (varc*2 + 200*256 + 50*(s->lambda2>>FF_LAMBDA_SHIFT) > vard){
1000             mb_type|= CANDIDATE_MB_TYPE_INTER;
1001             c->sub_motion_search(s, &mx, &my, dmin, 0, 0, 0, 16);
1002             if (s->mpv_flags & FF_MPV_FLAG_MV0)
1003                 if(mx || my)
1004                     mb_type |= CANDIDATE_MB_TYPE_SKIPPED; //FIXME check difference
1005         }else{
1006             mx <<=shift;
1007             my <<=shift;
1008         }
1009         if((s->flags&CODEC_FLAG_4MV)
1010            && !c->skip && varc>50<<8 && vard>10<<8){
1011             if(h263_mv4_search(s, mx, my, shift) < INT_MAX)
1012                 mb_type|=CANDIDATE_MB_TYPE_INTER4V;
1013
1014             set_p_mv_tables(s, mx, my, 0);
1015         }else
1016             set_p_mv_tables(s, mx, my, 1);
1017         if((s->flags&CODEC_FLAG_INTERLACED_ME)
1018            && !c->skip){ //FIXME varc/d checks
1019             if(interlaced_search(s, 0, s->p_field_mv_table, s->p_field_select_table, mx, my, 0) < INT_MAX)
1020                 mb_type |= CANDIDATE_MB_TYPE_INTER_I;
1021         }
1022     }else{
1023         int intra_score, i;
1024         mb_type= CANDIDATE_MB_TYPE_INTER;
1025
1026         dmin= c->sub_motion_search(s, &mx, &my, dmin, 0, 0, 0, 16);
1027         if(c->avctx->me_sub_cmp != c->avctx->mb_cmp && !c->skip)
1028             dmin= get_mb_score(s, mx, my, 0, 0, 0, 16, 1);
1029
1030         if((s->flags&CODEC_FLAG_4MV)
1031            && !c->skip && varc>50<<8 && vard>10<<8){
1032             int dmin4= h263_mv4_search(s, mx, my, shift);
1033             if(dmin4 < dmin){
1034                 mb_type= CANDIDATE_MB_TYPE_INTER4V;
1035                 dmin=dmin4;
1036             }
1037         }
1038         if((s->flags&CODEC_FLAG_INTERLACED_ME)
1039            && !c->skip){ //FIXME varc/d checks
1040             int dmin_i= interlaced_search(s, 0, s->p_field_mv_table, s->p_field_select_table, mx, my, 0);
1041             if(dmin_i < dmin){
1042                 mb_type = CANDIDATE_MB_TYPE_INTER_I;
1043                 dmin= dmin_i;
1044             }
1045         }
1046
1047         set_p_mv_tables(s, mx, my, mb_type!=CANDIDATE_MB_TYPE_INTER4V);
1048
1049         /* get intra luma score */
1050         if((c->avctx->mb_cmp&0xFF)==FF_CMP_SSE){
1051             intra_score= varc - 500;
1052         }else{
1053             unsigned mean = (sum+128)>>8;
1054             mean*= 0x01010101;
1055
1056             for(i=0; i<16; i++){
1057                 *(uint32_t*)(&c->scratchpad[i*s->linesize+ 0]) = mean;
1058                 *(uint32_t*)(&c->scratchpad[i*s->linesize+ 4]) = mean;
1059                 *(uint32_t*)(&c->scratchpad[i*s->linesize+ 8]) = mean;
1060                 *(uint32_t*)(&c->scratchpad[i*s->linesize+12]) = mean;
1061             }
1062
1063             intra_score= s->mecc.mb_cmp[0](s, c->scratchpad, pix, s->linesize, 16);
1064         }
1065         intra_score += c->mb_penalty_factor*16;
1066
1067         if(intra_score < dmin){
1068             mb_type= CANDIDATE_MB_TYPE_INTRA;
1069             s->current_picture.mb_type[mb_y*s->mb_stride + mb_x] = CANDIDATE_MB_TYPE_INTRA; //FIXME cleanup
1070         }else
1071             s->current_picture.mb_type[mb_y*s->mb_stride + mb_x] = 0;
1072
1073         {
1074             int p_score= FFMIN(vard, varc-500+(s->lambda2>>FF_LAMBDA_SHIFT)*100);
1075             int i_score= varc-500+(s->lambda2>>FF_LAMBDA_SHIFT)*20;
1076             c->scene_change_score+= ff_sqrt(p_score) - ff_sqrt(i_score);
1077         }
1078     }
1079
1080     s->mb_type[mb_y*s->mb_stride + mb_x]= mb_type;
1081 }
1082
1083 int ff_pre_estimate_p_frame_motion(MpegEncContext * s,
1084                                     int mb_x, int mb_y)
1085 {
1086     MotionEstContext * const c= &s->me;
1087     int mx, my, dmin;
1088     int P[10][2];
1089     const int shift= 1+s->quarter_sample;
1090     const int xy= mb_x + mb_y*s->mb_stride;
1091     init_ref(c, s->new_picture.f->data, s->last_picture.f->data, NULL, 16*mb_x, 16*mb_y, 0);
1092
1093     av_assert0(s->quarter_sample==0 || s->quarter_sample==1);
1094
1095     c->pre_penalty_factor    = get_penalty_factor(s->lambda, s->lambda2, c->avctx->me_pre_cmp);
1096     c->current_mv_penalty= c->mv_penalty[s->f_code] + MAX_MV;
1097
1098     get_limits(s, 16*mb_x, 16*mb_y);
1099     c->skip=0;
1100
1101     P_LEFT[0]       = s->p_mv_table[xy + 1][0];
1102     P_LEFT[1]       = s->p_mv_table[xy + 1][1];
1103
1104     if(P_LEFT[0]       < (c->xmin<<shift)) P_LEFT[0]       = (c->xmin<<shift);
1105
1106     /* special case for first line */
1107     if (s->first_slice_line) {
1108         c->pred_x= P_LEFT[0];
1109         c->pred_y= P_LEFT[1];
1110         P_TOP[0]= P_TOPRIGHT[0]= P_MEDIAN[0]=
1111         P_TOP[1]= P_TOPRIGHT[1]= P_MEDIAN[1]= 0; //FIXME
1112     } else {
1113         P_TOP[0]      = s->p_mv_table[xy + s->mb_stride    ][0];
1114         P_TOP[1]      = s->p_mv_table[xy + s->mb_stride    ][1];
1115         P_TOPRIGHT[0] = s->p_mv_table[xy + s->mb_stride - 1][0];
1116         P_TOPRIGHT[1] = s->p_mv_table[xy + s->mb_stride - 1][1];
1117         if(P_TOP[1]      < (c->ymin<<shift)) P_TOP[1]     = (c->ymin<<shift);
1118         if(P_TOPRIGHT[0] > (c->xmax<<shift)) P_TOPRIGHT[0]= (c->xmax<<shift);
1119         if(P_TOPRIGHT[1] < (c->ymin<<shift)) P_TOPRIGHT[1]= (c->ymin<<shift);
1120
1121         P_MEDIAN[0]= mid_pred(P_LEFT[0], P_TOP[0], P_TOPRIGHT[0]);
1122         P_MEDIAN[1]= mid_pred(P_LEFT[1], P_TOP[1], P_TOPRIGHT[1]);
1123
1124         c->pred_x = P_MEDIAN[0];
1125         c->pred_y = P_MEDIAN[1];
1126     }
1127
1128     dmin = ff_epzs_motion_search(s, &mx, &my, P, 0, 0, s->p_mv_table, (1<<16)>>shift, 0, 16);
1129
1130     s->p_mv_table[xy][0] = mx<<shift;
1131     s->p_mv_table[xy][1] = my<<shift;
1132
1133     return dmin;
1134 }
1135
1136 static int estimate_motion_b(MpegEncContext *s, int mb_x, int mb_y,
1137                              int16_t (*mv_table)[2], int ref_index, int f_code)
1138 {
1139     MotionEstContext * const c= &s->me;
1140     int mx, my, dmin;
1141     int P[10][2];
1142     const int shift= 1+s->quarter_sample;
1143     const int mot_stride = s->mb_stride;
1144     const int mot_xy = mb_y*mot_stride + mb_x;
1145     uint8_t * const mv_penalty= c->mv_penalty[f_code] + MAX_MV;
1146     int mv_scale;
1147
1148     c->penalty_factor    = get_penalty_factor(s->lambda, s->lambda2, c->avctx->me_cmp);
1149     c->sub_penalty_factor= get_penalty_factor(s->lambda, s->lambda2, c->avctx->me_sub_cmp);
1150     c->mb_penalty_factor = get_penalty_factor(s->lambda, s->lambda2, c->avctx->mb_cmp);
1151     c->current_mv_penalty= mv_penalty;
1152
1153     get_limits(s, 16*mb_x, 16*mb_y);
1154
1155     switch(s->me_method) {
1156     case ME_ZERO:
1157     default:
1158         mx   = 0;
1159         my   = 0;
1160         dmin = 0;
1161         break;
1162     case ME_X1:
1163     case ME_EPZS:
1164         P_LEFT[0] = mv_table[mot_xy - 1][0];
1165         P_LEFT[1] = mv_table[mot_xy - 1][1];
1166
1167         if (P_LEFT[0] > (c->xmax << shift)) P_LEFT[0] = (c->xmax << shift);
1168
1169         /* special case for first line */
1170         if (!s->first_slice_line) {
1171             P_TOP[0]      = mv_table[mot_xy - mot_stride    ][0];
1172             P_TOP[1]      = mv_table[mot_xy - mot_stride    ][1];
1173             P_TOPRIGHT[0] = mv_table[mot_xy - mot_stride + 1][0];
1174             P_TOPRIGHT[1] = mv_table[mot_xy - mot_stride + 1][1];
1175             if (P_TOP[1] > (c->ymax << shift)) P_TOP[1] = (c->ymax << shift);
1176             if (P_TOPRIGHT[0] < (c->xmin << shift)) P_TOPRIGHT[0] = (c->xmin << shift);
1177             if (P_TOPRIGHT[1] > (c->ymax << shift)) P_TOPRIGHT[1] = (c->ymax << shift);
1178
1179             P_MEDIAN[0] = mid_pred(P_LEFT[0], P_TOP[0], P_TOPRIGHT[0]);
1180             P_MEDIAN[1] = mid_pred(P_LEFT[1], P_TOP[1], P_TOPRIGHT[1]);
1181         }
1182         c->pred_x = P_LEFT[0];
1183         c->pred_y = P_LEFT[1];
1184
1185         if(mv_table == s->b_forw_mv_table){
1186             mv_scale= (s->pb_time<<16) / (s->pp_time<<shift);
1187         }else{
1188             mv_scale= ((s->pb_time - s->pp_time)<<16) / (s->pp_time<<shift);
1189         }
1190
1191         dmin = ff_epzs_motion_search(s, &mx, &my, P, 0, ref_index, s->p_mv_table, mv_scale, 0, 16);
1192
1193         break;
1194     }
1195
1196     dmin= c->sub_motion_search(s, &mx, &my, dmin, 0, ref_index, 0, 16);
1197
1198     if(c->avctx->me_sub_cmp != c->avctx->mb_cmp && !c->skip)
1199         dmin= get_mb_score(s, mx, my, 0, ref_index, 0, 16, 1);
1200
1201 //    s->mb_type[mb_y*s->mb_width + mb_x]= mb_type;
1202     mv_table[mot_xy][0]= mx;
1203     mv_table[mot_xy][1]= my;
1204
1205     return dmin;
1206 }
1207
1208 static inline int check_bidir_mv(MpegEncContext * s,
1209                    int motion_fx, int motion_fy,
1210                    int motion_bx, int motion_by,
1211                    int pred_fx, int pred_fy,
1212                    int pred_bx, int pred_by,
1213                    int size, int h)
1214 {
1215     //FIXME optimize?
1216     //FIXME better f_code prediction (max mv & distance)
1217     //FIXME pointers
1218     MotionEstContext * const c= &s->me;
1219     uint8_t * const mv_penalty_f= c->mv_penalty[s->f_code] + MAX_MV; // f_code of the prev frame
1220     uint8_t * const mv_penalty_b= c->mv_penalty[s->b_code] + MAX_MV; // f_code of the prev frame
1221     int stride= c->stride;
1222     uint8_t *dest_y = c->scratchpad;
1223     uint8_t *ptr;
1224     int dxy;
1225     int src_x, src_y;
1226     int fbmin;
1227     uint8_t **src_data= c->src[0];
1228     uint8_t **ref_data= c->ref[0];
1229     uint8_t **ref2_data= c->ref[2];
1230
1231     if(s->quarter_sample){
1232         dxy = ((motion_fy & 3) << 2) | (motion_fx & 3);
1233         src_x = motion_fx >> 2;
1234         src_y = motion_fy >> 2;
1235
1236         ptr = ref_data[0] + (src_y * stride) + src_x;
1237         s->qdsp.put_qpel_pixels_tab[0][dxy](dest_y, ptr, stride);
1238
1239         dxy = ((motion_by & 3) << 2) | (motion_bx & 3);
1240         src_x = motion_bx >> 2;
1241         src_y = motion_by >> 2;
1242
1243         ptr = ref2_data[0] + (src_y * stride) + src_x;
1244         s->qdsp.avg_qpel_pixels_tab[size][dxy](dest_y, ptr, stride);
1245     }else{
1246         dxy = ((motion_fy & 1) << 1) | (motion_fx & 1);
1247         src_x = motion_fx >> 1;
1248         src_y = motion_fy >> 1;
1249
1250         ptr = ref_data[0] + (src_y * stride) + src_x;
1251         s->hdsp.put_pixels_tab[size][dxy](dest_y    , ptr    , stride, h);
1252
1253         dxy = ((motion_by & 1) << 1) | (motion_bx & 1);
1254         src_x = motion_bx >> 1;
1255         src_y = motion_by >> 1;
1256
1257         ptr = ref2_data[0] + (src_y * stride) + src_x;
1258         s->hdsp.avg_pixels_tab[size][dxy](dest_y    , ptr    , stride, h);
1259     }
1260
1261     fbmin = (mv_penalty_f[motion_fx-pred_fx] + mv_penalty_f[motion_fy-pred_fy])*c->mb_penalty_factor
1262            +(mv_penalty_b[motion_bx-pred_bx] + mv_penalty_b[motion_by-pred_by])*c->mb_penalty_factor
1263            + s->mecc.mb_cmp[size](s, src_data[0], dest_y, stride, h); // FIXME new_pic
1264
1265     if(c->avctx->mb_cmp&FF_CMP_CHROMA){
1266     }
1267     //FIXME CHROMA !!!
1268
1269     return fbmin;
1270 }
1271
1272 /* refine the bidir vectors in hq mode and return the score in both lq & hq mode*/
1273 static inline int bidir_refine(MpegEncContext * s, int mb_x, int mb_y)
1274 {
1275     MotionEstContext * const c= &s->me;
1276     const int mot_stride = s->mb_stride;
1277     const int xy = mb_y *mot_stride + mb_x;
1278     int fbmin;
1279     int pred_fx= s->b_bidir_forw_mv_table[xy-1][0];
1280     int pred_fy= s->b_bidir_forw_mv_table[xy-1][1];
1281     int pred_bx= s->b_bidir_back_mv_table[xy-1][0];
1282     int pred_by= s->b_bidir_back_mv_table[xy-1][1];
1283     int motion_fx= s->b_bidir_forw_mv_table[xy][0]= s->b_forw_mv_table[xy][0];
1284     int motion_fy= s->b_bidir_forw_mv_table[xy][1]= s->b_forw_mv_table[xy][1];
1285     int motion_bx= s->b_bidir_back_mv_table[xy][0]= s->b_back_mv_table[xy][0];
1286     int motion_by= s->b_bidir_back_mv_table[xy][1]= s->b_back_mv_table[xy][1];
1287     const int flags= c->sub_flags;
1288     const int qpel= flags&FLAG_QPEL;
1289     const int shift= 1+qpel;
1290     const int xmin= c->xmin<<shift;
1291     const int ymin= c->ymin<<shift;
1292     const int xmax= c->xmax<<shift;
1293     const int ymax= c->ymax<<shift;
1294 #define HASH(fx,fy,bx,by) ((fx)+17*(fy)+63*(bx)+117*(by))
1295 #define HASH8(fx,fy,bx,by) ((uint8_t)HASH(fx,fy,bx,by))
1296     int hashidx= HASH(motion_fx,motion_fy, motion_bx, motion_by);
1297     uint8_t map[256] = { 0 };
1298
1299     map[hashidx&255] = 1;
1300
1301     fbmin= check_bidir_mv(s, motion_fx, motion_fy,
1302                           motion_bx, motion_by,
1303                           pred_fx, pred_fy,
1304                           pred_bx, pred_by,
1305                           0, 16);
1306
1307     if(s->avctx->bidir_refine){
1308         int end;
1309         static const uint8_t limittab[5]={0,8,32,64,80};
1310         const int limit= limittab[s->avctx->bidir_refine];
1311         static const int8_t vect[][4]={
1312 { 0, 0, 0, 1}, { 0, 0, 0,-1}, { 0, 0, 1, 0}, { 0, 0,-1, 0}, { 0, 1, 0, 0}, { 0,-1, 0, 0}, { 1, 0, 0, 0}, {-1, 0, 0, 0},
1313
1314 { 0, 0, 1, 1}, { 0, 0,-1,-1}, { 0, 1, 1, 0}, { 0,-1,-1, 0}, { 1, 1, 0, 0}, {-1,-1, 0, 0}, { 1, 0, 0, 1}, {-1, 0, 0,-1},
1315 { 0, 1, 0, 1}, { 0,-1, 0,-1}, { 1, 0, 1, 0}, {-1, 0,-1, 0},
1316 { 0, 0,-1, 1}, { 0, 0, 1,-1}, { 0,-1, 1, 0}, { 0, 1,-1, 0}, {-1, 1, 0, 0}, { 1,-1, 0, 0}, { 1, 0, 0,-1}, {-1, 0, 0, 1},
1317 { 0,-1, 0, 1}, { 0, 1, 0,-1}, {-1, 0, 1, 0}, { 1, 0,-1, 0},
1318
1319 { 0, 1, 1, 1}, { 0,-1,-1,-1}, { 1, 1, 1, 0}, {-1,-1,-1, 0}, { 1, 1, 0, 1}, {-1,-1, 0,-1}, { 1, 0, 1, 1}, {-1, 0,-1,-1},
1320 { 0,-1, 1, 1}, { 0, 1,-1,-1}, {-1, 1, 1, 0}, { 1,-1,-1, 0}, { 1, 1, 0,-1}, {-1,-1, 0, 1}, { 1, 0,-1, 1}, {-1, 0, 1,-1},
1321 { 0, 1,-1, 1}, { 0,-1, 1,-1}, { 1,-1, 1, 0}, {-1, 1,-1, 0}, {-1, 1, 0, 1}, { 1,-1, 0,-1}, { 1, 0, 1,-1}, {-1, 0,-1, 1},
1322 { 0, 1, 1,-1}, { 0,-1,-1, 1}, { 1, 1,-1, 0}, {-1,-1, 1, 0}, { 1,-1, 0, 1}, {-1, 1, 0,-1}, {-1, 0, 1, 1}, { 1, 0,-1,-1},
1323
1324 { 1, 1, 1, 1}, {-1,-1,-1,-1},
1325 { 1, 1, 1,-1}, {-1,-1,-1, 1}, { 1, 1,-1, 1}, {-1,-1, 1,-1}, { 1,-1, 1, 1}, {-1, 1,-1,-1}, {-1, 1, 1, 1}, { 1,-1,-1,-1},
1326 { 1, 1,-1,-1}, {-1,-1, 1, 1}, { 1,-1,-1, 1}, {-1, 1, 1,-1}, { 1,-1, 1,-1}, {-1, 1,-1, 1},
1327         };
1328         static const uint8_t hash[]={
1329 HASH8( 0, 0, 0, 1), HASH8( 0, 0, 0,-1), HASH8( 0, 0, 1, 0), HASH8( 0, 0,-1, 0), HASH8( 0, 1, 0, 0), HASH8( 0,-1, 0, 0), HASH8( 1, 0, 0, 0), HASH8(-1, 0, 0, 0),
1330
1331 HASH8( 0, 0, 1, 1), HASH8( 0, 0,-1,-1), HASH8( 0, 1, 1, 0), HASH8( 0,-1,-1, 0), HASH8( 1, 1, 0, 0), HASH8(-1,-1, 0, 0), HASH8( 1, 0, 0, 1), HASH8(-1, 0, 0,-1),
1332 HASH8( 0, 1, 0, 1), HASH8( 0,-1, 0,-1), HASH8( 1, 0, 1, 0), HASH8(-1, 0,-1, 0),
1333 HASH8( 0, 0,-1, 1), HASH8( 0, 0, 1,-1), HASH8( 0,-1, 1, 0), HASH8( 0, 1,-1, 0), HASH8(-1, 1, 0, 0), HASH8( 1,-1, 0, 0), HASH8( 1, 0, 0,-1), HASH8(-1, 0, 0, 1),
1334 HASH8( 0,-1, 0, 1), HASH8( 0, 1, 0,-1), HASH8(-1, 0, 1, 0), HASH8( 1, 0,-1, 0),
1335
1336 HASH8( 0, 1, 1, 1), HASH8( 0,-1,-1,-1), HASH8( 1, 1, 1, 0), HASH8(-1,-1,-1, 0), HASH8( 1, 1, 0, 1), HASH8(-1,-1, 0,-1), HASH8( 1, 0, 1, 1), HASH8(-1, 0,-1,-1),
1337 HASH8( 0,-1, 1, 1), HASH8( 0, 1,-1,-1), HASH8(-1, 1, 1, 0), HASH8( 1,-1,-1, 0), HASH8( 1, 1, 0,-1), HASH8(-1,-1, 0, 1), HASH8( 1, 0,-1, 1), HASH8(-1, 0, 1,-1),
1338 HASH8( 0, 1,-1, 1), HASH8( 0,-1, 1,-1), HASH8( 1,-1, 1, 0), HASH8(-1, 1,-1, 0), HASH8(-1, 1, 0, 1), HASH8( 1,-1, 0,-1), HASH8( 1, 0, 1,-1), HASH8(-1, 0,-1, 1),
1339 HASH8( 0, 1, 1,-1), HASH8( 0,-1,-1, 1), HASH8( 1, 1,-1, 0), HASH8(-1,-1, 1, 0), HASH8( 1,-1, 0, 1), HASH8(-1, 1, 0,-1), HASH8(-1, 0, 1, 1), HASH8( 1, 0,-1,-1),
1340
1341 HASH8( 1, 1, 1, 1), HASH8(-1,-1,-1,-1),
1342 HASH8( 1, 1, 1,-1), HASH8(-1,-1,-1, 1), HASH8( 1, 1,-1, 1), HASH8(-1,-1, 1,-1), HASH8( 1,-1, 1, 1), HASH8(-1, 1,-1,-1), HASH8(-1, 1, 1, 1), HASH8( 1,-1,-1,-1),
1343 HASH8( 1, 1,-1,-1), HASH8(-1,-1, 1, 1), HASH8( 1,-1,-1, 1), HASH8(-1, 1, 1,-1), HASH8( 1,-1, 1,-1), HASH8(-1, 1,-1, 1),
1344 };
1345
1346 #define CHECK_BIDIR(fx,fy,bx,by)\
1347     if( !map[(hashidx+HASH(fx,fy,bx,by))&255]\
1348        &&(fx<=0 || motion_fx+fx<=xmax) && (fy<=0 || motion_fy+fy<=ymax) && (bx<=0 || motion_bx+bx<=xmax) && (by<=0 || motion_by+by<=ymax)\
1349        &&(fx>=0 || motion_fx+fx>=xmin) && (fy>=0 || motion_fy+fy>=ymin) && (bx>=0 || motion_bx+bx>=xmin) && (by>=0 || motion_by+by>=ymin)){\
1350         int score;\
1351         map[(hashidx+HASH(fx,fy,bx,by))&255] = 1;\
1352         score= check_bidir_mv(s, motion_fx+fx, motion_fy+fy, motion_bx+bx, motion_by+by, pred_fx, pred_fy, pred_bx, pred_by, 0, 16);\
1353         if(score < fbmin){\
1354             hashidx += HASH(fx,fy,bx,by);\
1355             fbmin= score;\
1356             motion_fx+=fx;\
1357             motion_fy+=fy;\
1358             motion_bx+=bx;\
1359             motion_by+=by;\
1360             end=0;\
1361         }\
1362     }
1363 #define CHECK_BIDIR2(a,b,c,d)\
1364 CHECK_BIDIR(a,b,c,d)\
1365 CHECK_BIDIR(-(a),-(b),-(c),-(d))
1366
1367         do{
1368             int i;
1369             int borderdist=0;
1370             end=1;
1371
1372             CHECK_BIDIR2(0,0,0,1)
1373             CHECK_BIDIR2(0,0,1,0)
1374             CHECK_BIDIR2(0,1,0,0)
1375             CHECK_BIDIR2(1,0,0,0)
1376
1377             for(i=8; i<limit; i++){
1378                 int fx= motion_fx+vect[i][0];
1379                 int fy= motion_fy+vect[i][1];
1380                 int bx= motion_bx+vect[i][2];
1381                 int by= motion_by+vect[i][3];
1382                 if(borderdist<=0){
1383                     int a= (xmax - FFMAX(fx,bx))|(FFMIN(fx,bx) - xmin);
1384                     int b= (ymax - FFMAX(fy,by))|(FFMIN(fy,by) - ymin);
1385                     if((a|b) < 0)
1386                         map[(hashidx+hash[i])&255] = 1;
1387                 }
1388                 if(!map[(hashidx+hash[i])&255]){
1389                     int score;
1390                     map[(hashidx+hash[i])&255] = 1;
1391                     score= check_bidir_mv(s, fx, fy, bx, by, pred_fx, pred_fy, pred_bx, pred_by, 0, 16);
1392                     if(score < fbmin){
1393                         hashidx += hash[i];
1394                         fbmin= score;
1395                         motion_fx=fx;
1396                         motion_fy=fy;
1397                         motion_bx=bx;
1398                         motion_by=by;
1399                         end=0;
1400                         borderdist--;
1401                         if(borderdist<=0){
1402                             int a= FFMIN(xmax - FFMAX(fx,bx), FFMIN(fx,bx) - xmin);
1403                             int b= FFMIN(ymax - FFMAX(fy,by), FFMIN(fy,by) - ymin);
1404                             borderdist= FFMIN(a,b);
1405                         }
1406                     }
1407                 }
1408             }
1409         }while(!end);
1410     }
1411
1412     s->b_bidir_forw_mv_table[xy][0]= motion_fx;
1413     s->b_bidir_forw_mv_table[xy][1]= motion_fy;
1414     s->b_bidir_back_mv_table[xy][0]= motion_bx;
1415     s->b_bidir_back_mv_table[xy][1]= motion_by;
1416
1417     return fbmin;
1418 }
1419
1420 static inline int direct_search(MpegEncContext * s, int mb_x, int mb_y)
1421 {
1422     MotionEstContext * const c= &s->me;
1423     int P[10][2];
1424     const int mot_stride = s->mb_stride;
1425     const int mot_xy = mb_y*mot_stride + mb_x;
1426     const int shift= 1+s->quarter_sample;
1427     int dmin, i;
1428     const int time_pp= s->pp_time;
1429     const int time_pb= s->pb_time;
1430     int mx, my, xmin, xmax, ymin, ymax;
1431     int16_t (*mv_table)[2]= s->b_direct_mv_table;
1432
1433     c->current_mv_penalty= c->mv_penalty[1] + MAX_MV;
1434     ymin= xmin=(-32)>>shift;
1435     ymax= xmax=   31>>shift;
1436
1437     if (IS_8X8(s->next_picture.mb_type[mot_xy])) {
1438         s->mv_type= MV_TYPE_8X8;
1439     }else{
1440         s->mv_type= MV_TYPE_16X16;
1441     }
1442
1443     for(i=0; i<4; i++){
1444         int index= s->block_index[i];
1445         int min, max;
1446
1447         c->co_located_mv[i][0] = s->next_picture.motion_val[0][index][0];
1448         c->co_located_mv[i][1] = s->next_picture.motion_val[0][index][1];
1449         c->direct_basis_mv[i][0]= c->co_located_mv[i][0]*time_pb/time_pp + ((i& 1)<<(shift+3));
1450         c->direct_basis_mv[i][1]= c->co_located_mv[i][1]*time_pb/time_pp + ((i>>1)<<(shift+3));
1451 //        c->direct_basis_mv[1][i][0]= c->co_located_mv[i][0]*(time_pb - time_pp)/time_pp + ((i &1)<<(shift+3);
1452 //        c->direct_basis_mv[1][i][1]= c->co_located_mv[i][1]*(time_pb - time_pp)/time_pp + ((i>>1)<<(shift+3);
1453
1454         max= FFMAX(c->direct_basis_mv[i][0], c->direct_basis_mv[i][0] - c->co_located_mv[i][0])>>shift;
1455         min= FFMIN(c->direct_basis_mv[i][0], c->direct_basis_mv[i][0] - c->co_located_mv[i][0])>>shift;
1456         max+= 16*mb_x + 1; // +-1 is for the simpler rounding
1457         min+= 16*mb_x - 1;
1458         xmax= FFMIN(xmax, s->width - max);
1459         xmin= FFMAX(xmin, - 16     - min);
1460
1461         max= FFMAX(c->direct_basis_mv[i][1], c->direct_basis_mv[i][1] - c->co_located_mv[i][1])>>shift;
1462         min= FFMIN(c->direct_basis_mv[i][1], c->direct_basis_mv[i][1] - c->co_located_mv[i][1])>>shift;
1463         max+= 16*mb_y + 1; // +-1 is for the simpler rounding
1464         min+= 16*mb_y - 1;
1465         ymax= FFMIN(ymax, s->height - max);
1466         ymin= FFMAX(ymin, - 16      - min);
1467
1468         if(s->mv_type == MV_TYPE_16X16) break;
1469     }
1470
1471     av_assert2(xmax <= 15 && ymax <= 15 && xmin >= -16 && ymin >= -16);
1472
1473     if(xmax < 0 || xmin >0 || ymax < 0 || ymin > 0){
1474         s->b_direct_mv_table[mot_xy][0]= 0;
1475         s->b_direct_mv_table[mot_xy][1]= 0;
1476
1477         return 256*256*256*64;
1478     }
1479
1480     c->xmin= xmin;
1481     c->ymin= ymin;
1482     c->xmax= xmax;
1483     c->ymax= ymax;
1484     c->flags     |= FLAG_DIRECT;
1485     c->sub_flags |= FLAG_DIRECT;
1486     c->pred_x=0;
1487     c->pred_y=0;
1488
1489     P_LEFT[0]        = av_clip(mv_table[mot_xy - 1][0], xmin<<shift, xmax<<shift);
1490     P_LEFT[1]        = av_clip(mv_table[mot_xy - 1][1], ymin<<shift, ymax<<shift);
1491
1492     /* special case for first line */
1493     if (!s->first_slice_line) { //FIXME maybe allow this over thread boundary as it is clipped
1494         P_TOP[0]      = av_clip(mv_table[mot_xy - mot_stride             ][0], xmin<<shift, xmax<<shift);
1495         P_TOP[1]      = av_clip(mv_table[mot_xy - mot_stride             ][1], ymin<<shift, ymax<<shift);
1496         P_TOPRIGHT[0] = av_clip(mv_table[mot_xy - mot_stride + 1         ][0], xmin<<shift, xmax<<shift);
1497         P_TOPRIGHT[1] = av_clip(mv_table[mot_xy - mot_stride + 1         ][1], ymin<<shift, ymax<<shift);
1498
1499         P_MEDIAN[0]= mid_pred(P_LEFT[0], P_TOP[0], P_TOPRIGHT[0]);
1500         P_MEDIAN[1]= mid_pred(P_LEFT[1], P_TOP[1], P_TOPRIGHT[1]);
1501     }
1502
1503     dmin = ff_epzs_motion_search(s, &mx, &my, P, 0, 0, mv_table, 1<<(16-shift), 0, 16);
1504     if(c->sub_flags&FLAG_QPEL)
1505         dmin = qpel_motion_search(s, &mx, &my, dmin, 0, 0, 0, 16);
1506     else
1507         dmin = hpel_motion_search(s, &mx, &my, dmin, 0, 0, 0, 16);
1508
1509     if(c->avctx->me_sub_cmp != c->avctx->mb_cmp && !c->skip)
1510         dmin= get_mb_score(s, mx, my, 0, 0, 0, 16, 1);
1511
1512     get_limits(s, 16*mb_x, 16*mb_y); //restore c->?min/max, maybe not needed
1513
1514     mv_table[mot_xy][0]= mx;
1515     mv_table[mot_xy][1]= my;
1516     c->flags     &= ~FLAG_DIRECT;
1517     c->sub_flags &= ~FLAG_DIRECT;
1518
1519     return dmin;
1520 }
1521
1522 void ff_estimate_b_frame_motion(MpegEncContext * s,
1523                              int mb_x, int mb_y)
1524 {
1525     MotionEstContext * const c= &s->me;
1526     const int penalty_factor= c->mb_penalty_factor;
1527     int fmin, bmin, dmin, fbmin, bimin, fimin;
1528     int type=0;
1529     const int xy = mb_y*s->mb_stride + mb_x;
1530     init_ref(c, s->new_picture.f->data, s->last_picture.f->data,
1531              s->next_picture.f->data, 16 * mb_x, 16 * mb_y, 2);
1532
1533     get_limits(s, 16*mb_x, 16*mb_y);
1534
1535     c->skip=0;
1536
1537     if (s->codec_id == AV_CODEC_ID_MPEG4 && s->next_picture.mbskip_table[xy]) {
1538         int score= direct_search(s, mb_x, mb_y); //FIXME just check 0,0
1539
1540         score= ((unsigned)(score*score + 128*256))>>16;
1541         c->mc_mb_var_sum_temp += score;
1542         s->current_picture.mc_mb_var[mb_y*s->mb_stride + mb_x] = score; //FIXME use SSE
1543         s->mb_type[mb_y*s->mb_stride + mb_x]= CANDIDATE_MB_TYPE_DIRECT0;
1544
1545         return;
1546     }
1547
1548     if (s->codec_id == AV_CODEC_ID_MPEG4)
1549         dmin= direct_search(s, mb_x, mb_y);
1550     else
1551         dmin= INT_MAX;
1552 //FIXME penalty stuff for non mpeg4
1553     c->skip=0;
1554     fmin = estimate_motion_b(s, mb_x, mb_y, s->b_forw_mv_table, 0, s->f_code) +
1555            3 * penalty_factor;
1556
1557     c->skip=0;
1558     bmin = estimate_motion_b(s, mb_x, mb_y, s->b_back_mv_table, 2, s->b_code) +
1559            2 * penalty_factor;
1560     av_dlog(s, " %d %d ", s->b_forw_mv_table[xy][0], s->b_forw_mv_table[xy][1]);
1561
1562     c->skip=0;
1563     fbmin= bidir_refine(s, mb_x, mb_y) + penalty_factor;
1564     av_dlog(s, "%d %d %d %d\n", dmin, fmin, bmin, fbmin);
1565
1566     if(s->flags & CODEC_FLAG_INTERLACED_ME){
1567 //FIXME mb type penalty
1568         c->skip=0;
1569         c->current_mv_penalty= c->mv_penalty[s->f_code] + MAX_MV;
1570         fimin= interlaced_search(s, 0,
1571                                  s->b_field_mv_table[0], s->b_field_select_table[0],
1572                                  s->b_forw_mv_table[xy][0], s->b_forw_mv_table[xy][1], 0);
1573         c->current_mv_penalty= c->mv_penalty[s->b_code] + MAX_MV;
1574         bimin= interlaced_search(s, 2,
1575                                  s->b_field_mv_table[1], s->b_field_select_table[1],
1576                                  s->b_back_mv_table[xy][0], s->b_back_mv_table[xy][1], 0);
1577     }else
1578         fimin= bimin= INT_MAX;
1579
1580     {
1581         int score= fmin;
1582         type = CANDIDATE_MB_TYPE_FORWARD;
1583
1584         if (dmin <= score){
1585             score = dmin;
1586             type = CANDIDATE_MB_TYPE_DIRECT;
1587         }
1588         if(bmin<score){
1589             score=bmin;
1590             type= CANDIDATE_MB_TYPE_BACKWARD;
1591         }
1592         if(fbmin<score){
1593             score=fbmin;
1594             type= CANDIDATE_MB_TYPE_BIDIR;
1595         }
1596         if(fimin<score){
1597             score=fimin;
1598             type= CANDIDATE_MB_TYPE_FORWARD_I;
1599         }
1600         if(bimin<score){
1601             score=bimin;
1602             type= CANDIDATE_MB_TYPE_BACKWARD_I;
1603         }
1604
1605         score= ((unsigned)(score*score + 128*256))>>16;
1606         c->mc_mb_var_sum_temp += score;
1607         s->current_picture.mc_mb_var[mb_y*s->mb_stride + mb_x] = score; //FIXME use SSE
1608     }
1609
1610     if(c->avctx->mb_decision > FF_MB_DECISION_SIMPLE){
1611         type= CANDIDATE_MB_TYPE_FORWARD | CANDIDATE_MB_TYPE_BACKWARD | CANDIDATE_MB_TYPE_BIDIR | CANDIDATE_MB_TYPE_DIRECT;
1612         if(fimin < INT_MAX)
1613             type |= CANDIDATE_MB_TYPE_FORWARD_I;
1614         if(bimin < INT_MAX)
1615             type |= CANDIDATE_MB_TYPE_BACKWARD_I;
1616         if(fimin < INT_MAX && bimin < INT_MAX){
1617             type |= CANDIDATE_MB_TYPE_BIDIR_I;
1618         }
1619          //FIXME something smarter
1620         if(dmin>256*256*16) type&= ~CANDIDATE_MB_TYPE_DIRECT; //do not try direct mode if it is invalid for this MB
1621         if (s->codec_id == AV_CODEC_ID_MPEG4 && type&CANDIDATE_MB_TYPE_DIRECT &&
1622             s->mpv_flags & FF_MPV_FLAG_MV0 && *(uint32_t*)s->b_direct_mv_table[xy])
1623             type |= CANDIDATE_MB_TYPE_DIRECT0;
1624     }
1625
1626     s->mb_type[mb_y*s->mb_stride + mb_x]= type;
1627 }
1628
1629 /* find best f_code for ME which do unlimited searches */
1630 int ff_get_best_fcode(MpegEncContext * s, int16_t (*mv_table)[2], int type)
1631 {
1632     if(s->me_method>=ME_EPZS){
1633         int score[8];
1634         int i, y, range= s->avctx->me_range ? s->avctx->me_range : (INT_MAX/2);
1635         uint8_t * fcode_tab= s->fcode_tab;
1636         int best_fcode=-1;
1637         int best_score=-10000000;
1638
1639         if(s->msmpeg4_version)
1640             range= FFMIN(range, 16);
1641         else if(s->codec_id == AV_CODEC_ID_MPEG2VIDEO && s->avctx->strict_std_compliance >= FF_COMPLIANCE_NORMAL)
1642             range= FFMIN(range, 256);
1643
1644         for(i=0; i<8; i++) score[i]= s->mb_num*(8-i);
1645
1646         for(y=0; y<s->mb_height; y++){
1647             int x;
1648             int xy= y*s->mb_stride;
1649             for(x=0; x<s->mb_width; x++){
1650                 if(s->mb_type[xy] & type){
1651                     int mx= mv_table[xy][0];
1652                     int my= mv_table[xy][1];
1653                     int fcode= FFMAX(fcode_tab[mx + MAX_MV],
1654                                      fcode_tab[my + MAX_MV]);
1655                     int j;
1656
1657                         if(mx >= range || mx < -range ||
1658                            my >= range || my < -range)
1659                             continue;
1660
1661                     for(j=0; j<fcode && j<8; j++){
1662                         if(s->pict_type==AV_PICTURE_TYPE_B || s->current_picture.mc_mb_var[xy] < s->current_picture.mb_var[xy])
1663                             score[j]-= 170;
1664                     }
1665                 }
1666                 xy++;
1667             }
1668         }
1669
1670         for(i=1; i<8; i++){
1671             if(score[i] > best_score){
1672                 best_score= score[i];
1673                 best_fcode= i;
1674             }
1675         }
1676
1677         return best_fcode;
1678     }else{
1679         return 1;
1680     }
1681 }
1682
1683 void ff_fix_long_p_mvs(MpegEncContext * s)
1684 {
1685     MotionEstContext * const c= &s->me;
1686     const int f_code= s->f_code;
1687     int y, range;
1688     av_assert0(s->pict_type==AV_PICTURE_TYPE_P);
1689
1690     range = (((s->out_format == FMT_MPEG1 || s->msmpeg4_version) ? 8 : 16) << f_code);
1691
1692     av_assert0(range <= 16 || !s->msmpeg4_version);
1693     av_assert0(range <=256 || !(s->codec_id == AV_CODEC_ID_MPEG2VIDEO && s->avctx->strict_std_compliance >= FF_COMPLIANCE_NORMAL));
1694
1695     if(c->avctx->me_range && range > c->avctx->me_range) range= c->avctx->me_range;
1696
1697     if(s->flags&CODEC_FLAG_4MV){
1698         const int wrap= s->b8_stride;
1699
1700         /* clip / convert to intra 8x8 type MVs */
1701         for(y=0; y<s->mb_height; y++){
1702             int xy= y*2*wrap;
1703             int i= y*s->mb_stride;
1704             int x;
1705
1706             for(x=0; x<s->mb_width; x++){
1707                 if(s->mb_type[i]&CANDIDATE_MB_TYPE_INTER4V){
1708                     int block;
1709                     for(block=0; block<4; block++){
1710                         int off= (block& 1) + (block>>1)*wrap;
1711                         int mx = s->current_picture.motion_val[0][ xy + off ][0];
1712                         int my = s->current_picture.motion_val[0][ xy + off ][1];
1713
1714                         if(   mx >=range || mx <-range
1715                            || my >=range || my <-range){
1716                             s->mb_type[i] &= ~CANDIDATE_MB_TYPE_INTER4V;
1717                             s->mb_type[i] |= CANDIDATE_MB_TYPE_INTRA;
1718                             s->current_picture.mb_type[i] = CANDIDATE_MB_TYPE_INTRA;
1719                         }
1720                     }
1721                 }
1722                 xy+=2;
1723                 i++;
1724             }
1725         }
1726     }
1727 }
1728
1729 /**
1730  *
1731  * @param truncate 1 for truncation, 0 for using intra
1732  */
1733 void ff_fix_long_mvs(MpegEncContext * s, uint8_t *field_select_table, int field_select,
1734                      int16_t (*mv_table)[2], int f_code, int type, int truncate)
1735 {
1736     MotionEstContext * const c= &s->me;
1737     int y, h_range, v_range;
1738
1739     // RAL: 8 in MPEG-1, 16 in MPEG-4
1740     int range = (((s->out_format == FMT_MPEG1 || s->msmpeg4_version) ? 8 : 16) << f_code);
1741
1742     if(c->avctx->me_range && range > c->avctx->me_range) range= c->avctx->me_range;
1743
1744     h_range= range;
1745     v_range= field_select_table ? range>>1 : range;
1746
1747     /* clip / convert to intra 16x16 type MVs */
1748     for(y=0; y<s->mb_height; y++){
1749         int x;
1750         int xy= y*s->mb_stride;
1751         for(x=0; x<s->mb_width; x++){
1752             if (s->mb_type[xy] & type){    // RAL: "type" test added...
1753                 if(field_select_table==NULL || field_select_table[xy] == field_select){
1754                     if(   mv_table[xy][0] >=h_range || mv_table[xy][0] <-h_range
1755                        || mv_table[xy][1] >=v_range || mv_table[xy][1] <-v_range){
1756
1757                         if(truncate){
1758                             if     (mv_table[xy][0] > h_range-1) mv_table[xy][0]=  h_range-1;
1759                             else if(mv_table[xy][0] < -h_range ) mv_table[xy][0]= -h_range;
1760                             if     (mv_table[xy][1] > v_range-1) mv_table[xy][1]=  v_range-1;
1761                             else if(mv_table[xy][1] < -v_range ) mv_table[xy][1]= -v_range;
1762                         }else{
1763                             s->mb_type[xy] &= ~type;
1764                             s->mb_type[xy] |= CANDIDATE_MB_TYPE_INTRA;
1765                             mv_table[xy][0]=
1766                             mv_table[xy][1]= 0;
1767                         }
1768                     }
1769                 }
1770             }
1771             xy++;
1772         }
1773     }
1774 }