• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/media/video/bt8xx/

Lines Matching refs:rect

862 		__s32 top = btv->crop[!!fh->do_crop].rect.top;
868 Claim scan lines crop[].rect.top to bottom. */
1273 (max(48, c->rect.width >> 4) + 3) & ~3;
1275 max(32, c->rect.height >> 4);
1278 c->max_scaled_width = c->rect.width & ~3;
1279 c->max_scaled_height = c->rect.height;
1285 c->rect = bttv_tvnorms[norm].cropcap.defrect;
1786 c.rect = bttv_tvnorms[norm].cropcap.defrect;
1825 buf->crop.top != c.rect.top ||
1826 buf->crop.left != c.rect.left ||
1827 buf->crop.width != c.rect.width ||
1828 buf->crop.height != c.rect.height) {
1834 buf->crop = c.rect;
2277 c->rect.width = width * 16;
2280 c->rect.width = width;
2284 if (c->rect.left > max_left)
2285 c->rect.left = max_left;
2290 c->rect.height = height * 16;
2294 c->rect.height = (frame_height + 1) & ~1;
2296 max_top = b->top + b->height - c->rect.height;
2297 if (c->rect.top > max_top)
2298 c->rect.top = max_top;
2350 than crop.rect we adjust the crop.rect as required
2366 if (btv->vbi_end > c->rect.top)
2395 if (btv->vbi_end > c->rect.top) {
2397 c->rect.top = btv->vbi_end;
2445 height2 = fh->btv->crop[!!fh->do_crop].rect.height >> 1;
2560 new->crop = btv->crop[!!fh->do_crop].rect;
2677 height2 = btv->crop[!!fh->do_crop].rect.height >> 1;
3026 new->crop = btv->crop[!!fh->do_crop].rect;
3082 height2 = btv->crop[!!fh->do_crop].rect.height >> 1;
3315 new->crop = btv->crop[!!fh->do_crop].rect;
3464 crop->c = btv->crop[!!fh->do_crop].rect;
3507 c.rect.left = clamp(crop->c.left, b_left, b_right - 48);
3508 c.rect.left = min(c.rect.left, (__s32) MAX_HDELAY);
3510 c.rect.width = clamp(crop->c.width,
3511 48, b_right - c.rect.left);
3513 c.rect.top = clamp(crop->c.top, b_top, b_bottom - 32);
3515 c.rect.top = (c.rect.top + 1) & ~1;
3517 c.rect.height = clamp(crop->c.height,
3518 32, b_bottom - c.rect.top);
3519 c.rect.height = (c.rect.height + 1) & ~1;