Home | History | Annotate | Download | only in enc

Lines Matching refs:best_y

341 static void InterpolateTwoRows(const fixed_y_t* const best_y,
353 out1[0] = Filter2(cur_uv[0], prev_uv[0], best_y[0]);
354 out2[0] = Filter2(cur_uv[0], next_uv[0], best_y[w]);
356 WebPSharpYUVFilterRow(cur_uv, prev_uv, len, best_y + 0 + 1, out1 + 1);
357 WebPSharpYUVFilterRow(cur_uv, next_uv, len, best_y + w + 1, out2 + 1);
362 best_y[w - 1 + 0]);
364 best_y[w - 1 + w]);
389 static int ConvertWRGBToYUV(const fixed_y_t* best_y, const fixed_t* best_uv,
403 const int W = best_y[i];
409 best_y += w;
456 fixed_y_t* best_y = best_y_base;
489 StoreGray(src1, best_y + 0, w);
490 StoreGray(src2, best_y + w, w);
496 best_y += 2 * w;
511 best_y = best_y_base;
520 InterpolateTwoRows(best_y, prev_uv, cur_uv, next_uv, w, src1, src2);
530 diff_y_sum += WebPSharpYUVUpdateY(target_y, best_rgb_y, best_y, 2 * w);
533 best_y += 2 * w;