From: Nicolas Dufresne <nicolas.dufresne@collabora.com>
To: Hans Verkuil <hverkuil@xs4all.nl>,
Sebastian Fricke <sebastian.fricke@collabora.com>
Cc: Mauro Carvalho Chehab <mchehab@kernel.org>,
Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>,
Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
Boris Brezillon <boris.brezillon@collabora.com>,
linux-media <linux-media@vger.kernel.org>,
linux-kernel <linux-kernel@vger.kernel.org>,
linux-rockchip <linux-rockchip@lists.infradead.org>,
linux-staging <linux-staging@lists.linux.dev>,
Mauro Carvalho Chehab <mchehab+huawei@kernel.org>,
Alex Bee <knaerzche@gmail.com>,
Benjamin Gaignard <benjamin.gaignard@collabora.com>,
Detlev Casanova <detlev.casanova@collabora.com>,
Dan Carpenter <dan.carpenter@linaro.org>,
Jonas Karlman <jonas@kwiboo.se>
Subject: Re: [PATCH] fixup! media: v4l2-common: Add helpers to calculate bytesperline and sizeimage
Date: Tue, 25 Feb 2025 09:05:27 -0500 [thread overview]
Message-ID: <808a9d14be9c8de25e2ba5232ee01f874acb66b6.camel@collabora.com> (raw)
In-Reply-To: <795082c4-499f-4935-b580-72b01d82fe1b@xs4all.nl>
Le mardi 25 février 2025 à 13:50 +0100, Hans Verkuil a écrit :
> On 2/25/25 13:46, Sebastian Fricke wrote:
> > Hey,
> >
> > sorry about missing this in the patch series, if you don't like the
> > fixup path, then I can send a new patch series as well.
> > I just thought the change was minor enough and addressed the final
> > comments.
>
> Ah, this relates to patch 01/12 of this patch series:
>
> https://patchwork.linuxtv.org/project/linux-media/list/?series=14577
>
> Next time it might be better to just reply to the offending patch
> with the fixup.
>
> That way it is clear for the maintainer what the fixup is for.
I believe you could have used:
git send-email -in-reply-to=9db356bd-4d71-4975-91c6-7435bee8aef3@xs4all.nl <somepatch>
To make that a reply.
cheers,
Nicolas
>
> Regards,
>
> Hans
>
> >
> > Regards,
> > Sebastian
> >
> > ---- On Tue, 25 Feb 2025 13:40:08 +0100 Sebastian Fricke
> > <sebastian.fricke@collabora.com> wrote ---
> > > ---
> > > drivers/media/v4l2-core/v4l2-common.c | 2 +-
> > > 1 file changed, 1 insertion(+), 1 deletion(-)
> > >
> > > diff --git a/drivers/media/v4l2-core/v4l2-common.c
> > b/drivers/media/v4l2-core/v4l2-common.c
> > > index 07a999f75755..aa86b8c6aa75 100644
> > > --- a/drivers/media/v4l2-core/v4l2-common.c
> > > +++ b/drivers/media/v4l2-core/v4l2-common.c
> > > @@ -360,7 +360,7 @@ static inline unsigned int
> > v4l2_format_block_height(const struct v4l2_format_inf
> > > }
> > >
> > > static inline unsigned int v4l2_format_plane_stride(const
> > struct v4l2_format_info *info, int plane,
> > > - unsigned int width)
> > > + unsigned int width)
> > > {
> > > unsigned int hdiv = plane ? info->hdiv : 1;
> > > unsigned int aligned_width =
> > > --
> > > 2.25.1
> > >
> > >
> >
>
--
Nicolas Dufresne
Principal Engineer at Collabora
prev parent reply other threads:[~2025-02-25 14:05 UTC|newest]
Thread overview: 31+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-02-25 9:40 [PATCH v7 00/12] media: rkvdec: Add H.264 High 10 and 4:2:2 profile support Sebastian Fricke
2025-02-25 9:40 ` [PATCH v7 01/12] media: v4l2-common: Add helpers to calculate bytesperline and sizeimage Sebastian Fricke
2025-02-25 12:51 ` Hans Verkuil
2025-02-25 9:40 ` [PATCH v7 02/12] media: v4l2: Add NV15 and NV20 pixel formats Sebastian Fricke
2025-02-25 9:40 ` [PATCH v7 03/12] media: rkvdec: h264: Use bytesperline and buffer height as virstride Sebastian Fricke
2025-02-25 9:40 ` [PATCH v7 04/12] media: rkvdec: h264: Don't hardcode SPS/PPS parameters Sebastian Fricke
2025-02-25 9:40 ` [PATCH v7 05/12] media: rkvdec: Extract rkvdec_fill_decoded_pixfmt into helper Sebastian Fricke
2025-02-25 9:40 ` [PATCH v7 06/12] media: rkvdec: Move rkvdec_reset_decoded_fmt helper Sebastian Fricke
2025-02-25 9:40 ` [PATCH v7 07/12] media: rkvdec: Extract decoded format enumeration into helper Sebastian Fricke
2025-02-25 9:40 ` [PATCH v7 08/12] media: rkvdec: Add image format concept Sebastian Fricke
2025-02-25 9:40 ` [PATCH v7 09/12] media: rkvdec: Add get_image_fmt ops Sebastian Fricke
2025-04-07 11:09 ` Hans Verkuil
2025-04-07 13:52 ` Nicolas Dufresne
2025-04-07 14:17 ` Hans Verkuil
2025-04-07 14:59 ` Nicolas Dufresne
2025-04-07 15:07 ` Jonas Karlman
2025-04-07 15:33 ` Jonas Karlman
2025-04-07 15:35 ` Nicolas Dufresne
2025-04-07 15:44 ` Jonas Karlman
2025-04-08 8:28 ` Hans Verkuil
2025-04-08 13:36 ` Nicolas Dufresne
2025-04-08 14:32 ` Hans Verkuil
2025-04-08 17:01 ` Jonas Karlman
2025-04-08 17:13 ` Nicolas Dufresne
2025-02-25 9:40 ` [PATCH v7 10/12] media: rkvdec: h264: Support High 10 and 4:2:2 profiles Sebastian Fricke
2025-02-25 9:40 ` [PATCH v7 11/12] media: rkvdec: h264: Limit minimum profile to constrained baseline Sebastian Fricke
2025-02-25 9:40 ` [PATCH v7 12/12] media: rkvdec: Fix frame size enumeration Sebastian Fricke
2025-02-25 12:40 ` [PATCH] fixup! media: v4l2-common: Add helpers to calculate bytesperline and sizeimage Sebastian Fricke
2025-02-25 12:46 ` Sebastian Fricke
2025-02-25 12:50 ` Hans Verkuil
2025-02-25 14:05 ` Nicolas Dufresne [this message]
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=808a9d14be9c8de25e2ba5232ee01f874acb66b6.camel@collabora.com \
--to=nicolas.dufresne@collabora.com \
--cc=benjamin.gaignard@collabora.com \
--cc=boris.brezillon@collabora.com \
--cc=dan.carpenter@linaro.org \
--cc=detlev.casanova@collabora.com \
--cc=ezequiel@vanguardiasur.com.ar \
--cc=gregkh@linuxfoundation.org \
--cc=hverkuil@xs4all.nl \
--cc=jonas@kwiboo.se \
--cc=knaerzche@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-media@vger.kernel.org \
--cc=linux-rockchip@lists.infradead.org \
--cc=linux-staging@lists.linux.dev \
--cc=mchehab+huawei@kernel.org \
--cc=mchehab@kernel.org \
--cc=sebastian.fricke@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