fc11dd05 |
1 | #ifndef __COMMON_MP3_H__ |
2 | #define __COMMON_MP3_H__ |
3 | |
4 | #include <stdio.h> |
abe0ea43 |
5 | |
7c18e34a |
6 | int mp3_find_sync_word(const unsigned char *buf, int size); |
7 | |
fc11dd05 |
8 | /* decoder */ |
75a30842 |
9 | int mp3dec_start(FILE *f, int fpos_start); |
fc11dd05 |
10 | int mp3dec_decode(FILE *f, int *file_pos, int file_len); |
11 | |
12 | extern unsigned short mpeg1_l3_bitrates[16]; |
13 | |
da42200b |
14 | #ifdef __GP2X__ |
abe0ea43 |
15 | void mp3_update_local(int *buffer, int length, int stereo); |
7c18e34a |
16 | void mp3_start_play_local(void *f, int pos); |
da42200b |
17 | #endif |
abe0ea43 |
18 | |
fc11dd05 |
19 | #endif // __COMMON_MP3_H__ |