Lines Matching refs:mf
849 struct v4l2_mbus_framefmt *mf) in ov2640_g_fmt() argument
860 mf->width = priv->win->width; in ov2640_g_fmt()
861 mf->height = priv->win->height; in ov2640_g_fmt()
862 mf->code = priv->cfmt_code; in ov2640_g_fmt()
864 switch (mf->code) { in ov2640_g_fmt()
867 mf->colorspace = V4L2_COLORSPACE_SRGB; in ov2640_g_fmt()
872 mf->colorspace = V4L2_COLORSPACE_JPEG; in ov2640_g_fmt()
874 mf->field = V4L2_FIELD_NONE; in ov2640_g_fmt()
880 struct v4l2_mbus_framefmt *mf) in ov2640_s_fmt() argument
886 switch (mf->code) { in ov2640_s_fmt()
889 mf->colorspace = V4L2_COLORSPACE_SRGB; in ov2640_s_fmt()
892 mf->code = MEDIA_BUS_FMT_UYVY8_2X8; in ov2640_s_fmt()
895 mf->colorspace = V4L2_COLORSPACE_JPEG; in ov2640_s_fmt()
898 ret = ov2640_set_params(client, &mf->width, &mf->height, mf->code); in ov2640_s_fmt()
904 struct v4l2_mbus_framefmt *mf) in ov2640_try_fmt() argument
909 ov2640_select_win(&mf->width, &mf->height); in ov2640_try_fmt()
911 mf->field = V4L2_FIELD_NONE; in ov2640_try_fmt()
913 switch (mf->code) { in ov2640_try_fmt()
916 mf->colorspace = V4L2_COLORSPACE_SRGB; in ov2640_try_fmt()
919 mf->code = MEDIA_BUS_FMT_UYVY8_2X8; in ov2640_try_fmt()
922 mf->colorspace = V4L2_COLORSPACE_JPEG; in ov2640_try_fmt()