Searched refs:cur_uv (Results 1 – 1 of 1) sorted by relevance
/external/webp/src/enc/ |
D | picture_csp_enc.c | 350 const fixed_t* cur_uv, in InterpolateTwoRows() argument 360 out1[0] = Filter2(cur_uv[0], prev_uv[0], best_y[0]); in InterpolateTwoRows() 361 out2[0] = Filter2(cur_uv[0], next_uv[0], best_y[w]); in InterpolateTwoRows() 363 WebPSharpYUVFilterRow(cur_uv, prev_uv, len, best_y + 0 + 1, out1 + 1); in InterpolateTwoRows() 364 WebPSharpYUVFilterRow(cur_uv, next_uv, len, best_y + w + 1, out2 + 1); in InterpolateTwoRows() 368 out1[w - 1] = Filter2(cur_uv[uv_w - 1], prev_uv[uv_w - 1], in InterpolateTwoRows() 370 out2[w - 1] = Filter2(cur_uv[uv_w - 1], next_uv[uv_w - 1], in InterpolateTwoRows() 376 cur_uv += uv_w; in InterpolateTwoRows() 514 const fixed_t* cur_uv = best_uv_base; in PreprocessARGB() local 526 const fixed_t* const next_uv = cur_uv + ((j < h - 2) ? 3 * uv_w : 0); in PreprocessARGB() [all …]
|