1 /*
2  * playaudio.h:
3  * Play audio data.
4  *
5  * Copyright (c) 2012 David Suárez.
6  * Email: david.sephirot@gmail.com
7  *
8  * Copyright (c) 2002 Chris Lightfoot.
9  * Email: chris@ex-parrot.com; WWW: http://www.ex-parrot.com/~chris/
10  *
11  */
12 
13 #ifndef __PLAYAUDIO_H__
14 #define __PLAYAUDIO_H__
15 
16 void do_mpeg_player(void);
17 void stop_mpeg_player(void);
18 
19 void mpeg_submit_chunk(const unsigned char *data, const size_t len);
20 
21 #endif /* __PLAYAUDIO_H__ */
22