Searched refs:dst32_linesize (Results 1 – 1 of 1) sorted by relevance
/third_party/ffmpeg/libavfilter/ |
D | vf_hqx.c | 397 const int dst32_linesize = dst_linesize >> 2; in hqx_filter() local 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() 430 …hq3x_interp_2x1(dst32, dst32_linesize, r2y, pattern, w, 0,1, 0,1,2,3,4,5,6,… in hqx_filter() 431 …hq3x_interp_2x1(dst32 + 1, dst32_linesize, r2y, pattern, w, 1,3, 2,5,8,1,4,7,0,… in hqx_filter() 432 …hq3x_interp_2x1(dst32 + 1*dst32_linesize, dst32_linesize, r2y, pattern, w, 2,0, 6,3,0,7,4,1,8,… in hqx_filter() 433 …hq3x_interp_2x1(dst32 + 1*dst32_linesize + 1, dst32_linesize, r2y, pattern, w, 3,2, 8,7,6,5,4,3,2,… in hqx_filter() 434 …dst32[dst32_linesize + 1] = w[4]; … in hqx_filter() [all …]
|