Fix broken capabilities, causing failure during channel reset.

Its min/max speed were off by -/+ 1000.

Reported by:	[1] Ion-Mihai Tetcu <itetcu@people.tecnik93.com>
            	[2] barner
MFC after:	1 day

[1] http://lists.freebsd.org/mailman/htdig/freebsd-multimedia/2005-December/003189.html
[2] http://lists.freebsd.org/mailman/htdig/freebsd-multimedia/2006-January/003422.html
This commit is contained in:
Ariff Abdullah
2006-01-04 15:35:55 +00:00
parent 154508976b
commit 1333b4a431
+2 -2
View File
@@ -55,7 +55,7 @@ static u_int32_t ess_playfmt[] = {
AFMT_STEREO | AFMT_U16_LE,
0
};
static struct pcmchan_caps ess_playcaps = {5000, 49000, ess_playfmt, 0};
static struct pcmchan_caps ess_playcaps = {6000, 48000, ess_playfmt, 0};
/*
* Recording output is byte-swapped
@@ -71,7 +71,7 @@ static u_int32_t ess_recfmt[] = {
AFMT_STEREO | AFMT_U16_BE,
0
};
static struct pcmchan_caps ess_reccaps = {5000, 49000, ess_recfmt, 0};
static struct pcmchan_caps ess_reccaps = {6000, 48000, ess_recfmt, 0};
struct ess_info;