| /* | 
 |  * Copyright (c) Michael Hipp and other authors of the mpglib project. | 
 |  * | 
 |  * This library is free software; you can redistribute it and/or | 
 |  * modify it under the terms of the GNU Lesser General Public | 
 |  * License as published by the Free Software Foundation; either | 
 |  * version 2.1 of the License, or (at your option) any later version. | 
 |  * | 
 |  * This library is distributed in the hope that it will be useful, | 
 |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
 |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU | 
 |  * Lesser General Public License for more details. | 
 |  * | 
 |  * You should have received a copy of the GNU Lesser General Public | 
 |  * License along with this library; if not, write to the Free Software | 
 |  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA | 
 |  */ | 
 |  | 
 | 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 bsize; | 
 | 	int framesize; | 
 |         int fsizeold; | 
 | 	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; | 
 | }; | 
 |  | 
 | #ifndef BOOL | 
 | #define BOOL int | 
 | #endif | 
 |  | 
 | #define MP3_ERR -1 | 
 | #define MP3_OK  0 | 
 | #define MP3_NEED_MORE 1 | 
 |  | 
 |  | 
 | #ifdef __cplusplus | 
 | extern "C" { | 
 | #endif | 
 |  | 
 | BOOL InitMP3(struct mpstr *mp); | 
 | int decodeMP3(struct mpstr *mp,const unsigned char *inmemory,int inmemsize, | 
 |      unsigned char *outmemory,int outmemsize,int *done); | 
 | void ExitMP3(struct mpstr *mp); | 
 |  | 
 | #ifdef __cplusplus | 
 | } | 
 | #endif |