mirror of
https://github.com/nzp-team/quakespasm.git
synced 2024-11-10 06:32:03 +00:00
13 lines
217 B
C
13 lines
217 B
C
/* MP3 decoding support using libmad or libmpg123. */
|
|
|
|
#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_ */
|
|
|