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

Commit 140822d3 authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Correct the offload capability and update comment" am: 2617347b am:...

Merge "Correct the offload capability and update comment" am: 2617347b am: 2193542a am: 6687ba3b

Original change: https://android-review.googlesource.com/c/platform/hardware/interfaces/+/1940866

Change-Id: I26717e065e99e4ad41499635edff937beace36ef
parents 21235c58 6687ba3b
Loading
Loading
Loading
Loading
+7 −3
Original line number Diff line number Diff line
@@ -77,8 +77,12 @@ static AudioLocation monoAudio = AudioLocation::UNKNOWN;
// Stores the supported setting of audio location, connected device, and the
// channel count for each device
std::vector<std::tuple<AudioLocation, uint8_t, uint8_t>>
    supportedDeviceSetting = {std::make_tuple(stereoAudio, 2, 1),
                              std::make_tuple(monoAudio, 1, 2),
    supportedDeviceSetting = {
        // Stereo, two connected device, one for L one for R
        std::make_tuple(stereoAudio, 2, 1),
        // Stereo, one connected device for both L and R
        std::make_tuple(stereoAudio, 1, 2),
        // Mono
        std::make_tuple(monoAudio, 1, 1)};

bool IsOffloadLeAudioConfigurationValid(