mirror of
https://github.com/torvalds/linux.git
synced 2026-05-31 10:33:41 +02:00
media: v4l2-tpg: use (t,l)/wxh format for rectangle
Standardize reporting of rectangles to (t,l)/wxh. Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
This commit is contained in:
parent
021f88afdc
commit
3851fdc360
|
|
@ -2249,10 +2249,10 @@ void tpg_log_status(struct tpg_data *tpg)
|
|||
tpg->src_width, tpg->src_height,
|
||||
tpg_color_enc_str(tpg->color_enc));
|
||||
pr_info("tpg field: %u\n", tpg->field);
|
||||
pr_info("tpg crop: %ux%u@%dx%d\n", tpg->crop.width, tpg->crop.height,
|
||||
tpg->crop.left, tpg->crop.top);
|
||||
pr_info("tpg compose: %ux%u@%dx%d\n", tpg->compose.width, tpg->compose.height,
|
||||
tpg->compose.left, tpg->compose.top);
|
||||
pr_info("tpg crop: (%d,%d)/%ux%u\n", tpg->crop.left, tpg->crop.top,
|
||||
tpg->crop.width, tpg->crop.height);
|
||||
pr_info("tpg compose: (%d,%d)/%ux%u\n", tpg->compose.left, tpg->compose.top,
|
||||
tpg->compose.width, tpg->compose.height);
|
||||
pr_info("tpg colorspace: %d\n", tpg->colorspace);
|
||||
pr_info("tpg transfer function: %d/%d\n", tpg->xfer_func, tpg->real_xfer_func);
|
||||
if (tpg->color_enc == TGP_COLOR_ENC_HSV)
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user