Es ist diese.. und sie wird überschrieben wenn ein neues Control erstellt wird.
Unregistriert und neu registriert für das aktuelle Device.
Delphi-Quellcode:
// Get default audio endpoint device with the specified data-flow direction (eRender or eCapture)
// and device role.
HR := Device_Enumerator.GetDefaultAudioEndpoint(eRender, eMultimedia, MDevice);
if HR <> S_OK
then
raise Exception.Create('
Error : Unable to get DefaultAudioEndpoint Device');
Larry sagt im verlinkten SO-Post:
Zitat:
You should also use the eConsole role instead of the eMultimedia role. It doesn't effectively matter (if you have only one audio device) but it's more correct
Halte dir testhalber mal die Instanzen von Device, SessionManager2 und SessionEnumerator in einer oder mehreren Listen. Siehe Beispielprogramm.
Vielleicht geht es dann.