diff options
author | Robert Nagy <robert@cvs.openbsd.org> | 2008-06-07 19:26:26 +0000 |
---|---|---|
committer | Robert Nagy <robert@cvs.openbsd.org> | 2008-06-07 19:26:26 +0000 |
commit | ca0e47a3676416c8fad1d4625e3a2fc69739b0a8 (patch) | |
tree | cfe16a72edc4309e5cb099c979d9d2522f2c4531 /sys | |
parent | a7e30bda1c15a6c6b31c9f46ab91bd6e4730ea40 (diff) |
double the static video buffer size, because
the current one is not going to be enough for
some cams
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/video_if.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/video_if.h b/sys/dev/video_if.h index 492ae2d96e9..7ad280185f8 100644 --- a/sys/dev/video_if.h +++ b/sys/dev/video_if.h @@ -1,4 +1,4 @@ -/* $OpenBSD: video_if.h,v 1.6 2008/06/05 20:50:28 mglocker Exp $ */ +/* $OpenBSD: video_if.h,v 1.7 2008/06/07 19:26:25 robert Exp $ */ /* * Copyright (c) 2008 Robert Nagy <robert@openbsd.org> * @@ -23,7 +23,7 @@ */ #define VIDEOUNIT(x) (minor(x)) -#define VIDEO_BUF_SIZE 65536 +#define VIDEO_BUF_SIZE 131072 struct video_hw_if { /* open hardware */ |