home *** CD-ROM | disk | FTP | other *** search
- #ifdef PARENT_IS_SLASH
- #include "/gtkanal.h"
- #else
- #include "../gtkanal.h"
- #endif
- extern plotting_data *mpg123_pinfo;
-
- struct buf {
- unsigned char *pnt;
- long size;
- long pos;
- struct buf *next;
- struct buf *prev;
- };
-
- struct framebuf {
- struct buf *buf;
- long pos;
- struct frame *next;
- struct frame *prev;
- };
-
- struct mpstr {
- struct buf *head,*tail;
- int header_parsed;
- int side_parsed;
- int data_parsed;
- int free_format; /* 1 = free format frame */
- int old_free_format; /* 1 = last frame was free format */
- int bsize;
- int framesize;
- int ssize;
- int dsize;
- int fsizeold;
- int fsizeold_nopadding;
- struct frame fr;
- unsigned char bsspace[2][MAXFRAMESIZE+512]; /* MAXFRAMESIZE */
- real hybrid_block[2][2][SBLIMIT*SSLIMIT];
- int hybrid_blc[2];
- unsigned long header;
- int bsnum;
- real synth_buffs[2][2][0x110];
- int synth_bo;
-
- };
-
-
- #if ( defined(_MSC_VER) || defined(__BORLANDC__) )
- typedef int BOOL; /* windef.h contains the same definition */
- #else
- #define BOOL int
- #endif
-
- #define MP3_ERR -1
- #define MP3_OK 0
- #define MP3_NEED_MORE 1
-
-
- BOOL InitMP3(struct mpstr *mp);
- int decodeMP3(struct mpstr *mp,char *inmemory,int inmemsize,
- char *outmemory,int outmemsize,int *done);
- void ExitMP3(struct mpstr *mp);
-
-