Lines Matching refs:mf
541 struct v4l2_mbus_framefmt *mf = &format->format; in ov6650_get_fmt() local
549 *mf = ov6650_def_fmt; in ov6650_get_fmt()
553 mf->width = cfg->try_fmt.width; in ov6650_get_fmt()
554 mf->height = cfg->try_fmt.height; in ov6650_get_fmt()
555 mf->code = cfg->try_fmt.code; in ov6650_get_fmt()
558 mf->width = priv->rect.width >> priv->half_scale; in ov6650_get_fmt()
559 mf->height = priv->rect.height >> priv->half_scale; in ov6650_get_fmt()
560 mf->code = priv->code; in ov6650_get_fmt()
573 static int ov6650_s_fmt(struct v4l2_subdev *sd, struct v4l2_mbus_framefmt *mf) in ov6650_s_fmt() argument
577 bool half_scale = !is_unscaled_ok(mf->width, mf->height, &priv->rect); in ov6650_s_fmt()
582 (mf->width >> (1 - half_scale)), in ov6650_s_fmt()
584 (mf->height >> (1 - half_scale)), in ov6650_s_fmt()
585 .r.width = mf->width << half_scale, in ov6650_s_fmt()
586 .r.height = mf->height << half_scale, in ov6650_s_fmt()
588 u32 code = mf->code; in ov6650_s_fmt()
674 struct v4l2_mbus_framefmt *mf = &format->format; in ov6650_set_fmt() local
681 if (is_unscaled_ok(mf->width, mf->height, &priv->rect)) in ov6650_set_fmt()
682 v4l_bound_align_image(&mf->width, 2, W_CIF, 1, in ov6650_set_fmt()
683 &mf->height, 2, H_CIF, 1, 0); in ov6650_set_fmt()
685 switch (mf->code) { in ov6650_set_fmt()
687 mf->code = MEDIA_BUS_FMT_Y8_1X8; in ov6650_set_fmt()
696 mf->code = MEDIA_BUS_FMT_SBGGR8_1X8; in ov6650_set_fmt()
704 cfg->try_fmt.width = mf->width; in ov6650_set_fmt()
705 cfg->try_fmt.height = mf->height; in ov6650_set_fmt()
706 cfg->try_fmt.code = mf->code; in ov6650_set_fmt()
709 *mf = ov6650_def_fmt; in ov6650_set_fmt()
710 mf->width = cfg->try_fmt.width; in ov6650_set_fmt()
711 mf->height = cfg->try_fmt.height; in ov6650_set_fmt()
712 mf->code = cfg->try_fmt.code; in ov6650_set_fmt()
716 int ret = ov6650_s_fmt(sd, mf); in ov6650_set_fmt()
722 *mf = ov6650_def_fmt; in ov6650_set_fmt()
723 mf->width = priv->rect.width >> priv->half_scale; in ov6650_set_fmt()
724 mf->height = priv->rect.height >> priv->half_scale; in ov6650_set_fmt()
725 mf->code = priv->code; in ov6650_set_fmt()
893 struct v4l2_mbus_framefmt mf = ov6650_def_fmt; in ov6650_video_probe() local
895 ret = ov6650_s_fmt(sd, &mf); in ov6650_video_probe()