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

  /external/webp/src/dsp/
lossless.h 87 int y_end, int width);
91 int y_end, int width);
100 const struct VP8LTransform* const transform, int y_start, int y_end,
lossless.c 197 int y_start, int y_end,
216 while (y < y_end) {
288 int y_start, int y_end,
300 while (y < y_end) {
327 TYPE* dst, int y_start, int y_end, int width) { \
329 for (y = y_start; y < y_end; ++y) { \
337 int y_start, int y_end, const TYPE* src, \
347 for (y = y_start; y < y_end; ++y) { \
361 VP8LMapColor##BIT_SUFFIX(src, color_map, dst, y_start, y_end, width); \
lossless_mips_dsp_r2.c 25 TYPE* dst, int y_start, int y_end, \
28 for (y = y_start; y < y_end; ++y) { \
    [all...]
  /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);
vp8l_dec.c 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;
    [all...]
  /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 120 milliseconds