Lines Matching refs:mf
917 struct v4l2_mbus_framefmt *mf = &format->format; in ov2640_get_fmt() local
926 mf = v4l2_subdev_get_try_format(sd, sd_state, 0); in ov2640_get_fmt()
927 format->format = *mf; in ov2640_get_fmt()
934 mf->width = priv->win->width; in ov2640_get_fmt()
935 mf->height = priv->win->height; in ov2640_get_fmt()
936 mf->code = priv->cfmt_code; in ov2640_get_fmt()
937 mf->colorspace = V4L2_COLORSPACE_SRGB; in ov2640_get_fmt()
938 mf->field = V4L2_FIELD_NONE; in ov2640_get_fmt()
939 mf->ycbcr_enc = V4L2_YCBCR_ENC_DEFAULT; in ov2640_get_fmt()
940 mf->quantization = V4L2_QUANTIZATION_DEFAULT; in ov2640_get_fmt()
941 mf->xfer_func = V4L2_XFER_FUNC_DEFAULT; in ov2640_get_fmt()
950 struct v4l2_mbus_framefmt *mf = &format->format; in ov2640_set_fmt() local
962 win = ov2640_select_win(mf->width, mf->height); in ov2640_set_fmt()
963 mf->width = win->width; in ov2640_set_fmt()
964 mf->height = win->height; in ov2640_set_fmt()
966 mf->field = V4L2_FIELD_NONE; in ov2640_set_fmt()
967 mf->colorspace = V4L2_COLORSPACE_SRGB; in ov2640_set_fmt()
968 mf->ycbcr_enc = V4L2_YCBCR_ENC_DEFAULT; in ov2640_set_fmt()
969 mf->quantization = V4L2_QUANTIZATION_DEFAULT; in ov2640_set_fmt()
970 mf->xfer_func = V4L2_XFER_FUNC_DEFAULT; in ov2640_set_fmt()
972 switch (mf->code) { in ov2640_set_fmt()
981 mf->code = MEDIA_BUS_FMT_UYVY8_2X8; in ov2640_set_fmt()
995 priv->cfmt_code = mf->code; in ov2640_set_fmt()
997 sd_state->pads->try_fmt = *mf; in ov2640_set_fmt()