Lines Matching refs:num_lines_out
63 int num_lines_out = io->mb_h; // a priori guess
84 ++num_lines_out;
107 num_lines_out--;
115 return num_lines_out;
247 int num_lines_out = 0;
252 num_lines_out += WebPRescalerExport(wrk); // emit output row(s)
254 return num_lines_out;
261 int num_lines_out = 0;
270 num_lines_out = Rescale(io->y, io->y_stride, mb_h, scaler);
273 return num_lines_out;
282 const int num_lines_out = Rescale(io->a, io->width, io->mb_h, p->scaler_a);
283 assert(expected_num_lines_out == num_lines_out);
284 if (num_lines_out > 0) { // unmultiply the Y
286 p->scaler_a->dst_width, num_lines_out, 1);
360 int num_lines_out = 0;
365 assert(y_pos + num_lines_out < p->output->height);
373 ++num_lines_out;
375 return num_lines_out;
382 int num_lines_out = 0;
399 num_lines_out += ExportRGB(p, p->last_y + num_lines_out);
401 return num_lines_out;
411 int num_lines_out = 0;
417 num_lines_out < max_lines_out) {
418 assert(y_pos + num_lines_out < p->output->height);
422 ++num_lines_out;
426 width, num_lines_out, buf->stride);
428 return num_lines_out;
440 int num_lines_out = 0;
447 num_lines_out < max_lines_out) {
449 assert(y_pos + num_lines_out < p->output->height);
458 ++num_lines_out;
461 WebPApplyAlphaMultiply4444(base_rgba, width, num_lines_out, buf->stride);
463 return num_lines_out;
617 int num_lines_out;
623 num_lines_out = p->emit(io, p);
625 p->emit_alpha(io, p, num_lines_out);
627 p->last_y += num_lines_out;