Lines Matching refs:stride
27 void ff_add_dirac_obmc8_mmx(uint16_t *dst, const uint8_t *src, int stride, const uint8_t *obmc_weight, int yblen);
29 void ff_add_dirac_obmc16_sse2(uint16_t *dst, const uint8_t *src, int stride, const uint8_t *obmc_weight, int yblen);
30 void ff_add_dirac_obmc32_sse2(uint16_t *dst, const uint8_t *src, int stride, const uint8_t *obmc_weight, int yblen);
36 void ff_dequant_subband_32_sse4(uint8_t *src, uint8_t *dst, ptrdiff_t stride, const int qf, const int qs, int tot_v, int tot_h);
45 const uint8_t *src, int stride, int width, int height) \
49 ff_dirac_hpel_filter_v_ ## EXT(dstv-MMSIZE, src-MMSIZE, stride, width+MMSIZE+5); \
53 dsth += stride; \
54 dstv += stride; \
55 dstc += stride; \
56 src += stride; \
67 int stride, int h) \
70 ff_ ## OPNAME ## _dirac_pixels16_c(dst, src, stride, h);\
72 ff_ ## OPNAME ## _pixels16_ ## EXT(dst, src[0], stride, h);\
75 int stride, int h) \
78 ff_ ## OPNAME ## _dirac_pixels32_c(dst, src, stride, h);\
80 ff_ ## OPNAME ## _pixels16_ ## EXT(dst , src[0] , stride, h);\
81 ff_ ## OPNAME ## _pixels16_ ## EXT(dst+16, src[0]+16, stride, h);\