[hardware][interfaces][bluetooth] fix -Wreorder-init-list
C++20 will require members in a designated initializer to be in order unlike C99. Bug: 139945549 Test: mm Change-Id: Ie34b4f3400439817bebd30ee0356e35a87c971e5 Signed-off-by: Nick Desaulniers <ndesaulniers@google.com>
This commit is contained in:
parent
0e1efc568c
commit
0fd95b2473
2 changed files with 6 additions and 3 deletions
|
@ -156,8 +156,9 @@ class BluetoothAudioSession {
|
|||
|
||||
static constexpr PcmParameters kInvalidPcmParameters = {
|
||||
.sampleRate = SampleRate::RATE_UNKNOWN,
|
||||
.channelMode = ChannelMode::UNKNOWN,
|
||||
.bitsPerSample = BitsPerSample::BITS_UNKNOWN,
|
||||
.channelMode = ChannelMode::UNKNOWN};
|
||||
};
|
||||
// can't be constexpr because of non-literal type
|
||||
static const CodecConfiguration kInvalidCodecConfiguration;
|
||||
|
||||
|
|
|
@ -94,16 +94,18 @@ static const LdacParameters kDefaultOffloadLdacCapability = {
|
|||
static const AptxParameters kDefaultOffloadAptxCapability = {
|
||||
.sampleRate = static_cast<SampleRate>(SampleRate::RATE_44100 |
|
||||
SampleRate::RATE_48000),
|
||||
.channelMode = ChannelMode::STEREO,
|
||||
.bitsPerSample = BitsPerSample::BITS_16,
|
||||
.channelMode = ChannelMode::STEREO};
|
||||
};
|
||||
|
||||
// aptX HD: mSampleRate:(44100|48000), mBitsPerSample:(24),
|
||||
// mChannelMode:(STEREO)
|
||||
static const AptxParameters kDefaultOffloadAptxHdCapability = {
|
||||
.sampleRate = static_cast<SampleRate>(SampleRate::RATE_44100 |
|
||||
SampleRate::RATE_48000),
|
||||
.channelMode = ChannelMode::STEREO,
|
||||
.bitsPerSample = BitsPerSample::BITS_24,
|
||||
.channelMode = ChannelMode::STEREO};
|
||||
};
|
||||
|
||||
const std::vector<CodecCapabilities> kDefaultOffloadA2dpCodecCapabilities = {
|
||||
{.codecType = CodecType::SBC, .capabilities = {}},
|
||||
|
|
Loading…
Reference in a new issue