Searched refs:cur_uv (Results 1 – 1 of 1) sorted by relevance
/external/webp/src/enc/ |
D | picture_csp.c | 364 const fixed_t* const cur_uv, in InterpolateTwoRows() argument 374 out1[k] = clip_fixed_t(Filter2(cur_uv[k], prev_uv[k]) + W0); in InterpolateTwoRows() 375 out2[k] = clip_fixed_t(Filter2(cur_uv[k], next_uv[k]) + W1); in InterpolateTwoRows() 383 const int tmp0 = Filter(cur_uv + off + k, prev_uv + off + k, i & 1); in InterpolateTwoRows() 384 const int tmp1 = Filter(cur_uv + off + k, next_uv + off + k, i & 1); in InterpolateTwoRows() 395 clip_fixed_t(Filter2(cur_uv[off + k], prev_uv[off + k]) + W0); in InterpolateTwoRows() 397 clip_fixed_t(Filter2(cur_uv[off + k], next_uv[off + k]) + W1); in InterpolateTwoRows() 518 const fixed_t* cur_uv = best_uv; in PreprocessARGB() local 525 const fixed_t* const next_uv = cur_uv + ((j < h - 2) ? 3 * uv_w : 0); in PreprocessARGB() 526 InterpolateTwoRows(best_y + j * w, prev_uv, cur_uv, next_uv, in PreprocessARGB() [all …]
|