diff options
author | Hans Verkuil <hverkuil@xs4all.nl> | 2009-02-18 22:33:35 +0100 |
---|---|---|
committer | Hans Verkuil <hverkuil@xs4all.nl> | 2009-02-18 22:33:35 +0100 |
commit | a9e2b393853fab732f68350caf74d3f8057ed8f1 (patch) | |
tree | e42ff8819a07f6633e54600314c94bb0532d4ba8 /linux | |
parent | 5ac82a7507d0e50ce9a90a524c6d2d410c1de604 (diff) | |
download | mediapointer-dvb-s2-a9e2b393853fab732f68350caf74d3f8057ed8f1.tar.gz mediapointer-dvb-s2-a9e2b393853fab732f68350caf74d3f8057ed8f1.tar.bz2 |
zoran: change buffer defaults to something that works with tvtime
From: Hans Verkuil <hverkuil@xs4all.nl>
By popular request increased the default number and size of the buffers
to something that tvtime likes.
Priority: normal
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Diffstat (limited to 'linux')
-rw-r--r-- | linux/drivers/media/video/zoran/zoran_card.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linux/drivers/media/video/zoran/zoran_card.c b/linux/drivers/media/video/zoran/zoran_card.c index 17c3aaffd..37f75045f 100644 --- a/linux/drivers/media/video/zoran/zoran_card.c +++ b/linux/drivers/media/video/zoran/zoran_card.c @@ -126,8 +126,8 @@ MODULE_PARM_DESC(video_nr, "Video device number (-1=Auto)"); */ -int v4l_nbufs = 2; -int v4l_bufsize = 128; /* Everybody should be able to work with this setting */ +int v4l_nbufs = 4; +int v4l_bufsize = 810; /* Everybody should be able to work with this setting */ module_param(v4l_nbufs, int, 0644); MODULE_PARM_DESC(v4l_nbufs, "Maximum number of V4L buffers to use"); module_param(v4l_bufsize, int, 0644); |