Lines Matching defs:fse
275 * @fse: returning media bus frame size
288 struct v4l2_subdev_frame_size_enum *fse)
295 if (fse->which == V4L2_SUBDEV_FORMAT_ACTIVE)
298 format = v4l2_subdev_get_try_format(subdev, cfg, fse->pad);
300 if (fse->index || fse->code != format->code)
303 if (fse->pad == XVIP_PAD_SINK) {
304 fse->min_width = XVIP_MIN_WIDTH;
305 fse->max_width = XVIP_MAX_WIDTH;
306 fse->min_height = XVIP_MIN_HEIGHT;
307 fse->max_height = XVIP_MAX_HEIGHT;
312 fse->min_width = format->width;
313 fse->max_width = format->width;
314 fse->min_height = format->height;
315 fse->max_height = format->height;