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.c | |
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.c')
-rw-r--r-- | src/demuxers/group_audio.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/demuxers/group_audio.c b/src/demuxers/group_audio.c index 94ffee634..bcf0ddb63 100644 --- a/src/demuxers/group_audio.c +++ b/src/demuxers/group_audio.c @@ -19,7 +19,7 @@ * * This file contains plugin entries for several demuxers used in games * - * $Id: group_audio.c,v 1.11 2004/01/12 17:35:15 miguelfreitas Exp $ + * $Id: group_audio.c,v 1.12 2004/02/11 20:40:00 tmattern Exp $ */ #ifdef HAVE_CONFIG_H @@ -49,5 +49,8 @@ plugin_info_t xine_plugin_info[] = { { PLUGIN_DEMUX, 24, "voc", XINE_VERSION_CODE, NULL, demux_voc_init_plugin }, { PLUGIN_DEMUX, 24, "vox", XINE_VERSION_CODE, NULL, demux_vox_init_plugin }, { PLUGIN_DEMUX, 24, "wav", XINE_VERSION_CODE, NULL, demux_wav_init_plugin }, +#ifdef HAVE_MODPLUG + { PLUGIN_DEMUX, 24, "mod", XINE_VERSION_CODE, NULL, demux_mod_init_plugin }, +#endif { PLUGIN_NONE, 0, "", 0, NULL, NULL } }; |