diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2013-05-20 08:26:48 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2013-05-20 08:26:48 +0200 |
commit | a609e6895a96db134697acce266e0cb94488f60b (patch) | |
tree | 77d854e202e973349e3500b10dc36069e388105b /drumgizmo/audioinputenginedl.h | |
parent | 98430d96a1d25cba36ad304fde6518e493fe3441 (diff) |
Centralise jackclient code for reuse among the jack client modules. Implement most of the jackaudio output module (probably broken atm.).
Diffstat (limited to 'drumgizmo/audioinputenginedl.h')
-rw-r--r-- | drumgizmo/audioinputenginedl.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drumgizmo/audioinputenginedl.h b/drumgizmo/audioinputenginedl.h index b8829e5..ed1fb27 100644 --- a/drumgizmo/audioinputenginedl.h +++ b/drumgizmo/audioinputenginedl.h @@ -28,6 +28,7 @@ #define __DRUMGIZMO_AUDIOINPUTENGINEDL_H__ #include "audioinputengine.h" +#include "jackclient.h" typedef void* (*input_create_func_t)(void); typedef void (*input_destroy_func_t)(void*); @@ -66,6 +67,9 @@ private: input_pre_func_t i_pre; input_run_func_t i_run; input_post_func_t i_post; + + bool is_jack_plugin; + JackClient *jackclient; }; #endif/*__DRUMGIZMO_AUDIOINPUTENGINEDL_H__*/ |