我正在使用蓝牙3.0 / aptX音频设备。由于OSX中默认的位池设置不正确,因此将设备配对会导致音频断断续续。
该问题已被广泛记录,例如在stackexchange上。
过去曾通过设置新的默认值来修复优胜美地:
defaults write com.apple.BluetoothAudioAgent "Apple Bitpool Max (editable)" 80
defaults write com.apple.BluetoothAudioAgent "Apple Bitpool Min (editable)" 48
defaults write com.apple.BluetoothAudioAgent "Apple Initial Bitpool (editable)" 40
defaults write com.apple.BluetoothAudioAgent "Negotiated Bitpool" 58
defaults write com.apple.BluetoothAudioAgent "Negotiated Bitpool Max" 58
defaults write com.apple.BluetoothAudioAgent "Negotiated Bitpool Min" 48
但是,这在Mavericks上不起作用:
# defaults read com.apple.BluetoothAudioAgent
2015-01-29 17:28:12.522 defaults[80133:934404]
Domain /Users/jottr/Library/Preferences/com.apple.BluetoothAudioAgent does not exist
向写入新设置com.apple.BluetoothAudioAgent
不会影响Mavericks上的实际位池设置。
我可以在Bluetooth Explorer应用程序 (它是Xcode的一部分)中设置Bluetooth位池设置:
但是,这些设置在重新启动后不会保留。
如何在Mavericks的重新启动过程中保留所需的Bluetooth音频Bitpool设置?