Loading bluetooth/audio/utils/session/BluetoothAudioSupportedCodecsDB_2_2.cpp +7 −3 Original line number Diff line number Diff line Loading @@ -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( Loading Loading
bluetooth/audio/utils/session/BluetoothAudioSupportedCodecsDB_2_2.cpp +7 −3 Original line number Diff line number Diff line Loading @@ -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( Loading