summaryrefslogtreecommitdiff
path: root/libs/ardour/export_handler.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2020-04-09 01:28:04 +0200
committerRobin Gareus <robin@gareus.org>2020-04-09 01:28:04 +0200
commit57118c2370fa20c737471f5aec7f9a3a55340a64 (patch)
tree20f95f9e309999c6b45383d6df0aa4b2baeece3e /libs/ardour/export_handler.cc
parenta6afb31245a851caf468ab4d4c3296d7443b7f7f (diff)
Prevent FX from producing sound after export
This cuts reverb tails and synth sounds after export. Disabling freewheeling, continues normal processing where export left off. This previously kept notes ringing, or reverbs audible.
Diffstat (limited to 'libs/ardour/export_handler.cc')
-rw-r--r--libs/ardour/export_handler.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/export_handler.cc b/libs/ardour/export_handler.cc
index 9454f52e24..4e365bd431 100644
--- a/libs/ardour/export_handler.cc
+++ b/libs/ardour/export_handler.cc
@@ -314,8 +314,8 @@ ExportHandler::process_timespan (samplecnt_t samples)
export_status->current_postprocessing_cycle = 0;
} else {
finish_timespan ();
- return 0;
}
+ return 1; /* trigger realtime_stop() */
}
return 0;