Lines Matching refs:fse
286 struct v4l2_subdev_frame_size_enum *fse) in xvip_enum_frame_size() argument
293 if (fse->which == V4L2_SUBDEV_FORMAT_ACTIVE) in xvip_enum_frame_size()
296 format = v4l2_subdev_get_try_format(subdev, sd_state, fse->pad); in xvip_enum_frame_size()
298 if (fse->index || fse->code != format->code) in xvip_enum_frame_size()
301 if (fse->pad == XVIP_PAD_SINK) { in xvip_enum_frame_size()
302 fse->min_width = XVIP_MIN_WIDTH; in xvip_enum_frame_size()
303 fse->max_width = XVIP_MAX_WIDTH; in xvip_enum_frame_size()
304 fse->min_height = XVIP_MIN_HEIGHT; in xvip_enum_frame_size()
305 fse->max_height = XVIP_MAX_HEIGHT; in xvip_enum_frame_size()
310 fse->min_width = format->width; in xvip_enum_frame_size()
311 fse->max_width = format->width; in xvip_enum_frame_size()
312 fse->min_height = format->height; in xvip_enum_frame_size()
313 fse->max_height = format->height; in xvip_enum_frame_size()