The header check/removal code at the end of function em28xx_urb_data_copy_vbi()
is obsolete, because this is already done earlier in this function.
In fact it is incomplete (doesn't check for vbi header) and causes trouble
when the first data bytes are the same as header bytes (which is fortunately
very unlikely).

Signed-off-by: Frank Schäfer <fschaefer....@googlemail.com>
---
 drivers/media/usb/em28xx/em28xx-video.c |   20 ++------------------
 1 Datei geändert, 2 Zeilen hinzugefügt(+), 18 Zeilen entfernt(-)

diff --git a/drivers/media/usb/em28xx/em28xx-video.c 
b/drivers/media/usb/em28xx/em28xx-video.c
index 4ec54fd..7994d17 100644
--- a/drivers/media/usb/em28xx/em28xx-video.c
+++ b/drivers/media/usb/em28xx/em28xx-video.c
@@ -678,24 +678,8 @@ static inline int em28xx_urb_data_copy_vbi(struct em28xx 
*dev, struct urb *urb)
                        dma_q->pos = 0;
                }
 
-               if (buf != NULL && dev->capture_type == 2) {
-                       if (len >= 4 && p[0] == 0x88 && p[1] == 0x88 &&
-                           p[2] == 0x88 && p[3] == 0x88) {
-                               p += 4;
-                               len -= 4;
-                       }
-                       if (len >= 4 && p[0] == 0x22 && p[1] == 0x5a) {
-                               em28xx_usbdbg("Video frame %d, len=%i, %s\n",
-                                              p[2], len, (p[2] & 1) ?
-                                              "odd" : "even");
-                               p += 4;
-                               len -= 4;
-                       }
-
-                       if (len > 0)
-                               em28xx_copy_video(dev, dma_q, buf, p, outp,
-                                                 len);
-               }
+               if (buf != NULL && dev->capture_type == 2 && len > 0)
+                       em28xx_copy_video(dev, dma_q, buf, p, outp, len);
        }
        return rc;
 }
-- 
1.7.10.4

--
To unsubscribe from this list: send the line "unsubscribe linux-media" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to