我想在扬声器功能中静音麦克风。
我的应用程序是用c ++编写的。
我知道如何使用IMMDevice *设备调整/静音扬声器音量
IAudioEndpointVolume *endpointVolume = NULL;
HRESULT hr = CoInitializeEx(NULL, COINIT_APARTMENTTHREADED);
hr = device->Activate( __uuidof(IAudioEndpointVolume), CLSCTX_INPROC_SERVER, NULL, reinterpret_cast<void **>(&endpointVolume) );
float volume=0.3;
hr=endpointVolume->SetMasterVolumeLevelScalar(volume,NULL);
hr= endpointVolume->SetMute(TRUE, NULL);
如何将麦克风静音?