以下是 IAudioEndpointFormatControl 接口的主要方法:
1. GetFormat:
HRESULT GetFormat(
WAVEFORMATEX **ppFormat
);
2. SetFormat:
HRESULT SetFormat(
WAVEFORMATEX *pEndpointFormat,
LPCGUID EventContext
);
IAudioEndpointFormatControl 接口通常与音频渲染或捕获设备的配置和控制相关。使用这个接口,你可以查询和修改音频终端的格式,以满足应用程序的特定需求。
转载请注明出处:http://www.zyzy.cn/article/detail/23906/Win32 API/Audioendpoints.h/IAudioEndpointFormatControl