diff options
author | Thibaut Mattern <tmattern@users.sourceforge.net> | 2004-02-11 20:40:00 +0000 |
---|---|---|
committer | Thibaut Mattern <tmattern@users.sourceforge.net> | 2004-02-11 20:40:00 +0000 |
commit | 34560d0ad0726e354eb5679541d9dc7453555114 (patch) | |
tree | 6d679388d2fa293ba1796f606281948d12a400dd /src/demuxers/group_audio.h | |
parent | 07193b78bd361cbdc9cca0936aeec7509b3c36c7 (diff) | |
download | xine-lib-34560d0ad0726e354eb5679541d9dc7453555114.tar.gz xine-lib-34560d0ad0726e354eb5679541d9dc7453555114.tar.bz2 |
Amiga MOD music file demuxer from Paul Eggleton (uses the ModPlug engine).
configure.ac and Makefile.am from Daniel
I've ported the demuxer to current cvs (BUF_FLAG_FRAME_END issue), i've fixed the seeking problem and the pts computing.
Tested with some .mod files, it rocks ;)
Back to the amiga era ;)
(you have to install the ModPlug engine first)
CVS patchset: 6130
CVS date: 2004/02/11 20:40:00
Diffstat (limited to 'src/demuxers/group_audio.h')
-rw-r--r-- | src/demuxers/group_audio.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/demuxers/group_audio.h b/src/demuxers/group_audio.h index 8c4dd01e9..847f4857f 100644 --- a/src/demuxers/group_audio.h +++ b/src/demuxers/group_audio.h @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: group_audio.h,v 1.3 2003/12/19 05:09:16 tmmm Exp $ + * $Id: group_audio.h,v 1.4 2004/02/11 20:40:00 tmattern Exp $ */ #ifndef HAVE_GROUP_AUDIO_H @@ -38,4 +38,8 @@ void *demux_voc_init_plugin (xine_t *xine, void *data); void *demux_vox_init_plugin (xine_t *xine, void *data); void *demux_wav_init_plugin (xine_t *xine, void *data); +#ifdef HAVE_MODPLUG +void *demux_mod_init_plugin (xine_t *xine, void *data); +#endif + #endif |