Merge "Initialize LDAC to ABR mode" am: f80b445166
am: 8bed25af1f
Change-Id: Iab167bc1688e87ea0aeb44853dda3854d1601fc9
diff --git a/src/com/android/settings/DevelopmentSettings.java b/src/com/android/settings/DevelopmentSettings.java
index 06c3050..7a5cb3c 100644
--- a/src/com/android/settings/DevelopmentSettings.java
+++ b/src/com/android/settings/DevelopmentSettings.java
@@ -1805,10 +1805,10 @@
mBluetoothSelectA2dpChannelMode.setValue(values[index]);
mBluetoothSelectA2dpChannelMode.setSummary(summaries[index]);
- // Init the LDAC Playback Quality - High
+ // Init the LDAC Playback Quality - ABR
values = getResources().getStringArray(R.array.bluetooth_a2dp_codec_ldac_playback_quality_values);
summaries = getResources().getStringArray(R.array.bluetooth_a2dp_codec_ldac_playback_quality_summaries);
- index = 0;
+ index = 3;
mBluetoothSelectA2dpLdacPlaybackQuality.setValue(values[index]);
mBluetoothSelectA2dpLdacPlaybackQuality.setSummary(summaries[index]);
}
@@ -1965,6 +1965,7 @@
case 0:
case 1:
case 2:
+ case 3:
break;
default:
index = -1;
@@ -2151,6 +2152,7 @@
case 0:
case 1:
case 2:
+ case 3:
codecSpecific1Value = 1000 + index;
break;
default: