aboutsummaryrefslogtreecommitdiffstats
path: root/common.h
diff options
context:
space:
mode:
Diffstat (limited to 'common.h')
-rw-r--r--common.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/common.h b/common.h
index aa50c4f..36d65a1 100644
--- a/common.h
+++ b/common.h
@@ -89,6 +89,7 @@
#include <stdio.h>
#include <stdlib.h>
+#include <jack/jack.h>
/* Structure for Reading Layer II Allocation Tables from File */
@@ -162,6 +163,17 @@ enum byte_order
{ order_unknown, order_bigEndian, order_littleEndian };
extern enum byte_order NativeByteOrder;
+
+typedef struct music_in_s
+{
+ /* Data for the wav input */
+ FILE* wav_input;
+
+ /* Data for the jack input */
+ jack_client_t* jack_client;
+ const char* jack_name;
+} music_in_t;
+
/* "bit_stream.h" Type Definitions */