Commit d5fdd1354e04658ea25150cc152a395bb6ecb6da

Authored by Hartmut Hackmann
Committed by Mauro Carvalho Chehab
1 parent c526e224e4

V4L/DVB (4306): Support non interlaced capture by default for saa713x

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>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>

Showing 1 changed file with 2 additions and 2 deletions Side-by-side Diff

drivers/media/video/saa7134/saa7134-video.c
... ... @@ -40,7 +40,7 @@
40 40  
41 41 static unsigned int video_debug = 0;
42 42 static unsigned int gbuffers = 8;
43   -static unsigned int noninterlaced = 0;
  43 +static unsigned int noninterlaced = 1;
44 44 static unsigned int gbufsize = 720*576*4;
45 45 static unsigned int gbufsize_max = 720*576*4;
46 46 module_param(video_debug, int, 0644);
... ... @@ -48,7 +48,7 @@
48 48 module_param(gbuffers, int, 0444);
49 49 MODULE_PARM_DESC(gbuffers,"number of capture buffers, range 2-32");
50 50 module_param(noninterlaced, int, 0644);
51   -MODULE_PARM_DESC(noninterlaced,"video input is noninterlaced");
  51 +MODULE_PARM_DESC(noninterlaced,"capture non interlaced video");
52 52  
53 53 #define dprintk(fmt, arg...) if (video_debug) \
54 54 printk(KERN_DEBUG "%s/video: " fmt, dev->name , ## arg)