diff options
Diffstat (limited to 'common.h')
-rw-r--r-- | common.h | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -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 */ |