Lines Matching refs:mf
451 struct v4l2_mbus_framefmt *mf) in mt9m111_g_fmt() argument
455 mf->width = mt9m111->width; in mt9m111_g_fmt()
456 mf->height = mt9m111->height; in mt9m111_g_fmt()
457 mf->code = mt9m111->fmt->code; in mt9m111_g_fmt()
458 mf->colorspace = mt9m111->fmt->colorspace; in mt9m111_g_fmt()
459 mf->field = V4L2_FIELD_NONE; in mt9m111_g_fmt()
535 struct v4l2_mbus_framefmt *mf) in mt9m111_try_fmt() argument
543 fmt = mt9m111_find_datafmt(mt9m111, mf->code); in mt9m111_try_fmt()
559 mf->width = rect->width; in mt9m111_try_fmt()
560 mf->height = rect->height; in mt9m111_try_fmt()
563 if (mf->width > rect->width) in mt9m111_try_fmt()
564 mf->width = rect->width; in mt9m111_try_fmt()
565 if (mf->height > rect->height) in mt9m111_try_fmt()
566 mf->height = rect->height; in mt9m111_try_fmt()
570 mf->width, mf->height, fmt->code); in mt9m111_try_fmt()
572 mf->code = fmt->code; in mt9m111_try_fmt()
573 mf->colorspace = fmt->colorspace; in mt9m111_try_fmt()
579 struct v4l2_mbus_framefmt *mf) in mt9m111_s_fmt() argument
586 mt9m111_try_fmt(sd, mf); in mt9m111_s_fmt()
587 fmt = mt9m111_find_datafmt(mt9m111, mf->code); in mt9m111_s_fmt()
590 ret = mt9m111_setup_geometry(mt9m111, rect, mf->width, mf->height, mf->code); in mt9m111_s_fmt()
592 ret = mt9m111_set_pixfmt(mt9m111, mf->code); in mt9m111_s_fmt()
594 mt9m111->width = mf->width; in mt9m111_s_fmt()
595 mt9m111->height = mf->height; in mt9m111_s_fmt()