12 lines
259 B
C
12 lines
259 B
C
#ifndef __AUDIO_MP3_H
|
|
#define __AUDIO_MP3_H
|
|
|
|
#include "audio_hal.h"
|
|
|
|
#define AUDIO_MP3_DECODE_TIME_DEBUG 0
|
|
#define AUDIO_MP3_FILE_BUFFER_SIZE 8192
|
|
|
|
audio_hal_result_t audio_mp3_play(const char *file_name, audio_hal_result_t (*playing_routine)(void));
|
|
|
|
#endif
|