Lines Matching refs:lrange
68 int lrange, urange;
151 for(dy = -c->lrange; dy <= c->urange; dy++){
152 for(dx = -c->lrange; dx <= c->urange; dx++){
364 c->lrange = c->urange = 8;
366 c->lrange = FFMIN(avctx->me_range, 64);
394 * - The image should be padded with `lrange` rows before and `urange` rows
396 * - The stride should be padded with `lrange` pixels, then rounded up to a
398 * - The first row should also be padded with `lrange` pixels before, then
401 c->pstride = FFALIGN((avctx->width + c->lrange) * c->bypp, 16);
402 prev_size = FFALIGN(c->lrange * c->bypp, 16) + c->pstride * (c->lrange + avctx->height + c->urange);
403 prev_offset = FFALIGN(c->lrange * c->bypp, 16) + c->pstride * c->lrange;