mirror of https://github.com/g4klx/MMDVM.git
Correct indentation
This commit is contained in:
parent
df23e15c91
commit
9023b6ae13
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue