* [media-ctl PATCH 1/1] media-ctl: Compose print fixes
@ 2012-05-26 16:43 Sakari Ailus
2012-05-28 15:58 ` Laurent Pinchart
0 siblings, 1 reply; 2+ messages in thread
From: Sakari Ailus @ 2012-05-26 16:43 UTC (permalink / raw)
To: linux-media; +Cc: laurent.pinchart
The compose rectangles were printed incorrectly in my recent patch "Compose
rectangle support for libv4l2subdev" without parenthesis. Fix this.
Signed-off-by: Sakari Ailus <sakari.ailus@iki.fi>
---
Hi Laurent,
Could you apply this simple fix to your tree? Currently the compose
rectangles are printed differently than the crop rectangles which certainly
isn't the intention.
src/main.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/main.c b/src/main.c
index af16818..d10094b 100644
--- a/src/main.c
+++ b/src/main.c
@@ -81,14 +81,14 @@ static void v4l2_subdev_print_format(struct media_entity *entity,
V4L2_SUBDEV_SEL_TGT_COMPOSE_BOUNDS,
which);
if (ret == 0)
- printf("\n\t\t compose.bounds:%u,%u/%ux%u",
+ printf("\n\t\t compose.bounds:(%u,%u)/%ux%u",
rect.left, rect.top, rect.width, rect.height);
ret = v4l2_subdev_get_selection(entity, &rect, pad,
V4L2_SUBDEV_SEL_TGT_COMPOSE_ACTUAL,
which);
if (ret == 0)
- printf("\n\t\t compose:%u,%u/%ux%u",
+ printf("\n\t\t compose:(%u,%u)/%ux%u",
rect.left, rect.top, rect.width, rect.height);
printf("]\n");
--
1.7.2.5
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [media-ctl PATCH 1/1] media-ctl: Compose print fixes
2012-05-26 16:43 [media-ctl PATCH 1/1] media-ctl: Compose print fixes Sakari Ailus
@ 2012-05-28 15:58 ` Laurent Pinchart
0 siblings, 0 replies; 2+ messages in thread
From: Laurent Pinchart @ 2012-05-28 15:58 UTC (permalink / raw)
To: Sakari Ailus; +Cc: linux-media
Hi Sakari,
On Saturday 26 May 2012 19:43:16 Sakari Ailus wrote:
> The compose rectangles were printed incorrectly in my recent patch "Compose
> rectangle support for libv4l2subdev" without parenthesis. Fix this.
>
> Signed-off-by: Sakari Ailus <sakari.ailus@iki.fi>
> ---
> Hi Laurent,
>
> Could you apply this simple fix to your tree? Currently the compose
> rectangles are printed differently than the crop rectangles which certainly
> isn't the intention.
Done, thank you.
> src/main.c | 4 ++--
> 1 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/src/main.c b/src/main.c
> index af16818..d10094b 100644
> --- a/src/main.c
> +++ b/src/main.c
> @@ -81,14 +81,14 @@ static void v4l2_subdev_print_format(struct media_entity
> *entity, V4L2_SUBDEV_SEL_TGT_COMPOSE_BOUNDS,
> which);
> if (ret == 0)
> - printf("\n\t\t compose.bounds:%u,%u/%ux%u",
> + printf("\n\t\t compose.bounds:(%u,%u)/%ux%u",
> rect.left, rect.top, rect.width, rect.height);
>
> ret = v4l2_subdev_get_selection(entity, &rect, pad,
> V4L2_SUBDEV_SEL_TGT_COMPOSE_ACTUAL,
> which);
> if (ret == 0)
> - printf("\n\t\t compose:%u,%u/%ux%u",
> + printf("\n\t\t compose:(%u,%u)/%ux%u",
> rect.left, rect.top, rect.width, rect.height);
>
> printf("]\n");
--
Regards,
Laurent Pinchart
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-05-28 15:58 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-26 16:43 [media-ctl PATCH 1/1] media-ctl: Compose print fixes Sakari Ailus
2012-05-28 15:58 ` Laurent Pinchart
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox