Lines Matching refs:crop
1117 struct v4l2_rect *crop; in s5k6aa_set_fmt() local
1125 crop = v4l2_subdev_get_try_crop(sd, cfg, 0); in s5k6aa_set_fmt()
1131 crop = &s5k6aa->ccd_rect; in s5k6aa_set_fmt()
1147 crop->width = clamp_t(unsigned int, crop->width, mf->width, in s5k6aa_set_fmt()
1149 crop->height = clamp_t(unsigned int, crop->height, mf->height, in s5k6aa_set_fmt()
1151 crop->left = clamp_t(unsigned int, crop->left, 0, in s5k6aa_set_fmt()
1152 S5K6AA_WIN_WIDTH_MAX - crop->width); in s5k6aa_set_fmt()
1153 crop->top = clamp_t(unsigned int, crop->top, 0, in s5k6aa_set_fmt()
1154 S5K6AA_WIN_HEIGHT_MAX - crop->height); in s5k6aa_set_fmt()
1428 struct v4l2_rect *crop = v4l2_subdev_get_try_crop(sd, fh->pad, 0); in s5k6aa_open() local
1436 crop->width = S5K6AA_WIN_WIDTH_MAX; in s5k6aa_open()
1437 crop->height = S5K6AA_WIN_HEIGHT_MAX; in s5k6aa_open()
1438 crop->left = 0; in s5k6aa_open()
1439 crop->top = 0; in s5k6aa_open()