2017-10-06 09:48:52 -04:00
|
|
|
//
|
|
|
|
// Copyright (c) 2017 The Altra64 project contributors
|
|
|
|
// Portions (c) 2013 saturnu (Alt64) based on libdragon, Neo64Menu, ED64IO, libn64-hkz, libmikmod
|
|
|
|
// See LICENSE file in the project root for full license information.
|
|
|
|
//
|
2014-06-30 03:16:08 -04:00
|
|
|
|
|
|
|
#ifndef _MP3_H_
|
|
|
|
#define _MP3_H_
|
|
|
|
|
2016-12-29 19:38:05 -05:00
|
|
|
void mp3_Start(char *fname, long long *samples, int *rate, int *channels);
|
|
|
|
void mp3_Stop(void);
|
|
|
|
int mp3_Update(char *buf, int bytes);
|
2014-06-30 03:16:08 -04:00
|
|
|
|
|
|
|
#endif // _MP3_H_
|