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

Commit 11337c36 authored by Grzegorz Kolodziejczyk's avatar Grzegorz Kolodziejczyk Committed by Automerger Merge Worker
Browse files

Merge "aidl: Fix missing conversion logic for broadcast device" into...

Merge "aidl: Fix missing conversion logic for broadcast device" into tm-qpr-dev am: f3d2d183 am: bc0926a8

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/18674055



Change-Id: I46c9d201d97b0d801d6d5b747779e7d1bd27deb9
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents 13391016 bc0926a8
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -695,6 +695,10 @@ public class AidlConversion {
                aidl.type = AudioDeviceType.OUT_SPEAKER;
                aidl.connection = AudioDeviceDescription.CONNECTION_BT_LE;
                break;
            case AudioSystem.DEVICE_OUT_BLE_BROADCAST:
                aidl.type = AudioDeviceType.OUT_BROADCAST;
                aidl.connection = AudioDeviceDescription.CONNECTION_BT_LE;
                break;
            case AudioSystem.DEVICE_IN_BUILTIN_MIC:
                aidl.type = AudioDeviceType.IN_MICROPHONE;
                break;