public inbox for linux-media@vger.kernel.org
 help / color / mirror / Atom feed
From: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
To: Ricardo Ribalda <ribalda@chromium.org>
Cc: Hans de Goede <hansg@kernel.org>,
	Mauro Carvalho Chehab <mchehab@kernel.org>,
	linux-media@vger.kernel.org, linux-kernel@vger.kernel.org,
	Yunke Cao <yunkec@google.com>,
	stable@kernel.org
Subject: Re: [PATCH] media: uvcvideo: Fix buffer sequence in frame gaps
Date: Fri, 13 Mar 2026 17:51:05 +0100	[thread overview]
Message-ID: <20260313165105.GE275549@killaraus.ideasonboard.com> (raw)
In-Reply-To: <20260310-uvc-fid-v1-1-5e37dc3c7024@chromium.org>

On Tue, Mar 10, 2026 at 11:54:24AM +0000, Ricardo Ribalda wrote:
> In UVC, the FID flips with every frame. For every FID flip, we increase
> the sequence number. Userpace use that information to figure out if
> there has been a gap between frames.
> 
> Now, we only update the sequence number on the first FID flip, which
> results in frames being incorrectly numbered just after a frame gap.

The sequence number is increased on every FID flip. I assume you mean
that we don't set the buffer sequence number in some cases. "on the
first FID flip" doesn't seem right. Could you please improve the commit
message to describe more clearly what the problem is ?

> This patch rewrites the sequence number of the buffer in those
> situations.
> 
> Cc: stable@kernel.org
> Fixes: 650b95feee35 ("[media] uvcvideo: Generate discontinuous sequence numbers when frames are lost")
> Signed-off-by: Ricardo Ribalda <ribalda@chromium.org>
> ---
>  drivers/media/usb/uvc/uvc_video.c | 8 ++++++++
>  1 file changed, 8 insertions(+)
> 
> diff --git a/drivers/media/usb/uvc/uvc_video.c b/drivers/media/usb/uvc/uvc_video.c
> index 40c76c051da2..ec769a504569 100644
> --- a/drivers/media/usb/uvc/uvc_video.c
> +++ b/drivers/media/usb/uvc/uvc_video.c
> @@ -1176,6 +1176,14 @@ static int uvc_video_decode_start(struct uvc_streaming *stream,
>  		stream->sequence++;
>  		if (stream->sequence)
>  			uvc_video_stats_update(stream);
> +
> +		/*
> +		 * If we have not received any data and FID flips, update the
> +		 * sequence number of the buffer to tell userspace exactly
> +		 * where the frame gap is.
> +		 */
> +		if (buf && !buf->bytesused)
> +			buf->buf.sequence = stream->sequence;

Do we still need to set buf->buf.sequence below ? And how about the
buffer timestamp, isn't it also not set in the case that this patch
addresses ?

>  	}
>  
>  	uvc_video_clock_decode(stream, buf, data, len);
> 
> ---
> base-commit: a7da7fb57f2a787412da1a62292a17fa00fbfbdf
> change-id: 20260310-uvc-fid-e1e55447b6f1

-- 
Regards,

Laurent Pinchart

  reply	other threads:[~2026-03-13 16:51 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-03-10 11:54 [PATCH] media: uvcvideo: Fix buffer sequence in frame gaps Ricardo Ribalda
2026-03-13 16:51 ` Laurent Pinchart [this message]
2026-03-13 18:16   ` Ricardo Ribalda

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=20260313165105.GE275549@killaraus.ideasonboard.com \
    --to=laurent.pinchart@ideasonboard.com \
    --cc=hansg@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-media@vger.kernel.org \
    --cc=mchehab@kernel.org \
    --cc=ribalda@chromium.org \
    --cc=stable@kernel.org \
    --cc=yunkec@google.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