diff options
author | Hartmut Hackmann <hartmut.hackmann@t-online.de> | 2006-07-15 09:45:34 -0300 |
---|---|---|
committer | Hartmut Hackmann <hartmut.hackmann@t-online.de> | 2006-07-15 09:45:34 -0300 |
commit | dd0759fd0631b8f124ad0a54dc0193781d7d82e0 (patch) | |
tree | 6ffb9e73ac648103c233a1c2ecef904faf5e0874 /linux/drivers | |
parent | 7101d7659d1b2373fc9876158a14302e879207ee (diff) | |
download | mediapointer-dvb-s2-dd0759fd0631b8f124ad0a54dc0193781d7d82e0.tar.gz mediapointer-dvb-s2-dd0759fd0631b8f124ad0a54dc0193781d7d82e0.tar.bz2 |
Support non interlaced capture by default for saa713x
From: Hartmut Hackmann <hartmut.hackmann@t-online.de>
This patch just sets the option noninterlaced to 1 by default since
it has no known disadvantages. It is still possibe to get the old
behaviour by setting noninterlaced=0.
Signed-off-by: Hartmut Hackmann <hartmut.hackmann@t-online.de>
Diffstat (limited to 'linux/drivers')
-rw-r--r-- | linux/drivers/media/video/saa7134/saa7134-video.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linux/drivers/media/video/saa7134/saa7134-video.c b/linux/drivers/media/video/saa7134/saa7134-video.c index 165d0afe2..efebdb54d 100644 --- a/linux/drivers/media/video/saa7134/saa7134-video.c +++ b/linux/drivers/media/video/saa7134/saa7134-video.c @@ -41,7 +41,7 @@ static unsigned int video_debug = 0; static unsigned int gbuffers = 8; -static unsigned int noninterlaced = 0; +static unsigned int noninterlaced = 1; static unsigned int gbufsize = 720*576*4; static unsigned int gbufsize_max = 720*576*4; module_param(video_debug, int, 0644); @@ -49,7 +49,7 @@ MODULE_PARM_DESC(video_debug,"enable debug messages [video]"); module_param(gbuffers, int, 0444); MODULE_PARM_DESC(gbuffers,"number of capture buffers, range 2-32"); module_param(noninterlaced, int, 0644); -MODULE_PARM_DESC(noninterlaced,"video input is noninterlaced"); +MODULE_PARM_DESC(noninterlaced,"capture non interlaced video"); #define dprintk(fmt, arg...) if (video_debug) \ printk(KERN_DEBUG "%s/video: " fmt, dev->name , ## arg) |