Commit 7bd78fe5 authored by Robert Reif's avatar Robert Reif Committed by Alexandre Julliard

Treat WAVE_MAPPER as a real device and performs all tests on it.

Added 16000Hz because win9x hardware spec requires it.
parent a7e8f6f3
......@@ -32,6 +32,10 @@ static const unsigned int win_formats[][4] = {
{0, 8000, 8, 2},
{0, 8000, 16, 1},
{0, 8000, 16, 2},
{0, 16000, 8, 1},
{0, 16000, 8, 2},
{0, 16000, 16, 1},
{0, 16000, 16, 2},
{0, 12000, 16, 2},
{WAVE_FORMAT_1M08, 11025, 8, 1},
{WAVE_FORMAT_1S08, 11025, 8, 2},
......@@ -56,5 +60,6 @@ static const unsigned int win_formats[][4] = {
};
#define NB_WIN_FORMATS (sizeof(win_formats)/sizeof(*win_formats))
extern const char* dev_name(int);
extern const char* wave_open_flags(DWORD);
extern const char* mmsys_error(MMRESULT);
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment