1
0
mirror of https://github.com/parasyte/alt64 synced 2024-11-02 08:15:07 -04:00
alt64/inc/mp3.h
2016-12-30 00:38:05 +00:00

10 lines
187 B
C

#ifndef _MP3_H_
#define _MP3_H_
void mp3_Start(char *fname, long long *samples, int *rate, int *channels);
void mp3_Stop(void);
int mp3_Update(char *buf, int bytes);
#endif // _MP3_H_