quakespasm/Quake/snd_mp3.h
Ozkan Sezer ffe43cf024 snd_mp3.c: moved mp3 tag stuff into a separate module snd_mp3tag.c
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
2019-12-12 11:37:32 +00:00

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_ */