1 /*
2  * audio.h:
3  * Attempt to extract audio frames embedded in buffers.
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 __AUDIO_H__
14 #define __AUDIO_H__
15 
16 unsigned char *find_mpeg_stream(const unsigned char *data, const size_t len,
17         unsigned char **mpegdata, size_t *mpeglen);
18 
19 #endif /* __AUDIO_H__ */
20