2001-02-24 20:28:24 +00:00
|
|
|
/* MP3 Player Library 2.0 (C) 1999 A'rpi/Astral&ESP-team */
|
|
|
|
|
2010-01-04 14:42:59 +00:00
|
|
|
#ifndef MPLAYER_MP3LIB_MP3_H
|
|
|
|
#define MPLAYER_MP3LIB_MP3_H
|
|
|
|
|
2001-02-24 20:28:24 +00:00
|
|
|
/* decoder level: */
|
2008-07-30 12:01:30 +00:00
|
|
|
#ifdef CONFIG_FAKE_MONO
|
2008-12-03 23:01:03 +00:00
|
|
|
void MP3_Init(int fakemono);
|
2001-05-08 21:49:00 +00:00
|
|
|
#else
|
2008-12-11 21:45:11 +00:00
|
|
|
void MP3_Init(void);
|
2001-05-08 21:49:00 +00:00
|
|
|
#endif
|
2008-12-03 23:01:03 +00:00
|
|
|
int MP3_Open(char *filename, int buffsize);
|
|
|
|
void MP3_SeekFrame(int num, int dir);
|
|
|
|
void MP3_SeekForward(int num);
|
|
|
|
int MP3_PrintTAG(void);
|
|
|
|
int MP3_DecodeFrame(unsigned char *hova, short single);
|
|
|
|
int MP3_FillBuffers(void);
|
|
|
|
void MP3_PrintHeader(void);
|
|
|
|
void MP3_Close(void);
|
2001-02-24 20:28:24 +00:00
|
|
|
/* public variables: */
|
|
|
|
extern int MP3_eof; // set if EOF reached
|
|
|
|
extern int MP3_pause; // lock playing
|
|
|
|
/* informational: */
|
|
|
|
extern int MP3_filesize; // filesize
|
|
|
|
extern int MP3_frames; // current frame no
|
|
|
|
extern int MP3_fpos; // current file pos
|
|
|
|
extern int MP3_framesize; // current framesize in bytes (including header)
|
|
|
|
extern int MP3_bitrate; // current bitrate (kbits)
|
|
|
|
extern int MP3_samplerate; // current sampling freq (Hz)
|
|
|
|
extern int MP3_channels;
|
|
|
|
extern int MP3_bps;
|
|
|
|
|
|
|
|
/* player level: */
|
2008-12-03 23:01:03 +00:00
|
|
|
int MP3_OpenDevice(char *devname); /* devname can be NULL for default) */
|
|
|
|
void MP3_Play(void);
|
|
|
|
void MP3_Stop(void);
|
|
|
|
void MP3_CloseDevice(void);
|
2001-02-24 20:28:24 +00:00
|
|
|
|
2010-01-04 14:42:59 +00:00
|
|
|
#endif /* MPLAYER_MP3LIB_MP3_H */
|