diff options
author | ariff <ariff@FreeBSD.org> | 2006-02-18 10:23:37 +0000 |
---|---|---|
committer | ariff <ariff@FreeBSD.org> | 2006-02-18 10:23:37 +0000 |
commit | 8c27b94bed240dbd9276f9ec747d59d076bab785 (patch) | |
tree | 1c42be971b540b4e9a19f270db95736e6b9a8807 /sys/dev/sound/pci/atiixp.h | |
parent | fe67232768ed3442a4ab09543f9149366191c34c (diff) | |
download | FreeBSD-src-8c27b94bed240dbd9276f9ec747d59d076bab785.zip FreeBSD-src-8c27b94bed240dbd9276f9ec747d59d076bab785.tar.gz |
Fix random popping while playing in 32bit by increasing default buffer size
from 4096 to 8192.
MFC after: 1 week
Diffstat (limited to 'sys/dev/sound/pci/atiixp.h')
-rw-r--r-- | sys/dev/sound/pci/atiixp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/sound/pci/atiixp.h b/sys/dev/sound/pci/atiixp.h index 95af41c..66753ac 100644 --- a/sys/dev/sound/pci/atiixp.h +++ b/sys/dev/sound/pci/atiixp.h @@ -46,7 +46,7 @@ #define ATI_IXP_DMA_CHSEGS_MIN 2 #define ATI_IXP_DMA_CHSEGS_MAX 256 -#define ATI_IXP_DEFAULT_BUFSZ (1 << 12) /* 4096 */ +#define ATI_IXP_DEFAULT_BUFSZ (1 << 13) /* 8192 */ #define ATI_VENDOR_ID 0x1002 /* ATI Technologies */ #define ATI_IXP_200_ID 0x4341 |