am db41880d: Merge "Fix exception in AudioService when no BT Headset is connected." into lmp-mr1-dev
* commit 'db41880dd3259646b9ea43be6d8a91d4adb40122': Fix exception in AudioService when no BT Headset is connected.
This commit is contained in:
@@ -2574,13 +2574,17 @@ public class AudioService extends IAudioService.Stub {
|
||||
if (mScoAudioState == SCO_STATE_INACTIVE) {
|
||||
mScoAudioMode = scoAudioMode;
|
||||
if (scoAudioMode == SCO_MODE_UNDEFINED) {
|
||||
mScoAudioMode = new Integer(Settings.Global.getInt(
|
||||
mContentResolver,
|
||||
"bluetooth_sco_channel_"+
|
||||
mBluetoothHeadsetDevice.getAddress(),
|
||||
SCO_MODE_VIRTUAL_CALL));
|
||||
if (mScoAudioMode > SCO_MODE_MAX || mScoAudioMode < 0) {
|
||||
mScoAudioMode = SCO_MODE_VIRTUAL_CALL;
|
||||
if (mBluetoothHeadsetDevice != null) {
|
||||
mScoAudioMode = new Integer(Settings.Global.getInt(
|
||||
mContentResolver,
|
||||
"bluetooth_sco_channel_"+
|
||||
mBluetoothHeadsetDevice.getAddress(),
|
||||
SCO_MODE_VIRTUAL_CALL));
|
||||
if (mScoAudioMode > SCO_MODE_MAX || mScoAudioMode < 0) {
|
||||
mScoAudioMode = SCO_MODE_VIRTUAL_CALL;
|
||||
}
|
||||
} else {
|
||||
mScoAudioMode = SCO_MODE_RAW;
|
||||
}
|
||||
}
|
||||
if (mBluetoothHeadset != null && mBluetoothHeadsetDevice != null) {
|
||||
|
||||
Reference in New Issue
Block a user