Revert "BA: Replacing API"
This reverts commit 4177ecdaf4fc4fcd2257c795fab0ca7d911b4263.
Change-Id: Ifecd973811d19388e459f1844cc1ecd6f12dc589
diff --git a/packages_apps_bluetooth_ext/src/ba/BATService.java b/packages_apps_bluetooth_ext/src/ba/BATService.java
index 49fcdd3..5f6a01b 100644
--- a/packages_apps_bluetooth_ext/src/ba/BATService.java
+++ b/packages_apps_bluetooth_ext/src/ba/BATService.java
@@ -664,7 +664,7 @@
if((mPrevStackBATState == BA_STACK_STATE_PENDING) &&
(mCurrStackBATState == BA_STACK_STATE_PAUSED)) {
Log.d(TAG," updating AudioManager: Connected for BA ");
- mAudioManager.setBluetoothA2dpDeviceConnectionStateSuppressNoisyIntent(
+ mAudioManager.handleBluetoothA2dpActiveDeviceChange(
mBADevice, BluetoothProfile.STATE_CONNECTED,BluetoothProfile.A2DP, true, -1);
//BA audio works on the principal of absVol
//Currently mm-audio tracks value of last updated absVol support,
@@ -682,13 +682,13 @@
// as a2dp has to be updated as well. Switching should happen to
// A2DP in this case.
Log.d(TAG," updating AudioManager: Connected for A2DP ");
- mAudioManager.setBluetoothA2dpDeviceConnectionStateSuppressNoisyIntent(
+ mAudioManager.handleBluetoothA2dpActiveDeviceChange(
a2dpActiveDevice, BluetoothProfile.STATE_CONNECTED,BluetoothProfile.A2DP,
true, -1);
} else {// a2dp active device is null.
// inform BA device as disconnected. we have to send noisy intent
// because BA seems to be last device.
- mAudioManager.setBluetoothA2dpDeviceConnectionStateSuppressNoisyIntent(
+ mAudioManager.handleBluetoothA2dpActiveDeviceChange(
mBADevice, BluetoothProfile.STATE_DISCONNECTED,BluetoothProfile.A2DP,
false, -1);
}
@@ -1004,4 +1004,4 @@
private native static void cleanupNative();
private native static void setBAStateNative(int enable);
private native static void setVolNative(int volLevel, int maxVolLevel);
-}
\ No newline at end of file
+}