mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2024-11-10 07:21:58 +00:00
14 lines
204 B
C
14 lines
204 B
C
|
/* MP3 decoding support using libmad. */
|
||
|
|
||
|
#if !defined(_SND_MP3_H_)
|
||
|
#define _SND_MP3_H_
|
||
|
|
||
|
#if defined(USE_CODEC_MP3)
|
||
|
|
||
|
extern snd_codec_t mp3_codec;
|
||
|
|
||
|
#endif /* USE_CODEC_MP3 */
|
||
|
|
||
|
#endif /* ! _SND_MP3_H_ */
|
||
|
|