diff options
author | Mike Melanson <mike@multimedia.cx> | 2003-01-04 16:40:48 +0000 |
---|---|---|
committer | Mike Melanson <mike@multimedia.cx> | 2003-01-04 16:40:48 +0000 |
commit | a194e2baebc2accdebb52e74c796deb857019cd0 (patch) | |
tree | 2450949fc71adea11dc4bd6c035ed071ec323224 /src/demuxers/demux_smjpeg.c | |
parent | d65506418ff718425895fdc73722dcc57a66826f (diff) | |
download | xine-lib-a194e2baebc2accdebb52e74c796deb857019cd0.tar.gz xine-lib-a194e2baebc2accdebb52e74c796deb857019cd0.tar.bz2 |
added the FILM and SMJPEG demuxers to the games group
CVS patchset: 3773
CVS date: 2003/01/04 16:40:48
Diffstat (limited to 'src/demuxers/demux_smjpeg.c')
-rw-r--r-- | src/demuxers/demux_smjpeg.c | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/src/demuxers/demux_smjpeg.c b/src/demuxers/demux_smjpeg.c index 7c76a7489..4717a5c67 100644 --- a/src/demuxers/demux_smjpeg.c +++ b/src/demuxers/demux_smjpeg.c @@ -21,7 +21,7 @@ * For more information on the SMJPEG file format, visit: * http://www.lokigames.com/development/smjpeg.php3 * - * $Id: demux_smjpeg.c,v 1.31 2003/01/04 14:48:12 miguelfreitas Exp $ + * $Id: demux_smjpeg.c,v 1.32 2003/01/04 16:40:48 tmmm Exp $ */ #ifdef HAVE_CONFIG_H @@ -535,7 +535,7 @@ static void class_dispose (demux_class_t *this_gen) { free (this); } -static void *init_plugin (xine_t *xine, void *data) { +void *demux_smjpeg_init_plugin (xine_t *xine, void *data) { demux_smjpeg_class_t *this; @@ -552,13 +552,3 @@ static void *init_plugin (xine_t *xine, void *data) { return this; } - -/* - * exported plugin catalog entry - */ - -plugin_info_t xine_plugin_info[] = { - /* type, API, "name", version, special_info, init_function */ - { PLUGIN_DEMUX, 20, "smjpeg", XINE_VERSION_CODE, NULL, init_plugin }, - { PLUGIN_NONE, 0, "", 0, NULL, NULL } -}; |