Searched refs:cur_uv (Results 1 – 1 of 1) sorted by relevance
/external/webp/src/enc/ |
D | picture_csp.c | 333 const fixed_t* const cur_uv, in InterpolateTwoRows() argument 343 out1[k] = clip_y(Filter2(cur_uv[k], prev_uv[k]) + W0); in InterpolateTwoRows() 344 out2[k] = clip_y(Filter2(cur_uv[k], next_uv[k]) + W1); in InterpolateTwoRows() 352 const int tmp0 = Filter(cur_uv + off + k, prev_uv + off + k, i & 1); in InterpolateTwoRows() 353 const int tmp1 = Filter(cur_uv + off + k, next_uv + off + k, i & 1); in InterpolateTwoRows() 363 out1[3 * i + k] = clip_y(Filter2(cur_uv[off + k], prev_uv[off + k]) + W0); in InterpolateTwoRows() 364 out2[3 * i + k] = clip_y(Filter2(cur_uv[off + k], next_uv[off + k]) + W1); in InterpolateTwoRows() 489 const fixed_t* cur_uv = best_uv; in PreprocessARGB() local 497 const fixed_t* const next_uv = cur_uv + ((j < h - 2) ? 3 * uv_w : 0); in PreprocessARGB() 498 InterpolateTwoRows(best_y + j * w, prev_uv, cur_uv, next_uv, in PreprocessARGB() [all …]
|