Searched refs:FILTER_8TAP (Results 1 - 1 of 1) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
H A D | vp9dsp_template.c | 1994 #define FILTER_8TAP(src, x, F, stride) \ macro 2019 dst[x] = (dst[x] + FILTER_8TAP(src, x, filter, ds) + 1) >> 1; in do_8tap_1d_c() 2021 dst[x] = FILTER_8TAP(src, x, filter, ds); in do_8tap_1d_c() 2061 tmp_ptr[x] = FILTER_8TAP(src, x, filterx, 1); in do_8tap_2d_c() 2073 dst[x] = (dst[x] + FILTER_8TAP(tmp_ptr, x, filtery, 64) + 1) >> 1; in do_8tap_2d_c() 2075 dst[x] = FILTER_8TAP(tmp_ptr, x, filtery, 64); in do_8tap_2d_c() 2350 tmp_ptr[x] = FILTER_8TAP(src, ioff, filters[imx], 1); in do_scaled_8tap_c() 2367 dst[x] = (dst[x] + FILTER_8TAP(tmp_ptr, x, filter, 64) + 1) >> 1; in do_scaled_8tap_c() 2369 dst[x] = FILTER_8TAP(tmp_ptr, x, filter, 64); in do_scaled_8tap_c() 2394 #undef FILTER_8TAP macro [all...] |
Completed in 6 milliseconds