summaryrefslogtreecommitdiffstats
path: root/drivers/media
diff options
context:
space:
mode:
authorJean-François Moine2011-01-24 20:31:58 +0100
committerMauro Carvalho Chehab2011-01-31 15:05:48 +0100
commita5ecdfb3dab0ed55ca72fb5ad73657baf2af2fa0 (patch)
tree190c72a0abbf2b33ed51d601fdf983764c2b4e0f /drivers/media
parent[media] gspca - zc3xx: Fix bad images with the sensor hv7131r (diff)
downloadkernel-qcow2-linux-a5ecdfb3dab0ed55ca72fb5ad73657baf2af2fa0.tar.gz
kernel-qcow2-linux-a5ecdfb3dab0ed55ca72fb5ad73657baf2af2fa0.tar.xz
kernel-qcow2-linux-a5ecdfb3dab0ed55ca72fb5ad73657baf2af2fa0.zip
[media] gspca - zc3xx: Discard the partial frames
In some cases, some frames may not end with the JPEG end of frame. Being not complete, they are now discarded. Signed-off-by: Jean-François Moine <moinejf@free.fr> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media')
-rw-r--r--drivers/media/video/gspca/zc3xx.c12
1 files changed, 10 insertions, 2 deletions
diff --git a/drivers/media/video/gspca/zc3xx.c b/drivers/media/video/gspca/zc3xx.c
index cf65fb36e88f..47236a58bf33 100644
--- a/drivers/media/video/gspca/zc3xx.c
+++ b/drivers/media/video/gspca/zc3xx.c
@@ -6821,9 +6821,17 @@ static void sd_pkt_scan(struct gspca_dev *gspca_dev,
{
struct sd *sd = (struct sd *) gspca_dev;
- if (data[0] == 0xff && data[1] == 0xd8) { /* start of frame */
+ /* check the JPEG end of frame */
+ if (len >= 3
+ && data[len - 3] == 0xff && data[len - 2] == 0xd9) {
+/*fixme: what does the last byte mean?*/
gspca_frame_add(gspca_dev, LAST_PACKET,
- NULL, 0);
+ data, len - 1);
+ return;
+ }
+
+ /* check the JPEG start of a frame */
+ if (data[0] == 0xff && data[1] == 0xd8) {
/* put the JPEG header in the new frame */
gspca_frame_add(gspca_dev, FIRST_PACKET,
sd->jpeg_hdr, JPEG_HDR_SZ);