Remove unnecessary loop contents

This commit is contained in:
Jack Andersen 2018-05-14 16:55:22 -10:00
parent 4a55a04e18
commit 74bdd2d2a5
1 changed files with 37 additions and 37 deletions

View File

@ -191,11 +191,6 @@ struct PulseAudioVoiceEngine : LinuxMidi
ChannelMap& chmapOut = m_mixInfo.m_channelMap;
m_mixInfo.m_channels = AudioChannelSet::Unknown;
static const std::array<AudioChannelSet, 4> testSets =
{{AudioChannelSet::Surround71, AudioChannelSet::Surround51,
AudioChannelSet::Quad, AudioChannelSet::Stereo}};
for (AudioChannelSet set : testSets)
{
uint64_t chBits = 0;
chmapOut.m_channelCount = chm->channels;
for (unsigned c=0 ; c<chm->channels ; ++c)
@ -233,6 +228,11 @@ struct PulseAudioVoiceEngine : LinuxMidi
}
}
static const std::array<AudioChannelSet, 4> testSets =
{{AudioChannelSet::Surround71, AudioChannelSet::Surround51,
AudioChannelSet::Quad, AudioChannelSet::Stereo}};
for (AudioChannelSet set : testSets)
{
switch (set)
{
case AudioChannelSet::Stereo: