Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ba5e2991 authored by Pavlin Radoslavov's avatar Pavlin Radoslavov
Browse files

Integration of the AAC codec for A2DP source

Test: A2DP streaming to AAC headsets
Bug: 30958229
Change-Id: I1b530f1c5c495b8231fd68bed788d4567096683d
parent 5e992dbc
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -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;