Home | History | Annotate | Download | only in dec

Lines Matching refs:y_end

662 static int SetCropWindow(VP8Io* const io, int y_start, int y_end,
664 assert(y_start < y_end);
666 if (y_end > io->crop_bottom) {
667 y_end = io->crop_bottom; // make sure we don't overflow on last row.
674 if (y_start >= y_end) return 0; // Crop window is empty.
680 io->mb_h = y_end - y_start;