diff options
author | André Nusser <andre.nusser@googlemail.com> | 2016-04-23 22:53:40 +0200 |
---|---|---|
committer | André Nusser <andre.nusser@googlemail.com> | 2016-04-24 23:20:44 +0200 |
commit | 6f550da7b91c1ff1d5acbee1112adf4a16e36a47 (patch) | |
tree | 0c1c9d41109888ac801ef5cb46fab7820b4d48b8 /src/drumgizmo.h | |
parent | 32463cb2f19c0f1af4edddb396f9ea0abf5147e5 (diff) |
Move input processing of drumgizmo.cc into own class.
Diffstat (limited to 'src/drumgizmo.h')
-rw-r--r-- | src/drumgizmo.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/drumgizmo.h b/src/drumgizmo.h index 13c657d..3e734b5 100644 --- a/src/drumgizmo.h +++ b/src/drumgizmo.h @@ -41,6 +41,7 @@ #include "chresampler.h" #include "configfile.h" #include "settings.h" +#include "inputprocessor.h" #define REFSFILE "refs.conf" @@ -80,7 +81,6 @@ protected: DrumKitLoader loader; Mutex mutex; - bool is_stopping; ///< Is set to true when a TYPE_STOP event has been seen. AudioOutputEngine *oe; AudioInputEngine *ie; @@ -96,6 +96,7 @@ protected: AudioCache audioCache; DrumKit kit; MemChecker memchecker; + InputProcessor input_processor; size_t framesize; bool freewheel; |