aboutsummaryrefslogtreecommitdiffstats
path: root/src/audioOutput_shout.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/audioOutput_shout.c')
-rw-r--r--src/audioOutput_shout.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/audioOutput_shout.c b/src/audioOutput_shout.c
index 5e14b0467..d1f217151 100644
--- a/src/audioOutput_shout.c
+++ b/src/audioOutput_shout.c
@@ -28,11 +28,18 @@
#include <shout/shout.h>
#include <vorbis/vorbisenc.h>
+#include <vorbis/codec.h>
static int shoutInitCount = 0;
typedef struct _ShoutData {
shout_t * shoutConn;
+ ogg_page og;
+ ogg_packet op;
+ vorbis_dsp_state vd;
+ vorbis_block vb;
+ vorbis_info vi;
+ vorbis_comment vc;
} ShoutData;
static ShoutData * newShoutData() {