Home
last modified time | relevance | path

Searched refs:y_accum (Results 1 – 3 of 3) sorted by relevance

/external/webp/src/dec/
Dio.c439 wrk->y_accum = y_add; in InitRescaler()
491 const int yscale = wrk->fy_scale * (-wrk->y_accum); in ExportRow()
492 assert(wrk->y_accum <= 0); in ExportRow()
499 wrk->y_accum += wrk->y_add; in ExportRow()
515 wrk->y_accum -= wrk->y_sub; in Rescale()
516 while (wrk->y_accum <= 0) { // emit output row(s) in Rescale()
601 while (num_lines_in < new_lines && wrk->y_accum > 0) { in Import()
605 wrk->y_accum -= wrk->y_sub; in Import()
617 while (p->scaler_y.y_accum <= 0 && p->scaler_u.y_accum <= 0) { in ExportRGB()
619 assert(p->scaler_u.y_accum == p->scaler_v.y_accum); in ExportRGB()
[all …]
Dwebpi.h33 int y_accum; // vertical accumulator member
/external/webp/src/enc/
Dpicture.c287 int y_accum = src_height; in RescalePlane() local
298 y_accum -= dst_height; in RescalePlane()
299 for (; y_accum <= 0; y_accum += src_height) { in RescalePlane()
300 const int yscale = fy_scale * (-y_accum); in RescalePlane()