Lines Matching defs:fse
804 struct v4l2_subdev_frame_size_enum *fse)
809 if (fse->index >= OV2680_FRAME_SIZES)
812 crop = __ov2680_get_pad_crop(sensor, sd_state, fse->pad, fse->which);
816 fse->min_width = crop->width / (fse->index + 1);
817 fse->min_height = crop->height / (fse->index + 1);
818 fse->max_width = fse->min_width;
819 fse->max_height = fse->min_height;
828 struct v4l2_subdev_frame_size_enum fse = {
835 fse.index = i;
837 if (ov2680_enum_frame_size(sd, sd_state, &fse))
840 if (fie->width == fse.min_width &&
841 fie->height == fse.min_height)