Skip to content

Commit

Permalink
V4L/DVB (13182): gspca w9968cf: slight tweak to vstart and hstart
Browse files Browse the repository at this point in the history
gspca w9968cf: slight tweak to vstart and hstart to get rid of black borders
in 640x480 mode.

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
  • Loading branch information
Hans de Goede authored and Mauro Carvalho Chehab committed Dec 5, 2009
1 parent 79b3590 commit 7399787
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions drivers/media/video/gspca/w996Xcf.c
Original file line number Diff line number Diff line change
Expand Up @@ -442,11 +442,11 @@ static int w9968cf_set_crop_window(struct sd *sd)
/* Sigh, this is dependend on the clock / framerate changes
made by the frequency control, sick. */
if (sd->freq == 1) {
start_cropx = 279;
start_cropy = 35;
start_cropx = 277;
start_cropy = 37;
} else {
start_cropx = 103;
start_cropy = 35;
start_cropx = 105;
start_cropy = 37;
}
} else {
start_cropx = 320;
Expand Down

0 comments on commit 7399787

Please sign in to comment.