summaryrefslogtreecommitdiff
path: root/libs/ardour/capturing_processor.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2019-09-26 18:39:46 -0600
committerPaul Davis <paul@linuxaudiosystems.com>2019-09-26 18:39:56 -0600
commit903c3ec5a0491b3e504a81bddeb7fe7c429e2a7e (patch)
treef91f07edb33d89cfd195ec691969e21c1e49d429 /libs/ardour/capturing_processor.cc
parentf5f452bf9c9637063a819a69980456767ea5da59 (diff)
rename BufferSet::get* to BufferSet::get_available*
This tries to make it clear what the BufferSet limit semantics really are
Diffstat (limited to 'libs/ardour/capturing_processor.cc')
-rw-r--r--libs/ardour/capturing_processor.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/capturing_processor.cc b/libs/ardour/capturing_processor.cc
index c6471426c9..f90c670fa6 100644
--- a/libs/ardour/capturing_processor.cc
+++ b/libs/ardour/capturing_processor.cc
@@ -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);
}
}
}