我正在尝试使用 CoreAudio API 编写一个监听器,以便在更改默认音频输出时(例如:插入耳机插孔)。我找到了示例代码,虽然有点旧并且使用了不推荐使用的函数(http://developer.apple.com/mac/library/samplecode/AudioDeviceNotify/Introduction/Intro.html,但它不起作用。重新编写代码以“正确”的方式使用 AudioHardwareAddPropertyListener 方法,但它似乎仍然不起作用。当我插入耳机时,我注册的功能没有被触发。我在这里有点失落......我怀疑问题可能出在其他地方,但我不知道在哪里......

监听器注册码:

OSStatus err = noErr;
AudioObjectPropertyAddress audioDevicesAddress = { kAudioHardwarePropertyDefaultOutputDevice, KAudioObjectPropertyScopeGlobal, KAudioObjectPropertyElementMaster };
err = AudioObjectAddPropertyListener ( KAudioObjectAudioSystemObject, &AudioDevicesAddress, coreaudio_property_listener, NULL);
if (err) trace ("error on AudioObjectAddPropertyListener");

最佳答案

在 sourceforge 中搜索使用 CoreAudio API 的项目后,我找到了 rtaudio 项目,更重要的是这些行:

// This is a largely undocumented but absolutely necessary
// requirement starting with OS-X 10.6.  If not called, queries and
// updates to various audio device properties are not handled
// correctly.

CFRunLoopRef theRunLoop = NULL;
AudioObjectPropertyAddress property = { kAudioHardwarePropertyRunLoop,
                                    kAudioObjectPropertyScopeGlobal,
                                    kAudioObjectPropertyElementMaster };
OSStatus result = AudioObjectSetPropertyData( kAudioObjectSystemObject, &property, 0, NULL, sizeof(CFRunLoopRef), &theRunLoop);
if ( result != noErr ) {
errorText_ = "RtApiCore::RtApiCore: error setting run loop property!";
error( RtError::WARNING );
}

添加此代码后,我什至不需要自己注册监听器。

关于audio - 默认音频输出 - 获取设备更改通知? (CoreAudio, Mac OS X, AudioHardwareAddPropertyListener),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/9674666/

10-11 23:02