summaryrefslogtreecommitdiff
path: root/src/demuxers/demux_eawve.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/demuxers/demux_eawve.c')
-rw-r--r--src/demuxers/demux_eawve.c12
1 files changed, 3 insertions, 9 deletions
diff --git a/src/demuxers/demux_eawve.c b/src/demuxers/demux_eawve.c
index 3949d2a5c..f2cbf79dd 100644
--- a/src/demuxers/demux_eawve.c
+++ b/src/demuxers/demux_eawve.c
@@ -19,7 +19,7 @@
*/
/*
- * $Id: demux_eawve.c,v 1.19 2003/07/25 21:02:05 miguelfreitas Exp $
+ * $Id: demux_eawve.c,v 1.20 2003/08/25 21:51:38 f1rmb Exp $
*
* demux_eawve.c, Demuxer plugin for Electronic Arts' WVE file format
*
@@ -44,6 +44,7 @@
#include "xineutils.h"
#include "bswap.h"
#include "demux.h"
+#include "group_games.h"
#define FOURCC_TAG(ch0, ch1, ch2, ch3) \
(((uint32_t)(ch3)) | \
@@ -422,7 +423,7 @@ static void class_dispose(demux_class_t *this){
free(this);
}
-void *demux_eawve_init_plugin(xine_t *xine, void *data){
+void *demux_eawve_init_plugin(xine_t *xine, void *data) {
demux_eawve_class_t *this;
this = xine_xmalloc(sizeof(demux_eawve_class_t));
@@ -436,10 +437,3 @@ void *demux_eawve_init_plugin(xine_t *xine, void *data){
return this;
}
-
-#if 0
-plugin_info_t xine_plugin_info[] = {
- { PLUGIN_DEMUX, 22, "wve", XINE_VERSION_CODE, NULL, (void*)demux_eawve_init_plugin},
- { PLUGIN_NONE, 0, "", 0, NULL, NULL }
-};
-#endif