Home
last modified time | relevance | path

Searched refs:FILTER_BILIN (Results 1 - 1 of 1) sorted by relevance

/third_party/ffmpeg/libavcodec/
H A Dvp9dsp_template.c2118 #define FILTER_BILIN(src, x, mxy, stride) \ macro
2135 dst[x] = (dst[x] + FILTER_BILIN(src, x, mxy, ds) + 1) >> 1; in do_bilin_1d_c()
2137 dst[x] = FILTER_BILIN(src, x, mxy, ds); in do_bilin_1d_c()
2175 tmp_ptr[x] = FILTER_BILIN(src, x, mx, 1); in do_bilin_2d_c()
2187 dst[x] = (dst[x] + FILTER_BILIN(tmp_ptr, x, my, 64) + 1) >> 1; in do_bilin_2d_c()
2189 dst[x] = FILTER_BILIN(tmp_ptr, x, my, 64); in do_bilin_2d_c()
2424 tmp_ptr[x] = FILTER_BILIN(src, ioff, imx, 1); in do_scaled_bilin_c()
2440 dst[x] = (dst[x] + FILTER_BILIN(tmp_ptr, x, my, 64) + 1) >> 1; in do_scaled_bilin_c()
2442 dst[x] = FILTER_BILIN(tmp_ptr, x, my, 64); in do_scaled_bilin_c()
2465 #undef FILTER_BILIN macro
[all...]

Completed in 5 milliseconds