From edff34a59b2bbe0b61d3be309450aef58299049c Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Fri, 3 Nov 2017 04:26:33 +0100 Subject: [PATCH] Auditioner, silence buffer at end. --- libs/ardour/auditioner.cc | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/libs/ardour/auditioner.cc b/libs/ardour/auditioner.cc index 080a11703b..1dd9022ca9 100644 --- a/libs/ardour/auditioner.cc +++ b/libs/ardour/auditioner.cc @@ -425,13 +425,20 @@ Auditioner::play_audition (samplecnt_t nframes) /* process audio */ this_nframes = min (nframes, length - current_sample + _import_position); - if ((ret = roll (this_nframes, current_sample, current_sample + nframes, false, need_butler)) != 0) { + if (this_nframes > 0 && 0 != (ret = roll (this_nframes, current_sample, current_sample + this_nframes, false, need_butler))) { silence (nframes); return ret; } current_sample += this_nframes; + if (this_nframes < nframes) { + if (this_nframes > 0) { + _session.engine().split_cycle (this_nframes); + } + silence (nframes - this_nframes); + } + } else { silence (nframes); } -- 2.30.2