From: Stefan Ringel <stefan.ringel@arcor.de>
To: Linux Media Mailing List <linux-media@vger.kernel.org>
Cc: Mauro Carvalho Chehab <mchehab@redhat.com>
Subject: tm6000 and losing blocks
Date: Wed, 30 Jun 2010 21:57:16 +0200 [thread overview]
Message-ID: <4C2BA19C.9080708@arcor.de> (raw)
Hi Mauro,
I have tested your patch, but that logic to detect the end of urb is wrong. Many blocks going to lost.
byte 0x47 can 2 different state:
1. sync byte
2. data byte
Your logic has that problem, that if receive the new urb and search the new sync byte, the first 0x47 will use and
that are not always the sync byte.
>From: Mauro Carvalho Chehab <mchehab@redhat.com>
>Date: Mon, 7 Jun 2010 15:10:14 +0000 (-0300)
>Subject: tm6000: Fix copybuf continue logic
>X-Git-Url: http://git.linuxtv.org/v4l-dvb.git?a=commitdiff_plain;h=dcdc55b917681378f84e6db26dcd56931ae2f1c8
>
>tm6000: Fix copybuf continue logic
>Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
>---
>
>diff --git a/drivers/staging/tm6000/tm6000-video.c b/drivers/staging/tm6000/tm6000-video.c
>index 6bf2b13..9a0b5a7 100644
>--- a/drivers/staging/tm6000/tm6000-video.c
>+++ b/drivers/staging/tm6000/tm6000-video.c
>@@ -285,7 +285,7 @@ static int copy_streams(u8 *data, unsigned long len,
> break;
> case TM6000_URB_MSG_AUDIO:
> case TM6000_URB_MSG_PTS:
>- cpysize = pktsize; /* Size is always 180 bytes */
>+ size = pktsize; /* Size is always 180 bytes */
> break;
> }
> } else {
>@@ -315,7 +315,7 @@ static int copy_streams(u8 *data, unsigned long len,
> break;
> }
> }
>- if (ptr + pktsize > endp) {
>+ if (cpysize < size) {
> /* End of URB packet, but cmd processing is not
> * complete. Preserve the state for a next packet
> */
I think that is wrong
>@@ -323,7 +323,7 @@ static int copy_streams(u8 *data, unsigned long len,
> dev->isoc_ctl.size = size - cpysize;
> dev->isoc_ctl.cmd = cmd;
> dev->isoc_ctl.pktsize = pktsize - (endp - ptr);
>- ptr += endp - ptr;
>+ ptr += cpysize;
> } else {
> dev->isoc_ctl.cmd = 0;
> ptr += pktsize;
dito
Stefan Ringel
--
Stefan Ringel <stefan.ringel@arcor.de>
next reply other threads:[~2010-06-30 19:57 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-06-30 19:57 Stefan Ringel [this message]
2010-06-30 20:22 ` tm6000 and losing blocks Mauro Carvalho Chehab
2010-06-30 21:30 ` Stefan Ringel
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=4C2BA19C.9080708@arcor.de \
--to=stefan.ringel@arcor.de \
--cc=linux-media@vger.kernel.org \
--cc=mchehab@redhat.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.