Lines Matching defs:tfmt
754 * @tfmt: media bus format to try/set on subdevs
755 * @fmt_id: fimc pixel format id corresponding to returned @tfmt (output)
759 struct v4l2_mbus_framefmt *tfmt,
774 if (WARN_ON(!sd || !tfmt))
778 sfmt.format = *tfmt;
793 mf->code = tfmt->code = ffmt->mbus_code;
806 mf->code = tfmt->code;
819 if (mf->code != tfmt->code)
823 tfmt->width = mf->width;
824 tfmt->height = mf->height;
825 ffmt = fimc_capture_try_format(ctx, &tfmt->width, &tfmt->height,
827 ffmt = fimc_capture_try_format(ctx, &tfmt->width, &tfmt->height,
831 if (mf->width != tfmt->width || mf->height != tfmt->height)
833 tfmt->code = mf->code;
839 *tfmt = *mf;