Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 103894
b: refs/heads/master
c: 50a871f
h: refs/heads/master
v: v3
  • Loading branch information
Jean-Francois Moine authored and Mauro Carvalho Chehab committed Jul 20, 2008
1 parent 6403fb9 commit 20f2804
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 7 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 6a7eba24e4f0ff725d33159f6265e3a79d53a833
refs/heads/master: 50a871fed9c82f01baa40100cd2d262784220953
7 changes: 5 additions & 2 deletions trunk/drivers/media/video/gspca/gspca.c
Original file line number Diff line number Diff line change
Expand Up @@ -316,6 +316,7 @@ static int gspca_is_compressed(__u32 format)
switch (format) {
case V4L2_PIX_FMT_MJPEG:
case V4L2_PIX_FMT_JPEG:
case V4L2_PIX_FMT_SPCA561:
return 1;
}
return 0;
Expand Down Expand Up @@ -369,12 +370,12 @@ static __u32 get_v4l2_depth(__u32 pixfmt)
case V4L2_PIX_FMT_YYUV: /* 'YYUV' */
return 16;
case V4L2_PIX_FMT_YUV420: /* 'YU12' planar 4.2.0 */
case V4L2_PIX_FMT_SPCA501: /* 'S501' YUYV per line */
return 12;
case V4L2_PIX_FMT_MJPEG:
case V4L2_PIX_FMT_JPEG:
case V4L2_PIX_FMT_SBGGR8: /* 'BA81' Bayer */
case V4L2_PIX_FMT_SN9C10X: /* 'S910' SN9C10x compression */
case V4L2_PIX_FMT_SPCA501: /* 'S501' YUYV per line */
case V4L2_PIX_FMT_SPCA561: /* 'S561' compressed BGGR bayer */
return 8;
}
Expand Down Expand Up @@ -913,8 +914,10 @@ static int vidioc_s_fmt_cap(struct file *file, void *priv,
goto out;
}

if (ret == gspca_dev->curr_mode)
if (ret == gspca_dev->curr_mode) {
ret = 0;
goto out; /* same mode */
}

if (gspca_dev->streaming) {
ret = -EBUSY;
Expand Down
10 changes: 6 additions & 4 deletions trunk/drivers/media/video/gspca/pac207.c
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@ static void pac207_do_auto_gain(struct gspca_dev *gspca_dev)
}

static unsigned char *pac207_find_sof(struct gspca_dev *gspca_dev,
unsigned char *m, int len)
unsigned char *m, int len)
{
struct sd *sd = (struct sd *) gspca_dev;
int i;
Expand All @@ -518,7 +518,9 @@ static unsigned char *pac207_find_sof(struct gspca_dev *gspca_dev,
}

static int pac207_decompress_row(struct gspca_dev *gspca_dev,
struct gspca_frame *f, unsigned char *cdata, int len)
struct gspca_frame *f,
__u8 *cdata,
int len)
{
struct sd *sd = (struct sd *) gspca_dev;
struct pac207_decoder_state *decoder_state = &sd->decoder_state;
Expand Down Expand Up @@ -667,10 +669,10 @@ static int pac207_decode_frame_data(struct gspca_dev *gspca_dev,
case LINE_HEADER2:
decoder_state->line_marker |= data[0];
switch (decoder_state->line_marker) {
case 0x0FF0:
case 0x0ff0:
decoder_state->line_state = LINE_UNCOMPRESSED;
break;
case 0x1EE1:
case 0x1ee1:
decoder_state->line_state = LINE_COMPRESSED;
break;
default:
Expand Down

0 comments on commit 20f2804

Please sign in to comment.