Lines Matching refs:mf
919 struct v4l2_mbus_framefmt *mf = &format->format; in ov2640_get_fmt() local
928 mf = v4l2_subdev_get_try_format(sd, cfg, 0); in ov2640_get_fmt()
929 format->format = *mf; in ov2640_get_fmt()
936 mf->width = priv->win->width; in ov2640_get_fmt()
937 mf->height = priv->win->height; in ov2640_get_fmt()
938 mf->code = priv->cfmt_code; in ov2640_get_fmt()
939 mf->colorspace = V4L2_COLORSPACE_SRGB; in ov2640_get_fmt()
940 mf->field = V4L2_FIELD_NONE; in ov2640_get_fmt()
941 mf->ycbcr_enc = V4L2_YCBCR_ENC_DEFAULT; in ov2640_get_fmt()
942 mf->quantization = V4L2_QUANTIZATION_DEFAULT; in ov2640_get_fmt()
943 mf->xfer_func = V4L2_XFER_FUNC_DEFAULT; in ov2640_get_fmt()
952 struct v4l2_mbus_framefmt *mf = &format->format; in ov2640_set_fmt() local
964 win = ov2640_select_win(mf->width, mf->height); in ov2640_set_fmt()
965 mf->width = win->width; in ov2640_set_fmt()
966 mf->height = win->height; in ov2640_set_fmt()
968 mf->field = V4L2_FIELD_NONE; in ov2640_set_fmt()
969 mf->colorspace = V4L2_COLORSPACE_SRGB; in ov2640_set_fmt()
970 mf->ycbcr_enc = V4L2_YCBCR_ENC_DEFAULT; in ov2640_set_fmt()
971 mf->quantization = V4L2_QUANTIZATION_DEFAULT; in ov2640_set_fmt()
972 mf->xfer_func = V4L2_XFER_FUNC_DEFAULT; in ov2640_set_fmt()
974 switch (mf->code) { in ov2640_set_fmt()
983 mf->code = MEDIA_BUS_FMT_UYVY8_2X8; in ov2640_set_fmt()
997 priv->cfmt_code = mf->code; in ov2640_set_fmt()
999 cfg->try_fmt = *mf; in ov2640_set_fmt()