FxMixer, Mixer, AudioPort: minor coding style fixes

This commit is contained in:
Tobias Doerffel
2014-02-06 22:18:58 +01:00
parent f44843d95c
commit 6c1835bdd1
4 changed files with 9 additions and 26 deletions

View File

@@ -233,14 +233,8 @@ bool LadspaEffect::processAudioBuffer( sampleFrame * _buf,
for( fpp_t frame = 0;
frame < frames; ++frame )
{
_buf[frame][channel] =
d *
_buf[frame][channel] +
w *
pp->buffer[frame];
out_sum +=
_buf[frame][channel] *
_buf[frame][channel];
_buf[frame][channel] = d * _buf[frame][channel] + w * pp->buffer[frame];
out_sum += _buf[frame][channel] * _buf[frame][channel];
}
++channel;
break;