From: Boris Brezillon <boris.brezillon@collabora.com>
To: Ezequiel Garcia <ezequiel@collabora.com>
Cc: linux-media@vger.kernel.org,
Hans Verkuil <hans.verkuil@cisco.com>,
kernel@collabora.com,
Nicolas Dufresne <nicolas.dufresne@collabora.com>
Subject: Re: [PATCH 2/2] media: v4l2-ctrl: Move compound control initialization
Date: Thu, 30 May 2019 10:03:43 +0200 [thread overview]
Message-ID: <20190530100343.52c9570b@collabora.com> (raw)
In-Reply-To: <20190529192811.13986-2-ezequiel@collabora.com>
Hi Ezequiel,
On Wed, 29 May 2019 16:28:11 -0300
Ezequiel Garcia <ezequiel@collabora.com> wrote:
> Rework std_init adding an explicit initialization for
> compound controls.
>
> While here, make sure the control is initialized to zero,
> before providing default values for all its fields.
>
> Signed-off-by: Ezequiel Garcia <ezequiel@collabora.com>
> ---
> drivers/media/v4l2-core/v4l2-ctrls.c | 55 +++++++++++++++++-----------
> 1 file changed, 34 insertions(+), 21 deletions(-)
>
> diff --git a/drivers/media/v4l2-core/v4l2-ctrls.c b/drivers/media/v4l2-core/v4l2-ctrls.c
> index c7d5fdb8efb4..44afda1d77b3 100644
> --- a/drivers/media/v4l2-core/v4l2-ctrls.c
> +++ b/drivers/media/v4l2-core/v4l2-ctrls.c
> @@ -1506,25 +1506,49 @@ static bool std_equal(const struct v4l2_ctrl *ctrl, u32 idx,
> }
> }
>
> -static void std_init(const struct v4l2_ctrl *ctrl, u32 idx,
> +static void std_init_compound(const struct v4l2_ctrl *ctrl, u32 idx,
> union v4l2_ctrl_ptr ptr)
> {
> struct v4l2_ctrl_mpeg2_slice_params *p_mpeg2_slice_params;
>
> + memset(ptr.p, 0, ctrl->elem_size);
> +
Hm, shouldn't we have
idx *= ctrl->elem_size;
memset(ptr.p + idx, 0, ctrl->elem_size);
instead?
Looks like your solution always resets the first element of an array
even if idx > 0.
> /*
> * The cast is needed to get rid of a gcc warning complaining that
> * V4L2_CTRL_TYPE_MPEG2_SLICE_PARAMS is not part of the
> * v4l2_ctrl_type enum.
> */
> switch ((u32)ctrl->type) {
> + case V4L2_CTRL_TYPE_MPEG2_SLICE_PARAMS:
> + p_mpeg2_slice_params = ptr.p;
> + /* 4:2:0 */
> + p_mpeg2_slice_params->sequence.chroma_format = 1;
> + /* 8 bits */
> + p_mpeg2_slice_params->picture.intra_dc_precision = 0;
> + /* interlaced top field */
> + p_mpeg2_slice_params->picture.picture_structure = 1;
> + p_mpeg2_slice_params->picture.picture_coding_type =
> + V4L2_MPEG2_PICTURE_CODING_TYPE_I;
> + return;
> + default:
> + idx *= ctrl->elem_size;
> + memset(ptr.p + idx, 0, ctrl->elem_size);
> + return;
If you fix the first memset() you can get rid of this one. Also don't
see why you use return instead of break in this switch-case block
(there's no reason to bail out early in this function).
> + }
> +}
> +
> +static void std_init(const struct v4l2_ctrl *ctrl, u32 idx,
> + union v4l2_ctrl_ptr ptr)
> +{
> + switch (ctrl->type) {
> case V4L2_CTRL_TYPE_STRING:
> idx *= ctrl->elem_size;
> memset(ptr.p_char + idx, ' ', ctrl->minimum);
> ptr.p_char[idx + ctrl->minimum] = '\0';
> - break;
> + return;
> case V4L2_CTRL_TYPE_INTEGER64:
> ptr.p_s64[idx] = ctrl->default_value;
> - break;
> + return;
> case V4L2_CTRL_TYPE_INTEGER:
> case V4L2_CTRL_TYPE_INTEGER_MENU:
> case V4L2_CTRL_TYPE_MENU:
> @@ -1533,32 +1557,21 @@ static void std_init(const struct v4l2_ctrl *ctrl, u32 idx,
> case V4L2_CTRL_TYPE_BUTTON:
> case V4L2_CTRL_TYPE_CTRL_CLASS:
> ptr.p_s32[idx] = ctrl->default_value;
> - break;
> + return;
> case V4L2_CTRL_TYPE_U8:
> ptr.p_u8[idx] = ctrl->default_value;
> - break;
> + return;
> case V4L2_CTRL_TYPE_U16:
> ptr.p_u16[idx] = ctrl->default_value;
> - break;
> + return;
> case V4L2_CTRL_TYPE_U32:
> ptr.p_u32[idx] = ctrl->default_value;
> - break;
> - case V4L2_CTRL_TYPE_MPEG2_SLICE_PARAMS:
> - p_mpeg2_slice_params = ptr.p;
> - /* 4:2:0 */
> - p_mpeg2_slice_params->sequence.chroma_format = 1;
> - /* 8 bits */
> - p_mpeg2_slice_params->picture.intra_dc_precision = 0;
> - /* interlaced top field */
> - p_mpeg2_slice_params->picture.picture_structure = 1;
> - p_mpeg2_slice_params->picture.picture_coding_type =
> - V4L2_MPEG2_PICTURE_CODING_TYPE_I;
> - break;
> + return;
> default:
> - idx *= ctrl->elem_size;
> - memset(ptr.p + idx, 0, ctrl->elem_size);
> - break;
> + std_init_compound(ctrl, idx, ptr);
> + return;
Same comment here: I see no reasons to have return instead of break.
> }
> +
You can get rid of this blank line.
> }
>
> static void std_log(const struct v4l2_ctrl *ctrl)
Regards,
Boris
next prev parent reply other threads:[~2019-05-30 8:03 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-05-29 19:28 [PATCH 1/2] media: v4l2-ctrl: Initialize _BUTTON and _CTRL_CLASS Ezequiel Garcia
2019-05-29 19:28 ` [PATCH 2/2] media: v4l2-ctrl: Move compound control initialization Ezequiel Garcia
2019-05-30 8:03 ` Boris Brezillon [this message]
2019-05-30 12:43 ` Ezequiel Garcia
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20190530100343.52c9570b@collabora.com \
--to=boris.brezillon@collabora.com \
--cc=ezequiel@collabora.com \
--cc=hans.verkuil@cisco.com \
--cc=kernel@collabora.com \
--cc=linux-media@vger.kernel.org \
--cc=nicolas.dufresne@collabora.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox