diff options
| author | Pavlin Radoslavov <pavlin@google.com> | 2017-01-26 19:20:08 +0000 |
|---|---|---|
| committer | android-build-merger <android-build-merger@google.com> | 2017-01-26 19:20:08 +0000 |
| commit | f23e80bb9b3c890b57dc0cd079d8ced2d2672217 (patch) | |
| tree | a0c8a21e1172b574142017b1d4308d7493d05012 /core/java/android | |
| parent | c0118ac10ed692e129b88c1709496965a5693d27 (diff) | |
| parent | 22f97c83fb3d3c3d51407a83faba5e23349c796f (diff) | |
Merge "Integration of the AAC codec for A2DP source"
am: 22f97c83fb
Change-Id: I22838db2b87f83a3832f78d74d08a6f988264284
Diffstat (limited to 'core/java/android')
| -rw-r--r-- | core/java/android/bluetooth/BluetoothCodecConfig.java | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/core/java/android/bluetooth/BluetoothCodecConfig.java b/core/java/android/bluetooth/BluetoothCodecConfig.java index 52cd2de4c2b6..a37a0b38aa7c 100644 --- a/core/java/android/bluetooth/BluetoothCodecConfig.java +++ b/core/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; |
