diff options
author | Johannes Stezenbach <devnull@localhost> | 2004-03-02 01:11:30 +0000 |
---|---|---|
committer | Johannes Stezenbach <devnull@localhost> | 2004-03-02 01:11:30 +0000 |
commit | 442aa70a0630c9287040eea68427c5c0f06edee6 (patch) | |
tree | dc6e7b63ac404f47ca83b3d0c5567ae54548dc4f /linux/drivers/media/dvb/ttpci/av7110_v4l.c | |
parent | d093d4d92567c7c4319b160f8f5af5460ec00a85 (diff) | |
download | mediapointer-dvb-s2-442aa70a0630c9287040eea68427c5c0f06edee6.tar.gz mediapointer-dvb-s2-442aa70a0630c9287040eea68427c5c0f06edee6.tar.bz2 |
correct scaler settings to remove 1 pixel white line visible on the right
in xawtv fullscreen mode on my TFT
Diffstat (limited to 'linux/drivers/media/dvb/ttpci/av7110_v4l.c')
-rw-r--r-- | linux/drivers/media/dvb/ttpci/av7110_v4l.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/linux/drivers/media/dvb/ttpci/av7110_v4l.c b/linux/drivers/media/dvb/ttpci/av7110_v4l.c index 946f4404f..597c46ea9 100644 --- a/linux/drivers/media/dvb/ttpci/av7110_v4l.c +++ b/linux/drivers/media/dvb/ttpci/av7110_v4l.c @@ -625,12 +625,12 @@ static struct saa7146_standard standard[] = { { .name = "PAL", .id = V4L2_STD_PAL_BG, .v_offset = 0x15, .v_field = 288, .v_calc = 576, - .h_offset = 0x4a, .h_pixels = 708, .h_calc = 709, + .h_offset = 0x48, .h_pixels = 708, .h_calc = 708, .v_max_out = 576, .h_max_out = 768, }, { .name = "NTSC", .id = V4L2_STD_NTSC, .v_offset = 0x10, .v_field = 244, .v_calc = 480, - .h_offset = 0x40, .h_pixels = 708, .h_calc = 709, + .h_offset = 0x40, .h_pixels = 708, .h_calc = 708, .v_max_out = 480, .h_max_out = 640, } }; @@ -639,12 +639,12 @@ static struct saa7146_standard analog_standard[] = { { .name = "PAL", .id = V4L2_STD_PAL_BG, .v_offset = 0x1b, .v_field = 288, .v_calc = 576, - .h_offset = 0x08, .h_pixels = 708, .h_calc = 709, + .h_offset = 0x08, .h_pixels = 708, .h_calc = 708, .v_max_out = 576, .h_max_out = 768, }, { .name = "NTSC", .id = V4L2_STD_NTSC, .v_offset = 0x10, .v_field = 244, .v_calc = 480, - .h_offset = 0x40, .h_pixels = 708, .h_calc = 709, + .h_offset = 0x40, .h_pixels = 708, .h_calc = 708, .v_max_out = 480, .h_max_out = 640, } }; @@ -653,12 +653,12 @@ static struct saa7146_standard dvb_standard[] = { { .name = "PAL", .id = V4L2_STD_PAL_BG, .v_offset = 0x14, .v_field = 288, .v_calc = 576, - .h_offset = 0x4a, .h_pixels = 708, .h_calc = 709, + .h_offset = 0x48, .h_pixels = 708, .h_calc = 708, .v_max_out = 576, .h_max_out = 768, }, { .name = "NTSC", .id = V4L2_STD_NTSC, .v_offset = 0x10, .v_field = 244, .v_calc = 480, - .h_offset = 0x40, .h_pixels = 708, .h_calc = 709, + .h_offset = 0x40, .h_pixels = 708, .h_calc = 708, .v_max_out = 480, .h_max_out = 640, } }; |