spingle/source/snd_mp3.h

14 lines
213 B
C
Raw Normal View History

2019-11-24 20:45:15 -08:00
/* MP3 decoding support using libmad or libmpg123. */
2019-12-02 04:24:20 -08:00
#ifndef _SND_MP3_H_
2019-11-24 20:45:15 -08:00
#define _SND_MP3_H_
#if defined(USE_CODEC_MP3)
extern snd_codec_t mp3_codec;
2019-11-25 17:40:18 -08:00
#endif /* USE_CODEC_MP3 */
2019-11-24 20:45:15 -08:00
2019-11-25 17:40:18 -08:00
#endif /* ! _SND_MP3_H_ */
2019-11-24 20:45:15 -08:00