summaryrefslogtreecommitdiff
path: root/libs/ardour/plugin_insert.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2018-08-15 12:46:11 +0200
committerRobin Gareus <robin@gareus.org>2018-08-15 12:46:11 +0200
commit95eaf0cc87d73fba6489436a28b87c63ea880253 (patch)
tree6434912fc405e738ed6878ffd3c3d79b420c22db /libs/ardour/plugin_insert.cc
parent61d26e5678de2738120c5be9832d4e9c480d3c47 (diff)
Add API to reset plugin timing stats
Diffstat (limited to 'libs/ardour/plugin_insert.cc')
-rw-r--r--libs/ardour/plugin_insert.cc11
1 files changed, 11 insertions, 0 deletions
diff --git a/libs/ardour/plugin_insert.cc b/libs/ardour/plugin_insert.cc
index 0ad1de02a9..205262ab4c 100644
--- a/libs/ardour/plugin_insert.cc
+++ b/libs/ardour/plugin_insert.cc
@@ -83,6 +83,7 @@ PluginInsert::PluginInsert (Session& s, boost::shared_ptr<Plugin> plug)
, _maps_from_state (false)
, _latency_changed (false)
, _bypass_port (UINT32_MAX)
+ , _stat_reset (0)
{
/* the first is the master */
@@ -1210,6 +1211,10 @@ PluginInsert::run (BufferSet& bufs, samplepos_t start_sample, samplepos_t end_sa
_sidechain->run (bufs, start_sample, end_sample, speed, nframes, true);
}
+ if (g_atomic_int_compare_and_exchange (&_stat_reset, 1, 0)) {
+ _timing_stats.reset ();
+ }
+
if (_pending_active) {
_timing_stats.start ();
/* run as normal if we are active or moving from inactive to active */
@@ -3146,6 +3151,12 @@ PluginInsert::get_stats (uint64_t& min, uint64_t& max, double& avg, double& dev)
return _timing_stats.get_stats (min, max, avg, dev);
}
+void
+PluginInsert::clear_stats ()
+{
+ g_atomic_int_set (&_stat_reset, 1);
+}
+
std::ostream& operator<<(std::ostream& o, const ARDOUR::PluginInsert::Match& m)
{
switch (m.method) {