Searched defs:ystride (Results 1 - 3 of 3) sorted by relevance

/external/libvpx/libvpx/vp8/encoder/
H A Dpicklpf.c32 int ystride; local
37 ystride = src_ybc->y_stride;
49 yoffset = ystride * (((yheight >> 5) * 16) - 4);
53 memcpy(dst_y, src_y, ystride * linestocopy);
H A Donyx_if.c3097 int ystride = cpi->Source->y_stride; local
3121 vpx_variance16x16(src + j, ystride, dst + j, ystride, &sse);
3128 vpx_variance16x16(src + j, ystride, const_source, 0, &sse2);
3134 src += 16 * skip * ystride;
3135 dst += 16 * skip * ystride;
/external/libvpx/libvpx/vpx_dsp/
H A Dpsnrhvs.c29 static void od_bin_fdct8x8(tran_low_t *y, int ystride, const int16_t *x, argument
33 vpx_fdct8x8(x, y, ystride);
36 *(y + ystride * i + j) = (*(y + ystride * i + j) + 4) >> 3;
39 static void hbd_od_bin_fdct8x8(tran_low_t *y, int ystride, const int16_t *x, argument
43 vpx_highbd_fdct8x8(x, y, ystride);
46 *(y + ystride * i + j) = (*(y + ystride * i + j) + 4) >> 3;

Completed in 111 milliseconds