Mercurial > mplayer.hg
annotate mp3lib/mp3.h @ 28282:31849f6ac0c7
Sync with latest FFmpeg changes: #define disabled preprocessor directives
used by FFmpeg to 0 instead of leaving them undefined.
author | diego |
---|---|
date | Thu, 15 Jan 2009 15:56:24 +0000 |
parents | 7448d949d6b4 |
children | 257ef2adfd66 |
rev | line source |
---|---|
1 | 1 /* MP3 Player Library 2.0 (C) 1999 A'rpi/Astral&ESP-team */ |
2 | |
3 /* decoder level: */ | |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
17566
diff
changeset
|
4 #ifdef CONFIG_FAKE_MONO |
28051 | 5 void MP3_Init(int fakemono); |
732
e14114170e01
applied 'fakemono' patch by Bryan Chan scorpio@acm.org
arpi_esp
parents:
1
diff
changeset
|
6 #else |
28095
7448d949d6b4
Add missing 'void' to parameterless function declaration.
diego
parents:
28051
diff
changeset
|
7 void MP3_Init(void); |
732
e14114170e01
applied 'fakemono' patch by Bryan Chan scorpio@acm.org
arpi_esp
parents:
1
diff
changeset
|
8 #endif |
28051 | 9 int MP3_Open(char *filename, int buffsize); |
10 void MP3_SeekFrame(int num, int dir); | |
11 void MP3_SeekForward(int num); | |
12 int MP3_PrintTAG(void); | |
13 int MP3_DecodeFrame(unsigned char *hova, short single); | |
14 int MP3_FillBuffers(void); | |
15 void MP3_PrintHeader(void); | |
16 void MP3_Close(void); | |
1 | 17 /* public variables: */ |
18 extern int MP3_eof; // set if EOF reached | |
19 extern int MP3_pause; // lock playing | |
20 /* informational: */ | |
21 extern int MP3_filesize; // filesize | |
22 extern int MP3_frames; // current frame no | |
23 extern int MP3_fpos; // current file pos | |
24 extern int MP3_framesize; // current framesize in bytes (including header) | |
25 extern int MP3_bitrate; // current bitrate (kbits) | |
26 extern int MP3_samplerate; // current sampling freq (Hz) | |
27 extern int MP3_channels; | |
28 extern int MP3_bps; | |
29 | |
30 /* player level: */ | |
28051 | 31 int MP3_OpenDevice(char *devname); /* devname can be NULL for default) */ |
32 void MP3_Play(void); | |
33 void MP3_Stop(void); | |
34 void MP3_CloseDevice(void); | |
1 | 35 |