Searched refs:VTAPS (Results 1 – 2 of 2) sorted by relevance
/third_party/ffmpeg/libavcodec/ppc/ |
D | vp8dsp_altivec.c | 272 #define EPEL_HV(WIDTH, HTAPS, VTAPS) \ argument 273 static void put_vp8_epel ## WIDTH ## _h ## HTAPS ## v ## VTAPS ## _altivec(uint8_t *dst, ptrdiff_t … 276 if (VTAPS == 6) { \ 278 …put_vp8_epel ## WIDTH ## _v ## VTAPS ## _altivec(dst, dstride, tmp+2*16, 16, h, mx, my… 281 …put_vp8_epel ## WIDTH ## _v ## VTAPS ## _altivec(dst, dstride, tmp+16, 16, h, mx, my);…
|
/third_party/ffmpeg/libavcodec/ |
D | vp8dsp.c | 526 #define VP8_EPEL_HV(SIZE, HTAPS, VTAPS) \ argument 528 put_vp8_epel ## SIZE ## _h ## HTAPS ## v ## VTAPS ## _c(uint8_t *dst, \ 538 uint8_t tmp_array[(2 * SIZE + VTAPS - 1) * SIZE]; \ 540 src -= (2 - (VTAPS == 4)) * srcstride; \ 542 for (y = 0; y < h + VTAPS - 1; y++) { \ 548 tmp = tmp_array + (2 - (VTAPS == 4)) * SIZE; \ 553 dst[x] = FILTER_ ## VTAPS ## TAP(tmp, filter, SIZE); \
|