aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorWarren Dukes <warren.dukes@gmail.com>2004-10-20 21:09:04 +0000
committerWarren Dukes <warren.dukes@gmail.com>2004-10-20 21:09:04 +0000
commit41e81dbca01254c15ad5352e99eda4dbc67714e5 (patch)
tree55c82106a12f04603639c977990335260fe44c49 /src
parent72a7740fd5755d09e13978bde7f729deb43bdd55 (diff)
downloadmpd-41e81dbca01254c15ad5352e99eda4dbc67714e5.tar.gz
mpd-41e81dbca01254c15ad5352e99eda4dbc67714e5.tar.xz
mpd-41e81dbca01254c15ad5352e99eda4dbc67714e5.zip
i changed somethin *shrug*
git-svn-id: https://svn.musicpd.org/mpd/trunk@2286 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src')
-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() {