aboutsummaryrefslogtreecommitdiffstats
path: root/src/engine/JackDriver.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/JackDriver.hpp')
-rw-r--r--src/engine/JackDriver.hpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/engine/JackDriver.hpp b/src/engine/JackDriver.hpp
index 14ed626..a67afbc 100644
--- a/src/engine/JackDriver.hpp
+++ b/src/engine/JackDriver.hpp
@@ -22,7 +22,6 @@
#include <jack/jack.h>
#include <jack/midiport.h>
-#include "raul/DoubleBuffer.hpp"
#include "raul/Semaphore.hpp"
#include "machina/Context.hpp"
@@ -61,9 +60,6 @@ public:
size_t size,
const unsigned char* event);
- void set_bpm(double bpm) { _bpm.set(bpm); }
- void set_quantization(double q) { _quantization.set(q); }
-
void set_play_state(PlayState state);
void start_transport() { jack_transport_start(_client); }
@@ -112,9 +108,6 @@ private:
Raul::TimeUnit _frames_unit;
Raul::TimeUnit _beats_unit;
- Raul::DoubleBuffer<double> _bpm;
- Raul::DoubleBuffer<double> _quantization;
-
Raul::Semaphore _stop;
bool _stop_flag;