Skip to content

Commit

Permalink
V4L/DVB (10716): zoran: change buffer defaults to something that work…
Browse files Browse the repository at this point in the history
…s with tvtime

By popular request increased the default number and size of the buffers
to something that tvtime likes.

Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
  • Loading branch information
Hans Verkuil authored and Mauro Carvalho Chehab committed Mar 30, 2009
1 parent 602dd48 commit 497d7d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/media/video/zoran/zoran_card.c
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,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);
Expand Down

0 comments on commit 497d7d0

Please sign in to comment.