diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/JackDriver.cpp | 1 | ||||
-rw-r--r-- | src/JackDriver.hpp | 9 |
2 files changed, 4 insertions, 6 deletions
diff --git a/src/JackDriver.cpp b/src/JackDriver.cpp index 2f96022..4b93ec3 100644 --- a/src/JackDriver.cpp +++ b/src/JackDriver.cpp @@ -48,7 +48,6 @@ JackDriver::JackDriver(ILog& log, EventSink emit_event) : Driver{std::move(emit_event)} , _log{log} , _client{nullptr} - , _last_pos{} , _buffer_size{0} , _xruns{0} , _xrun_delay{0} diff --git a/src/JackDriver.hpp b/src/JackDriver.hpp index b0dec7a..355e211 100644 --- a/src/JackDriver.hpp +++ b/src/JackDriver.hpp @@ -91,11 +91,10 @@ private: std::mutex _shutdown_mutex; - jack_position_t _last_pos; - jack_nframes_t _buffer_size; - uint32_t _xruns; - float _xrun_delay; - bool _is_activated : 1; + jack_nframes_t _buffer_size; + uint32_t _xruns; + float _xrun_delay; + bool _is_activated : 1; }; #endif // PATCHAGE_JACKDRIVER_HPP |