annotate mp3lib/mp3.h @ 10743:3d1eab0d9c5a

* Add multi device support. For the moment up to 16 cards are supported. More can be added easily by changing 2 defines. This makes 90% of the patch (mostly stupid s/$var/card->$var/) The different devices can be accessed by different minor numbers (0-15): mknod /dev/mga_vid0 c 178 0 mknod /dev/mga_vid1 c 178 1 mknod /dev/mga_vid2 c 178 2 mknod /dev/mga_vid3 c 178 3 ... ln -s mga_vid /dev/mga_vid * Change the devfs code to let the kernel assign us a major and a minor number (what is the sense behind using devfs anyways if we dont do that ?) Subdevices for the different cards are created. mga_vid uses the first card (for compatibility) * Fix a possible error when mmap() is called before the card is configured by a ioctl().
author attila
date Sun, 31 Aug 2003 20:57:34 +0000
parents e14114170e01
children f580a7755ac5
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1 /* MP3 Player Library 2.0 (C) 1999 A'rpi/Astral&ESP-team */
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
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
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
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
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
9 extern int MP3_Open(char *filename,int buffsize);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
10 extern void MP3_SeekFrame(int num,int dir);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
11 extern void MP3_SeekForward(int num);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
12 extern int MP3_PrintTAG();
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
13 extern int MP3_DecodeFrame(unsigned char *hova,short single);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
14 extern int MP3_FillBuffers();
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
15 extern void MP3_PrintHeader();
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
16 extern void MP3_Close();
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
17 /* public variables: */
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
18 extern int MP3_eof; // set if EOF reached
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
19 extern int MP3_pause; // lock playing
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
20 /* informational: */
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
21 extern int MP3_filesize; // filesize
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
22 extern int MP3_frames; // current frame no
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
23 extern int MP3_fpos; // current file pos
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
24 extern int MP3_framesize; // current framesize in bytes (including header)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
25 extern int MP3_bitrate; // current bitrate (kbits)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
26 extern int MP3_samplerate; // current sampling freq (Hz)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
27 extern int MP3_channels;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
28 extern int MP3_bps;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
29
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
30 /* player level: */
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
31 extern int MP3_OpenDevice(char *devname); /* devname can be NULL for default) */
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
32 extern void MP3_Play();
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
33 extern void MP3_Stop();
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
34 extern void MP3_CloseDevice();
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
35