summaryrefslogtreecommitdiff
path: root/drumgizmo/audiooutputenginedl.h
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2013-05-20 08:26:48 +0200
committerBent Bisballe Nyeng <deva@aasimon.org>2013-05-20 08:26:48 +0200
commita609e6895a96db134697acce266e0cb94488f60b (patch)
tree77d854e202e973349e3500b10dc36069e388105b /drumgizmo/audiooutputenginedl.h
parent98430d96a1d25cba36ad304fde6518e493fe3441 (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/audiooutputenginedl.h')
-rw-r--r--drumgizmo/audiooutputenginedl.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/drumgizmo/audiooutputenginedl.h b/drumgizmo/audiooutputenginedl.h
index 7faa78e..4b22131 100644
--- a/drumgizmo/audiooutputenginedl.h
+++ b/drumgizmo/audiooutputenginedl.h
@@ -34,6 +34,7 @@
#include "channel.h"
#include "audiooutputengine.h"
+#include "jackclient.h"
typedef void* (*output_create_func_t)(void);
typedef void (*output_destroy_func_t)(void*);
@@ -72,6 +73,9 @@ private:
output_pre_func_t o_pre;
output_run_func_t o_run;
output_post_func_t o_post;
+
+ bool is_jack_plugin;
+ JackClient *jackclient;
};
#endif/*__DRUMGIZMO_AUDIOOUTPUTENGINEDL_H__*/