Lines Matching refs:fse
291 struct v4l2_subdev_frame_size_enum *fse) in xvip_enum_frame_size() argument
298 if (fse->which == V4L2_SUBDEV_FORMAT_ACTIVE) in xvip_enum_frame_size()
301 format = v4l2_subdev_get_try_format(subdev, cfg, fse->pad); in xvip_enum_frame_size()
303 if (fse->index || fse->code != format->code) in xvip_enum_frame_size()
306 if (fse->pad == XVIP_PAD_SINK) { in xvip_enum_frame_size()
307 fse->min_width = XVIP_MIN_WIDTH; in xvip_enum_frame_size()
308 fse->max_width = XVIP_MAX_WIDTH; in xvip_enum_frame_size()
309 fse->min_height = XVIP_MIN_HEIGHT; in xvip_enum_frame_size()
310 fse->max_height = XVIP_MAX_HEIGHT; in xvip_enum_frame_size()
315 fse->min_width = format->width; in xvip_enum_frame_size()
316 fse->max_width = format->width; in xvip_enum_frame_size()
317 fse->min_height = format->height; in xvip_enum_frame_size()
318 fse->max_height = format->height; in xvip_enum_frame_size()