我正在处理一个应用程序。应用程序的范围是通过蓝牙麦克风输入音频,输出音频应该转到iPhone Native Jack。我正在使用AVAudioSesion
类使用以下代码: -
UInt32 allowBluetoothInput = 1;
AudioSessionSetProperty (kAudioSessionProperty_OverrideCategoryEnableBluetoothInput, sizeof (allowBluetoothInput), &allowBluetoothInput);
当我使用此代码时,此代码通过Bluetooth
路由输入,但同时它也将输出路由到同一个蓝牙设备。我只想要解决这个问题。您也可以建议任何第三方库。或者,如果Apple使用iOS 8
引入任何新API,那么它也可以使用。