mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-11 09:06:33 +01:00
NO-OP: whitespace
This commit is contained in:
parent
20bdf5d966
commit
a156d4f446
1 changed files with 9 additions and 8 deletions
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue