mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2024-11-10 15:31:39 +00:00
ffe43cf024
so that it can be used in snd_mpg123.c, too, if needed. git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@1658 af15c1b1-3010-417e-b628-4374ebc0bcbd
14 lines
251 B
C
14 lines
251 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;
|
|
int mp3_skiptags(snd_stream_t *);
|
|
|
|
#endif /* USE_CODEC_MP3 */
|
|
|
|
#endif /* ! _SND_MP3_H_ */
|
|
|