Disable Dual channel for SBC by default
Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
diff --git a/src/com/android/bluetooth/a2dp/A2dpCodecConfig.java b/src/com/android/bluetooth/a2dp/A2dpCodecConfig.java
index 6fec26b..ff2d8ce 100644
--- a/src/com/android/bluetooth/a2dp/A2dpCodecConfig.java
+++ b/src/com/android/bluetooth/a2dp/A2dpCodecConfig.java
@@ -113,14 +113,6 @@
BluetoothCodecConfig codecConfig = codecConfigArray[i];
if (codecConfig != null && !codecConfig.isMandatoryCodec()) {
codecConfigArray[i] = null;
- } else {
- // Rebuild SBC selectable codec with Dual Channel (SBC HD audio)
- codecConfigArray[i] = new BluetoothCodecConfig(
- BluetoothCodecConfig.SOURCE_CODEC_TYPE_SBC, mA2dpSourceCodecPrioritySbc,
- BluetoothCodecConfig.SAMPLE_RATE_NONE,
- BluetoothCodecConfig.BITS_PER_SAMPLE_NONE,
- BluetoothCodecConfig.CHANNEL_MODE_DUAL_CHANNEL, 0 /* codecSpecific1 */,
- 0 /* codecSpecific2 */, 0 /* codecSpecific3 */, 0 /* codecSpecific4 */);
}
}