Searched refs:hq2x_interp_1x1 (Results 1 – 1 of 1) sorted by relevance
/third_party/ffmpeg/libavfilter/ |
D | vf_hqx.c | 119 static av_always_inline uint32_t hq2x_interp_1x1(const uint32_t *r2y, int k, in hq2x_interp_1x1() function 425 … dst32[dst32_linesize*0 + 0] = hq2x_interp_1x1(r2y, pattern, w, 0,1,2,3,4,5,6,7,8); // 00 in hqx_filter() 426 …dst32[dst32_linesize*0 + 1] = hq2x_interp_1x1(r2y, pattern, w, 2,1,0,5,4,3,8,7,6); // 01 (vert mi… in hqx_filter() 427 …dst32[dst32_linesize*1 + 0] = hq2x_interp_1x1(r2y, pattern, w, 6,7,8,3,4,5,0,1,2); // 10 (horiz m… in hqx_filter() 428 …dst32[dst32_linesize*1 + 1] = hq2x_interp_1x1(r2y, pattern, w, 8,7,6,5,4,3,2,1,0); // 11 (center … in hqx_filter()
|