Skip to content

Commit

Permalink
V4L/DVB: saa7134 can capture 720x480 when capturing NTSC
Browse files Browse the repository at this point in the history
When capturing NTSC, the saa7134 can capture 720x480.

While doing Laserdisc captures using this card, I noticed that right side
was truncated/cropped. The highest geometry the driver allows is 704x480,
even though in Windows XP it is 720x480. This results in no cropping
and the same results as in Windows.

Tested on an AverMedia GO 007 FM Plus.

Signed-off-by: Sean Young <sean@mess.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
  • Loading branch information
Sean Young authored and Mauro Carvalho Chehab committed Feb 26, 2010
1 parent fad93fd commit dd6ed86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/media/video/saa7134/saa7134-video.c
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ static struct saa7134_format formats[] = {

#define NORM_525_60 \
.h_start = 0, \
.h_stop = 703, \
.h_stop = 719, \
.video_v_start = 23, \
.video_v_stop = 262, \
.vbi_v_start_0 = 10, \
Expand Down

0 comments on commit dd6ed86

Please sign in to comment.