Mercurial > mplayer.hg
annotate mp3lib/mp3.h @ 7099:0b70f3dc34eb
Applied patch by Andras Mohari <mayday@varoshaza.nagyatad.hu>, with some
small additions.
* Replaced <UL> with <OL> where it made sense (to me :-)).
* Moved "Developer Cries" into the appendix (as Appendix F)
with s/Flame Wars/Developer Cries/ and
s/In medias res/Developer Cries/.
* Renamed "Appendix X" to "Appendix E".
* Put a "Hint" inside <BLOCKQUOTE>.
* Converted 3-pass encoding and mga_vid installation
instructions to lists.
* Converted options tables (video eq, SDL, fbdev, VESA, DXR3, TV input,
DivX4Linux, AAlib) to <DL> lists.
* The "sections" for MPsub and INSTALLING OSD are numbered and displayed
in the TOC now.
* Changed the text inside some <H4> tags.
author | diego |
---|---|
date | Tue, 27 Aug 2002 18:06:07 +0000 |
parents | e14114170e01 |
children | f580a7755ac5 |
rev | line source |
---|---|
1 | 1 /* MP3 Player Library 2.0 (C) 1999 A'rpi/Astral&ESP-team */ |
2 | |
3 /* decoder level: */ | |
732
e14114170e01
applied 'fakemono' patch by Bryan Chan scorpio@acm.org
arpi_esp
parents:
1
diff
changeset
|
4 #ifdef USE_FAKE_MONO |
e14114170e01
applied 'fakemono' patch by Bryan Chan scorpio@acm.org
arpi_esp
parents:
1
diff
changeset
|
5 extern void MP3_Init(int fakemono); |
e14114170e01
applied 'fakemono' patch by Bryan Chan scorpio@acm.org
arpi_esp
parents:
1
diff
changeset
|
6 #else |
1 | 7 extern void MP3_Init(); |
732
e14114170e01
applied 'fakemono' patch by Bryan Chan scorpio@acm.org
arpi_esp
parents:
1
diff
changeset
|
8 #endif |
1 | 9 extern int MP3_Open(char *filename,int buffsize); |
10 extern void MP3_SeekFrame(int num,int dir); | |
11 extern void MP3_SeekForward(int num); | |
12 extern int MP3_PrintTAG(); | |
13 extern int MP3_DecodeFrame(unsigned char *hova,short single); | |
14 extern int MP3_FillBuffers(); | |
15 extern void MP3_PrintHeader(); | |
16 extern void MP3_Close(); | |
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: */ | |
31 extern int MP3_OpenDevice(char *devname); /* devname can be NULL for default) */ | |
32 extern void MP3_Play(); | |
33 extern void MP3_Stop(); | |
34 extern void MP3_CloseDevice(); | |
35 |