HomeSort by relevance Sort by last modified time
    Searched defs:y_end (Results 1 - 3 of 3) sorted by null

  /external/webp/src/dec/
frame_dec.c 433 int y_end = MACROBLOCK_VPOS(mb_y + 1); local
446 y_end -= extra_y_rows;
448 if (y_end > io->crop_bottom) {
449 y_end = io->crop_bottom; // make sure we don't overflow on last row.
452 if (dec->alpha_data_ != NULL && y_start < y_end) {
455 io->a = VP8DecompressAlphaRows(dec, io, y_start, y_end - y_start);
472 if (y_start < y_end) {
481 io->mb_h = y_end - y_start;
io_dec.c 73 const int y_end = io->mb_y + io->mb_h; local
87 for (; y + 2 < y_end; y += 2) {
100 if (io->crop_top + y_end < io->crop_bottom) {
110 if (!(y_end & 1)) {
470 const int y_end = p->last_y + lines_left; local
475 lines_left -= p->emit_alpha_row(p, y_end - lines_left, lines_left);
  /external/webp/src/mux/
anim_encode.c 719 const int y_end = (rect->y_offset_ + rect->height_) & ~(block_size - 1); local
726 for (j = y_start; j < y_end; j += block_size) {
    [all...]

Completed in 84 milliseconds