NO-OP: whitespace

This commit is contained in:
Robin Gareus 2019-04-28 21:16:50 +02:00
parent 20bdf5d966
commit a156d4f446
No known key found for this signature in database
GPG key ID: A090BCE02CF57F04

View file

@ -135,10 +135,6 @@ Convolver::reconfigure ()
uint32_t n_imp = n_inputs () * n_outputs ();
uint32_t n_chn = _readables.size ();
#ifndef NDEBUG
printf ("Convolver::reconfigure Nin %d Nout %d Nimp %d Nchn %d\n", n_inputs (), n_outputs (), n_imp, n_chn);
#endif
if (_irc == Stereo && n_chn == 3) {
/* ignore 3rd channel */
n_chn = 2;
@ -148,6 +144,10 @@ Convolver::reconfigure ()
n_imp = 2;
}
#ifndef NDEBUG
printf ("Convolver::reconfigure Nin=%d Nout=%d Nimp=%d Nchn=%d\n", n_inputs (), n_outputs (), n_imp, n_chn);
#endif
assert (n_imp <= 4);
for (uint32_t c = 0; c < n_imp && rv == 0; ++c) {
@ -184,6 +184,7 @@ Convolver::reconfigure ()
uint32_t pos = 0;
while (true) {
float ir[8192];
samplecnt_t to_read = std::min ((uint32_t)8192, _max_size - pos);
samplecnt_t ns = r->read (ir, pos, to_read, 0);