Lines Matching refs:dxy
185 const int dxy= subx + (suby<<(1+qpel)); //FIXME log2_subpel? in cmp_inline() local
193 if(dxy){ in cmp_inline()
196 … c->qpel_put[size][dxy](c->temp, ref[0] + x + y*stride, stride); //FIXME prototype (add h) in cmp_inline()
198 c->qpel_put[1][dxy](c->temp , ref[0] + x + y*stride , stride); in cmp_inline()
199 c->qpel_put[1][dxy](c->temp + 8, ref[0] + x + y*stride + 8, stride); in cmp_inline()
211 c->hpel_put[size][dxy](c->temp, ref[0] + x + y*stride, stride, h); in cmp_inline()
213 uvdxy= dxy | (x&1) | (2*(y&1)); in cmp_inline()
641 int dxy; in h263_mv4_search() local
646 dxy = ((my4 & 3) << 2) | (mx4 & 3); in h263_mv4_search()
649 s->qdsp.put_no_rnd_qpel_pixels_tab[1][dxy](dest_y, ref, stride); in h263_mv4_search()
651 s->qdsp.put_qpel_pixels_tab[1][dxy](dest_y, ref, stride); in h263_mv4_search()
654 dxy = ((my4 & 1) << 1) | (mx4 & 1); in h263_mv4_search()
657 s->hdsp.put_no_rnd_pixels_tab[1][dxy](dest_y , ref , stride, h); in h263_mv4_search()
659 s->hdsp.put_pixels_tab [1][dxy](dest_y , ref , stride, h); in h263_mv4_search()
690 int dxy; in h263_mv4_search() local
696 dxy = ((my & 1) << 1) | (mx & 1); in h263_mv4_search()
701 …s->hdsp.put_no_rnd_pixels_tab[1][dxy](c->scratchpad , s->last_picture.f->data[1] + offset, s->u… in h263_mv4_search()
702 …s->hdsp.put_no_rnd_pixels_tab[1][dxy](c->scratchpad + 8, s->last_picture.f->data[2] + offset, s->u… in h263_mv4_search()
704 …s->hdsp.put_pixels_tab [1][dxy](c->scratchpad , s->last_picture.f->data[1] + offset, s->u… in h263_mv4_search()
705 …s->hdsp.put_pixels_tab [1][dxy](c->scratchpad + 8, s->last_picture.f->data[2] + offset, s->u… in h263_mv4_search()
806 int dxy; in interlaced_search() local
810 dxy = ((my_i & 1) << 1) | (mx_i & 1); in interlaced_search()
813 s->hdsp.put_no_rnd_pixels_tab[size][dxy](c->scratchpad, ref , stride, h); in interlaced_search()
815 s->hdsp.put_pixels_tab [size][dxy](c->scratchpad, ref , stride, h); in interlaced_search()
1192 int dxy; in check_bidir_mv() local
1200 dxy = ((motion_fy & 3) << 2) | (motion_fx & 3); in check_bidir_mv()
1205 s->qdsp.put_qpel_pixels_tab[0][dxy](dest_y, ptr, stride); in check_bidir_mv()
1207 dxy = ((motion_by & 3) << 2) | (motion_bx & 3); in check_bidir_mv()
1212 s->qdsp.avg_qpel_pixels_tab[size][dxy](dest_y, ptr, stride); in check_bidir_mv()
1214 dxy = ((motion_fy & 1) << 1) | (motion_fx & 1); in check_bidir_mv()
1219 s->hdsp.put_pixels_tab[size][dxy](dest_y , ptr , stride, h); in check_bidir_mv()
1221 dxy = ((motion_by & 1) << 1) | (motion_bx & 1); in check_bidir_mv()
1226 s->hdsp.avg_pixels_tab[size][dxy](dest_y , ptr , stride, h); in check_bidir_mv()