From d3561e8cf1d5a289ff2ce4a26e4a970437a812d5 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 29 Nov 2020 16:55:25 +0100 Subject: Remove flaky DSP load meter This never worked particularly well, and the underlying API is more or less useless with Jack 2. So, just replace it with a dropout counter. --- src/JackDriver.hpp | 3 --- 1 file changed, 3 deletions(-) (limited to 'src/JackDriver.hpp') diff --git a/src/JackDriver.hpp b/src/JackDriver.hpp index f3fcaf0..d93b491 100644 --- a/src/JackDriver.hpp +++ b/src/JackDriver.hpp @@ -56,8 +56,6 @@ public: uint32_t get_xruns() const { return _xruns; } void reset_xruns(); - float get_max_dsp_load(); - void reset_max_dsp_load(); uint32_t sample_rate() { return jack_get_sample_rate(_client); } uint32_t buffer_size(); @@ -92,7 +90,6 @@ private: jack_client_t* _client = nullptr; jack_nframes_t _buffer_size = 0u; uint32_t _xruns = 0u; - float _xrun_delay = 0.0f; bool _is_activated : 1; }; -- cgit v1.2.1