This is an automatic generated email to let you know that the following patch 
were queued at the 
http://git.linuxtv.org/cgit.cgi/v4l-utils.git tree:

Subject: v4l-utils: sync with latest media-committers git repo
Author:  Hans Verkuil <hverk...@xs4all.nl>
Date:    Wed Mar 5 20:49:24 2025 +0100

This ensures that the TPG also uses standardized
rectangle reporting.

Signed-off-by: Hans Verkuil <hverk...@xs4all.nl>

 utils/common/v4l2-tpg-core.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

---

http://git.linuxtv.org/cgit.cgi/v4l-utils.git/commit/?id=5fe212ffbb18fccf71fdd832e2a1b0e6ec98e960
diff --git a/utils/common/v4l2-tpg-core.c b/utils/common/v4l2-tpg-core.c
index e54c49bd7d3e..1687c4034cf9 100644
--- a/utils/common/v4l2-tpg-core.c
+++ b/utils/common/v4l2-tpg-core.c
@@ -2235,10 +2235,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)

Reply via email to