To retrieve the capabilities of a capture device, call the IDirectSoundCapture::GetCaps method. The argument to this method is a DSCCAPS structure. As with other such structures, you have to initialize the dwSize member before passing it as an argument.
On return, the structure contains the number of channels the device supports as well as a combination of values for supported formats, equivalent to the values in the WAVEINCAPS structure used in the Win32 waveform audio functions. These are reproduced here for convenience.
Value | Meaning |
---|---|
WAVE_FORMAT_1M08 | 11.025 kHz, mono, 8-bit |
WAVE_FORMAT_1M16 | 11.025 kHz, mono, 16-bit |
WAVE_FORMAT_1S08 | 11.025 kHz, stereo, 8-bit |
WAVE_FORMAT_1S16 | 11.025 kHz, stereo, 16-bit |
WAVE_FORMAT_2M08 | 22.05 kHz, mono, 8-bit |
WAVE_FORMAT_2M16 | 22.05 kHz, mono, 16-bit |
WAVE_FORMAT_2S08 | 22.05 kHz, stereo, 8-bit |
WAVE_FORMAT_2S16 | 22.05 kHz, stereo, 16-bit |
WAVE_FORMAT_4M08 | 44.1 kHz, mono, 8-bit |
WAVE_FORMAT_4M16 | 44.1 kHz, mono, 16-bit |
WAVE_FORMAT_4S08 | 44.1 kHz, stereo, 8-bit |
WAVE_FORMAT_4S16 | 44.1 kHz, stereo, 16-bit |