Correct indentation

This commit is contained in:
Geoffrey Merck 2020-05-13 12:03:52 +02:00
parent df23e15c91
commit 9023b6ae13
1 changed files with 6 additions and 6 deletions

View File

@ -40,14 +40,14 @@ void CFMDownsampler::addSample(q15_t sample)
m_samplePack = uint32_t(sample) << 12;
break;
case 1:{
m_samplePack |= uint32_t(sample);
m_samplePack |= uint32_t(sample);
//we did not use MSB; skip it
TSamplePairPack pair{m_samplePackPointer[1U], m_samplePackPointer[2U], m_samplePackPointer[3U]};
//we did not use MSB; skip it
TSamplePairPack pair{m_samplePackPointer[1U], m_samplePackPointer[2U], m_samplePackPointer[3U]};
m_ringBuffer.put(pair);
m_ringBuffer.put(pair);
m_samplePack = 0;//reset the sample pack
m_samplePack = 0;//reset the sample pack
}
break;
default: