i changed somethin *shrug*
git-svn-id: https://svn.musicpd.org/mpd/trunk@2286 09075e82-0dd4-0310-85a5-a0d7c8717e4f
This commit is contained in:
@ -28,11 +28,18 @@
|
|||||||
|
|
||||||
#include <shout/shout.h>
|
#include <shout/shout.h>
|
||||||
#include <vorbis/vorbisenc.h>
|
#include <vorbis/vorbisenc.h>
|
||||||
|
#include <vorbis/codec.h>
|
||||||
|
|
||||||
static int shoutInitCount = 0;
|
static int shoutInitCount = 0;
|
||||||
|
|
||||||
typedef struct _ShoutData {
|
typedef struct _ShoutData {
|
||||||
shout_t * shoutConn;
|
shout_t * shoutConn;
|
||||||
|
ogg_page og;
|
||||||
|
ogg_packet op;
|
||||||
|
vorbis_dsp_state vd;
|
||||||
|
vorbis_block vb;
|
||||||
|
vorbis_info vi;
|
||||||
|
vorbis_comment vc;
|
||||||
} ShoutData;
|
} ShoutData;
|
||||||
|
|
||||||
static ShoutData * newShoutData() {
|
static ShoutData * newShoutData() {
|
||||||
|
Reference in New Issue
Block a user