Lines Matching refs:SIZE

150 #define HVTAP(OPT, ALIGN, TAPNUMX, TAPNUMY, SIZE, MAXHEIGHT) \
151 static void ff_put_vp8_epel ## SIZE ## _h ## TAPNUMX ## v ## TAPNUMY ## _ ## OPT( \
155 LOCAL_ALIGNED(ALIGN, uint8_t, tmp, [SIZE * (MAXHEIGHT + TAPNUMY - 1)]); \
156 uint8_t *tmpptr = tmp + SIZE * (TAPNUMY / 2 - 1); \
158 ff_put_vp8_epel ## SIZE ## _h ## TAPNUMX ## _ ## OPT( \
159 tmp, SIZE, src, srcstride, height + TAPNUMY - 1, mx, my); \
160 ff_put_vp8_epel ## SIZE ## _v ## TAPNUMY ## _ ## OPT( \
161 dst, dststride, tmpptr, SIZE, height, mx, my); \
187 #define HVBILIN(OPT, ALIGN, SIZE, MAXHEIGHT) \
188 static void ff_put_vp8_bilinear ## SIZE ## _hv_ ## OPT( \
192 LOCAL_ALIGNED(ALIGN, uint8_t, tmp, [SIZE * (MAXHEIGHT + 2)]); \
193 ff_put_vp8_bilinear ## SIZE ## _h_ ## OPT( \
194 tmp, SIZE, src, srcstride, height + 1, mx, my); \
195 ff_put_vp8_bilinear ## SIZE ## _v_ ## OPT( \
196 dst, dststride, tmp, SIZE, height, mx, my); \
259 #define VP8_LUMA_MC_FUNC(IDX, SIZE, OPT) \
260 c->put_vp8_epel_pixels_tab[IDX][0][2] = ff_put_vp8_epel ## SIZE ## _h6_ ## OPT; \
261 c->put_vp8_epel_pixels_tab[IDX][2][0] = ff_put_vp8_epel ## SIZE ## _v6_ ## OPT; \
262 c->put_vp8_epel_pixels_tab[IDX][2][2] = ff_put_vp8_epel ## SIZE ## _h6v6_ ## OPT
264 #define VP8_MC_FUNC(IDX, SIZE, OPT) \
265 c->put_vp8_epel_pixels_tab[IDX][0][1] = ff_put_vp8_epel ## SIZE ## _h4_ ## OPT; \
266 c->put_vp8_epel_pixels_tab[IDX][1][0] = ff_put_vp8_epel ## SIZE ## _v4_ ## OPT; \
267 c->put_vp8_epel_pixels_tab[IDX][1][1] = ff_put_vp8_epel ## SIZE ## _h4v4_ ## OPT; \
268 c->put_vp8_epel_pixels_tab[IDX][1][2] = ff_put_vp8_epel ## SIZE ## _h6v4_ ## OPT; \
269 c->put_vp8_epel_pixels_tab[IDX][2][1] = ff_put_vp8_epel ## SIZE ## _h4v6_ ## OPT; \
270 VP8_LUMA_MC_FUNC(IDX, SIZE, OPT)
272 #define VP8_BILINEAR_MC_FUNC(IDX, SIZE, OPT) \
273 c->put_vp8_bilinear_pixels_tab[IDX][0][1] = ff_put_vp8_bilinear ## SIZE ## _h_ ## OPT; \
274 c->put_vp8_bilinear_pixels_tab[IDX][0][2] = ff_put_vp8_bilinear ## SIZE ## _h_ ## OPT; \
275 c->put_vp8_bilinear_pixels_tab[IDX][1][0] = ff_put_vp8_bilinear ## SIZE ## _v_ ## OPT; \
276 c->put_vp8_bilinear_pixels_tab[IDX][1][1] = ff_put_vp8_bilinear ## SIZE ## _hv_ ## OPT; \
277 c->put_vp8_bilinear_pixels_tab[IDX][1][2] = ff_put_vp8_bilinear ## SIZE ## _hv_ ## OPT; \
278 c->put_vp8_bilinear_pixels_tab[IDX][2][0] = ff_put_vp8_bilinear ## SIZE ## _v_ ## OPT; \
279 c->put_vp8_bilinear_pixels_tab[IDX][2][1] = ff_put_vp8_bilinear ## SIZE ## _hv_ ## OPT; \
280 c->put_vp8_bilinear_pixels_tab[IDX][2][2] = ff_put_vp8_bilinear ## SIZE ## _hv_ ## OPT