up vote 2 down vote favorite
2
share [g+] share [fb]

I have been using waveInGetDevCaps to get the name of waveIn devices, but the WAVEINCAPS structure only supports 31 characters plus a null, meaning that on my computer, the device names I get back are truncated:

Microphone / Line In (SigmaTel 
Microphone Array (SigmaTel High,

I am sure that there must be a way of getting the full device name, but does anyone know what that is?

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

Yes, there's a workaround. I've solved this problem several times in shipping code.

Enumerate audio capture devices with DirectSoundCapture. The API is DirectSoundCaptureEnumerate. It will return you the full length name of the devices.

Of course, you're probably thinking "That's great, but the rest of my code is setup to use the Wave API, not DirectSound. I don't want to switch it all over. So how can I map the GUID IDs returned by DirectSoundCaptureEnumerate to the integer IDs used by the WaveIn API?"

The solution is to CoCreateInstance for the DirectSoundPrivate object (or call GetClassObject directly from dsound.dll) to get a pointer to an IKsPropertySet interface. From this interface, you can obtain the DSound GUID to Wave ID mapping. For more details see this web page:

http://msdn.microsoft.com/en-us/library/bb206182(VS.85).aspx

You want to use the DSPROPERTY_DIRECTSOUNDDEVICE_WAVEDEVICEMAPPING as described on the web page listed above.

link|improve this answer
thanks, this is really helpful (although shame it has to be so convoluted) – Mark Heath Sep 20 '09 at 12:48
that link seems to be broken. do you have another link or at least the title of the article on msdn? – Padu Merloti Dec 17 '09 at 22:55
feedback

Looks like DirectSoundPrivate have some issues. I trying to access it from empty project and it works fine. However when I trying to access it from COM DLL or from DLL thread it returns E_NOTIMPL error from IKsPropertySet::Get.

But I figured out another trick. Seems DirectSound enumerates capture and render devices in wave id order (excluding first default).

We still have to interact with old Wave API and it is lack there still no proper way to do that. DirectShow provides audio input devices based on WaveIn and I need to get corresponding WASAPI id and vice versa.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.