summaryrefslogtreecommitdiff
path: root/src/demuxers/group_games.c
diff options
context:
space:
mode:
authorMike Melanson <mike@multimedia.cx>2003-05-26 21:06:00 +0000
committerMike Melanson <mike@multimedia.cx>2003-05-26 21:06:00 +0000
commitf7d588f6778dd669499005a363056a8d18d793a1 (patch)
treec51831653153ad5c1fa4a27e4fba3d1581f02c8f /src/demuxers/group_games.c
parent3e56ae7ee1b161a5bf61c205afcb14f280d01e89 (diff)
downloadxine-lib-f7d588f6778dd669499005a363056a8d18d793a1.tar.gz
xine-lib-f7d588f6778dd669499005a363056a8d18d793a1.tar.bz2
added experimental .4xm file demuxer
CVS patchset: 4950 CVS date: 2003/05/26 21:06:00
Diffstat (limited to 'src/demuxers/group_games.c')
-rw-r--r--src/demuxers/group_games.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/demuxers/group_games.c b/src/demuxers/group_games.c
index 4bad0cb22..e0dc1d6fd 100644
--- a/src/demuxers/group_games.c
+++ b/src/demuxers/group_games.c
@@ -19,7 +19,7 @@
*
* This file contains plugin entries for several demuxers used in games
*
- * $Id: group_games.c,v 1.3 2003/04/26 20:16:31 guenter Exp $
+ * $Id: group_games.c,v 1.4 2003/05/26 21:06:01 tmmm Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -39,6 +39,7 @@ void *demux_roq_init_plugin (xine_t *xine, void *data);
void *demux_str_init_plugin (xine_t *xine, void *data);
void *demux_film_init_plugin (xine_t *xine, void *data);
void *demux_smjpeg_init_plugin (xine_t *xine, void *data);
+void *demux_fourxm_init_plugin (xine_t *xine, void *data);
/*
* exported plugin catalog entries
@@ -55,5 +56,6 @@ plugin_info_t xine_plugin_info[] = {
{ PLUGIN_DEMUX, 21, "str", XINE_VERSION_CODE, NULL, demux_str_init_plugin },
{ PLUGIN_DEMUX, 21, "film", XINE_VERSION_CODE, NULL, demux_film_init_plugin },
{ PLUGIN_DEMUX, 21, "smjpeg", XINE_VERSION_CODE, NULL, demux_smjpeg_init_plugin },
+ { PLUGIN_DEMUX, 21, "fourxm", XINE_VERSION_CODE, NULL, demux_fourxm_init_plugin },
{ PLUGIN_NONE, 0, "", 0, NULL, NULL }
};