rename BufferSet::get* to BufferSet::get_available*

This tries to make it clear what the BufferSet limit semantics really are
This commit is contained in:
Paul Davis
2019-09-26 18:39:46 -06:00
parent f5f452bf9c
commit 903c3ec5a0
8 changed files with 35 additions and 35 deletions

View File

@@ -55,7 +55,7 @@ CapturingProcessor::run (BufferSet& bufs, samplepos_t, samplepos_t, double, pfra
}
for (DataType::iterator t = DataType::begin(); t != DataType::end(); ++t) {
for (uint32_t b = 0; b < bufs.count().get (*t); ++b) {
_delaybuffers.delay (*t, b, capture_buffers.get (*t, b), bufs.get (*t, b), nframes, 0, 0);
_delaybuffers.delay (*t, b, capture_buffers.get_available (*t, b), bufs.get_available (*t, b), nframes, 0, 0);
}
}
}