Lines Matching defs:fse
772 struct v4l2_subdev_frame_size_enum *fse)
777 if (fse->index >= OV2680_FRAME_SIZES)
780 crop = __ov2680_get_pad_crop(sensor, sd_state, fse->pad, fse->which);
784 fse->min_width = crop->width / (fse->index + 1);
785 fse->min_height = crop->height / (fse->index + 1);
786 fse->max_width = fse->min_width;
787 fse->max_height = fse->min_height;
796 struct v4l2_subdev_frame_size_enum fse = {
803 fse.index = i;
805 if (ov2680_enum_frame_size(sd, sd_state, &fse))
808 if (fie->width == fse.min_width &&
809 fie->height == fse.min_height)