mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2024-11-10 15:31:39 +00:00
81a318c09b
an alternative to the existing one using libmad. requires at least mpg123-1.12.0, i.e. api version 25. git-svn-id: http://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@414 af15c1b1-3010-417e-b628-4374ebc0bcbd
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_ */
|
|
|