motion_est.c
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:72k
源码类别:

Windows CE

开发平台:

C/C++

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