summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2020-04-23 05:19:01 +0200
committerRobin Gareus <robin@gareus.org>2020-04-23 05:23:31 +0200
commit54bc1018d51eedab16da6b2148a145b445af0b03 (patch)
tree221efb3d851cd4ee25d44048be875576508fe070 /libs/ardour/ardour
parent6fbcf837793ec9a8347fd2d12823b9e56587ffc0 (diff)
Fix MIDI auditioning
The Auditioner is not part of the session route-list and the auditioner route's I/O latency is never updated. Session::process_audition() does not handle pre-roll either, so it need to be zeroed, otherwise Route::roll skips samples. This has lead to initial samples being skipped, IFF the auditioner's output-port had non-zero latency. Since private port-latencies are usually only set for routes in the route-list, and _remaining_latency_preroll is reset at transport-stop, this *usually* worked... Last but not least, MIDI notes need to be resolved when seeking.
Diffstat (limited to 'libs/ardour/ardour')
-rw-r--r--libs/ardour/ardour/auditioner.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libs/ardour/ardour/auditioner.h b/libs/ardour/ardour/auditioner.h
index 624df0c0d1..6ca51fc0d6 100644
--- a/libs/ardour/ardour/auditioner.h
+++ b/libs/ardour/ardour/auditioner.h
@@ -91,6 +91,8 @@ public:
void set_audition_synth_info(PluginInfoPtr in) { audition_synth_info = in; }
+ samplecnt_t output_latency () const { return 0; }
+
private:
PluginInfoPtr audition_synth_info; //we will use this to create a new synth on-the-fly each time an audition is requested