Lines Matching defs:mx4
589 int mx4, my4;
638 dmin4 = epzs_motion_search2(s, &mx4, &my4, P, block, block, s->p_mv_table, (1<<16)>>shift, 1);
640 dmin4= c->sub_motion_search(s, &mx4, &my4, dmin4, block, block, size, h);
647 uint8_t *ref= c->ref[block][0] + (mx4>>2) + (my4>>2)*stride;
648 dxy = ((my4 & 3) << 2) | (mx4 & 3);
655 uint8_t *ref= c->ref[block][0] + (mx4>>1) + (my4>>1)*stride;
656 dxy = ((my4 & 1) << 1) | (mx4 & 1);
663 dmin_sum+= (mv_penalty[mx4-pred_x4] + mv_penalty[my4-pred_y4])*c->mb_penalty_factor;
668 mx4_sum+= mx4/2;
671 mx4_sum+= mx4;
675 s->current_picture.motion_val[0][s->block_index[block]][0] = mx4;
678 if(mx4 != mx || my4 != my) same=0;