diff options
author | Alexandre Ratchov <ratchov@cvs.openbsd.org> | 2019-07-28 09:44:11 +0000 |
---|---|---|
committer | Alexandre Ratchov <ratchov@cvs.openbsd.org> | 2019-07-28 09:44:11 +0000 |
commit | bd82f9aed5e8d24e41205be11ed688389a5d0272 (patch) | |
tree | 6932b86d72558be8342cf1996f7b9b13188e7a50 /usr.bin/aucat | |
parent | e9a2313065c7bdc00d0dc9bc2a59333cc3c7854b (diff) |
16 channels is not enough to handle all common uaudio(4) devices, so
crank the maximum channels number to 64.
Diffstat (limited to 'usr.bin/aucat')
-rw-r--r-- | usr.bin/aucat/defs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/aucat/defs.h b/usr.bin/aucat/defs.h index ec0a02888fe..2f68324b131 100644 --- a/usr.bin/aucat/defs.h +++ b/usr.bin/aucat/defs.h @@ -1,4 +1,4 @@ -/* $OpenBSD: defs.h,v 1.2 2016/05/31 17:28:10 ratchov Exp $ */ +/* $OpenBSD: defs.h,v 1.3 2019/07/28 09:44:10 ratchov Exp $ */ /* * Copyright (c) 2008-2012 Alexandre Ratchov <alex@caoua.org> * @@ -20,7 +20,7 @@ /* * limits */ -#define NCHAN_MAX 16 /* max channel in a stream */ +#define NCHAN_MAX 64 /* max channel in a stream */ #define RATE_MIN 4000 /* min sample rate */ #define RATE_MAX 192000 /* max sample rate */ #define BITS_MIN 1 /* min bits per sample */ |