aboutsummaryrefslogtreecommitdiff
path: root/framework/java
diff options
context:
space:
mode:
authorPavlin Radoslavov <pavlin@google.com>2017-01-26 19:20:08 +0000
committerandroid-build-merger <android-build-merger@google.com>2017-01-26 19:20:08 +0000
commita67247b835e35713df0869f6354ae06dd00de91c (patch)
tree170a39ddac548c4a7739bb827d3f5b3282ecf167 /framework/java
parent180e79353f8f586b9e2817b64c8306fc92f5cdca (diff)
parent8e79aa721c0e6626519928817e8ee7df4622399a (diff)
Merge "Integration of the AAC codec for A2DP source"
am: 8e79aa721c Change-Id: I22838db2b87f83a3832f78d74d08a6f988264284
Diffstat (limited to 'framework/java')
-rw-r--r--framework/java/android/bluetooth/BluetoothCodecConfig.java7
1 files changed, 4 insertions, 3 deletions
diff --git a/framework/java/android/bluetooth/BluetoothCodecConfig.java b/framework/java/android/bluetooth/BluetoothCodecConfig.java
index 52cd2de4c2..a37a0b38aa 100644
--- a/framework/java/android/bluetooth/BluetoothCodecConfig.java
+++ b/framework/java/android/bluetooth/BluetoothCodecConfig.java
@@ -51,9 +51,10 @@ public final class BluetoothCodecConfig implements Parcelable {
// NOTE: The values should be same as those listed in the following file:
// hardware/libhardware/include/hardware/bt_av.h
public static final int SOURCE_CODEC_TYPE_SBC = 0;
- public static final int SOURCE_CODEC_TYPE_APTX = 1;
- public static final int SOURCE_CODEC_TYPE_APTX_HD = 2;
- public static final int SOURCE_CODEC_TYPE_LDAC = 3;
+ public static final int SOURCE_CODEC_TYPE_AAC = 1;
+ public static final int SOURCE_CODEC_TYPE_APTX = 2;
+ public static final int SOURCE_CODEC_TYPE_APTX_HD = 3;
+ public static final int SOURCE_CODEC_TYPE_LDAC = 4;
public static final int SOURCE_CODEC_TYPE_INVALID = 1000 * 1000;