From 34560d0ad0726e354eb5679541d9dc7453555114 Mon Sep 17 00:00:00 2001 From: Thibaut Mattern Date: Wed, 11 Feb 2004 20:40:00 +0000 Subject: 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 --- src/demuxers/group_audio.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/demuxers/group_audio.c') 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 } }; -- cgit v1.2.3