summaryrefslogtreecommitdiff
path: root/src/demuxers
diff options
context:
space:
mode:
Diffstat (limited to 'src/demuxers')
-rw-r--r--src/demuxers/demux.h7
-rw-r--r--src/demuxers/demux_aiff.c3
-rw-r--r--src/demuxers/demux_asf.c3
-rw-r--r--src/demuxers/demux_avi.c3
-rw-r--r--src/demuxers/demux_cda.c3
-rw-r--r--src/demuxers/demux_elem.c3
-rw-r--r--src/demuxers/demux_film.c3
-rw-r--r--src/demuxers/demux_fli.c3
-rw-r--r--src/demuxers/demux_idcin.c3
-rw-r--r--src/demuxers/demux_mpeg.c3
-rw-r--r--src/demuxers/demux_mpeg_block.c3
-rw-r--r--src/demuxers/demux_mpgaudio.c3
-rw-r--r--src/demuxers/demux_ogg.c3
-rw-r--r--src/demuxers/demux_pes.c3
-rw-r--r--src/demuxers/demux_qt.c3
-rw-r--r--src/demuxers/demux_roq.c3
-rw-r--r--src/demuxers/demux_smjpeg.c3
-rw-r--r--src/demuxers/demux_snd.c3
-rw-r--r--src/demuxers/demux_ts.c3
-rw-r--r--src/demuxers/demux_voc.c3
-rw-r--r--src/demuxers/demux_vqa.c3
-rw-r--r--src/demuxers/demux_wav.c3
-rw-r--r--src/demuxers/demux_wc3movie.c3
23 files changed, 23 insertions, 50 deletions
diff --git a/src/demuxers/demux.h b/src/demuxers/demux.h
index c56b4fa8f..e2d5b7391 100644
--- a/src/demuxers/demux.h
+++ b/src/demuxers/demux.h
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: demux.h,v 1.17 2002/07/05 17:31:59 mroi Exp $
+ * $Id: demux.h,v 1.18 2002/09/05 22:18:50 mroi Exp $
*/
#ifndef HAVE_DEMUX_H
@@ -60,11 +60,6 @@ typedef struct demux_plugin_s demux_plugin_t;
struct demux_plugin_s
{
/*
- * plugin interface version, lower versions _may_ be supported
- */
- int interface_version;
-
- /*
* ask demuxer to open the given stream (input-plugin)
* using the content-detection method specified in <stage>
*
diff --git a/src/demuxers/demux_aiff.c b/src/demuxers/demux_aiff.c
index 36be57f73..058eb036b 100644
--- a/src/demuxers/demux_aiff.c
+++ b/src/demuxers/demux_aiff.c
@@ -19,7 +19,7 @@
*
* AIFF File Demuxer by Mike Melanson (melanson@pcisys.net)
*
- * $Id: demux_aiff.c,v 1.3 2002/09/05 20:44:39 mroi Exp $
+ * $Id: demux_aiff.c,v 1.4 2002/09/05 22:18:51 mroi Exp $
*
*/
@@ -496,7 +496,6 @@ static void *init_demuxer_plugin(int iface, xine_t *xine) {
_("valid mrls ending for aiff demuxer"),
NULL, 10, NULL, NULL);
- this->demux_plugin.interface_version = DEMUXER_PLUGIN_IFACE_VERSION;
this->demux_plugin.open = demux_aiff_open;
this->demux_plugin.start = demux_aiff_start;
this->demux_plugin.seek = demux_aiff_seek;
diff --git a/src/demuxers/demux_asf.c b/src/demuxers/demux_asf.c
index 97724b9b9..a17e0adf4 100644
--- a/src/demuxers/demux_asf.c
+++ b/src/demuxers/demux_asf.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: demux_asf.c,v 1.55 2002/09/05 20:44:39 mroi Exp $
+ * $Id: demux_asf.c,v 1.56 2002/09/05 22:18:51 mroi Exp $
*
* demultiplexer for asf streams
*
@@ -1452,7 +1452,6 @@ static void *init_demuxer_plugin (xine_t *xine, void *data) {
_("valid mrls ending for asf demuxer"),
NULL, 20, NULL, NULL);
- this->demux_plugin.interface_version = DEMUXER_PLUGIN_IFACE_VERSION;
this->demux_plugin.open = demux_asf_open;
this->demux_plugin.start = demux_asf_start;
this->demux_plugin.seek = demux_asf_seek;
diff --git a/src/demuxers/demux_avi.c b/src/demuxers/demux_avi.c
index 4e0ff1acc..587ec2279 100644
--- a/src/demuxers/demux_avi.c
+++ b/src/demuxers/demux_avi.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: demux_avi.c,v 1.108 2002/09/04 23:31:07 guenter Exp $
+ * $Id: demux_avi.c,v 1.109 2002/09/05 22:18:51 mroi Exp $
*
* demultiplexer for avi streams
*
@@ -1604,7 +1604,6 @@ static void *init_demuxer_plugin(xine_t *xine, void *data) {
_("valid mrls ending for avi demuxer"),
NULL, 20, NULL, NULL);
- this->demux_plugin.interface_version = DEMUXER_PLUGIN_IFACE_VERSION;
this->demux_plugin.open = demux_avi_open;
this->demux_plugin.start = demux_avi_start;
this->demux_plugin.seek = demux_avi_seek;
diff --git a/src/demuxers/demux_cda.c b/src/demuxers/demux_cda.c
index 2afd05895..f8c6bbbb5 100644
--- a/src/demuxers/demux_cda.c
+++ b/src/demuxers/demux_cda.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: demux_cda.c,v 1.22 2002/09/05 20:44:39 mroi Exp $
+ * $Id: demux_cda.c,v 1.23 2002/09/05 22:18:51 mroi Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -305,7 +305,6 @@ static void *init_demuxer_plugin(int iface, xine_t *xine) {
this->config = xine->config;
this->xine = xine;
- this->demux_plugin.interface_version = DEMUX_CDA_IFACE_VERSION;
this->demux_plugin.open = demux_cda_open;
this->demux_plugin.start = demux_cda_start;
this->demux_plugin.seek = demux_cda_seek;
diff --git a/src/demuxers/demux_elem.c b/src/demuxers/demux_elem.c
index 4063a71d5..e879a38a8 100644
--- a/src/demuxers/demux_elem.c
+++ b/src/demuxers/demux_elem.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: demux_elem.c,v 1.50 2002/09/04 23:31:07 guenter Exp $
+ * $Id: demux_elem.c,v 1.51 2002/09/05 22:18:51 mroi Exp $
*
* demultiplexer for elementary mpeg streams
*
@@ -371,7 +371,6 @@ static void *init_demuxer_plugin (xine_t *xine, void *data) {
_("valid mrls ending for elementary demuxer"),
NULL, 20, NULL, NULL);
- this->demux_plugin.interface_version = DEMUX_MPEG_ELEM_IFACE_VERSION;
this->demux_plugin.open = demux_mpeg_elem_open;
this->demux_plugin.start = demux_mpeg_elem_start;
this->demux_plugin.seek = demux_mpeg_elem_seek;
diff --git a/src/demuxers/demux_film.c b/src/demuxers/demux_film.c
index 73967a5f1..66724faf7 100644
--- a/src/demuxers/demux_film.c
+++ b/src/demuxers/demux_film.c
@@ -21,7 +21,7 @@
* For more information on the FILM file format, visit:
* http://www.pcisys.net/~melanson/codecs/
*
- * $Id: demux_film.c,v 1.23 2002/09/05 20:44:39 mroi Exp $
+ * $Id: demux_film.c,v 1.24 2002/09/05 22:18:51 mroi Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -804,7 +804,6 @@ static void *init_demuxer_plugin(int iface, xine_t *xine) {
_("valid mrls ending for film demuxer"),
NULL, 20, NULL, NULL);
- this->demux_plugin.interface_version = DEMUXER_PLUGIN_IFACE_VERSION;
this->demux_plugin.open = demux_film_open;
this->demux_plugin.start = demux_film_start;
this->demux_plugin.seek = demux_film_seek;
diff --git a/src/demuxers/demux_fli.c b/src/demuxers/demux_fli.c
index 11d8460f2..e16da55fd 100644
--- a/src/demuxers/demux_fli.c
+++ b/src/demuxers/demux_fli.c
@@ -22,7 +22,7 @@
* avoid while programming a FLI decoder, visit:
* http://www.pcisys.net/~melanson/codecs/
*
- * $Id: demux_fli.c,v 1.8 2002/09/05 20:44:39 mroi Exp $
+ * $Id: demux_fli.c,v 1.9 2002/09/05 22:18:51 mroi Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -421,7 +421,6 @@ static void *init_demuxer_plugin(int iface, xine_t *xine) {
"valid mrls ending for fli demuxer",
NULL, 10, NULL, NULL);
- this->demux_plugin.interface_version = DEMUXER_PLUGIN_IFACE_VERSION;
this->demux_plugin.open = demux_fli_open;
this->demux_plugin.start = demux_fli_start;
this->demux_plugin.seek = demux_fli_seek;
diff --git a/src/demuxers/demux_idcin.c b/src/demuxers/demux_idcin.c
index 79ef976b7..749f3e938 100644
--- a/src/demuxers/demux_idcin.c
+++ b/src/demuxers/demux_idcin.c
@@ -63,7 +63,7 @@
* - if any bytes exceed 63, do not shift the bytes at all before
* transmitting them to the video decoder
*
- * $Id: demux_idcin.c,v 1.8 2002/09/05 20:44:39 mroi Exp $
+ * $Id: demux_idcin.c,v 1.9 2002/09/05 22:18:51 mroi Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -607,7 +607,6 @@ static void *init_demuxer_plugin(int iface, xine_t *xine) {
_("valid mrls ending for idcin demuxer"),
NULL, 20, NULL, NULL);
- this->demux_plugin.interface_version = DEMUXER_PLUGIN_IFACE_VERSION;
this->demux_plugin.open = demux_idcin_open;
this->demux_plugin.start = demux_idcin_start;
this->demux_plugin.seek = demux_idcin_seek;
diff --git a/src/demuxers/demux_mpeg.c b/src/demuxers/demux_mpeg.c
index 8347d2de7..1e4649701 100644
--- a/src/demuxers/demux_mpeg.c
+++ b/src/demuxers/demux_mpeg.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: demux_mpeg.c,v 1.74 2002/09/04 23:31:07 guenter Exp $
+ * $Id: demux_mpeg.c,v 1.75 2002/09/05 22:18:52 mroi Exp $
*
* demultiplexer for mpeg 1/2 program streams
* reads streams of variable blocksizes
@@ -1157,7 +1157,6 @@ static void *init_demuxer_plugin (xine_t *xine, void *data) {
_("valid mrls ending for mpeg demuxer"),
NULL, 20, NULL, NULL);
- this->demux_plugin.interface_version = DEMUXER_PLUGIN_IFACE_VERSION;
this->demux_plugin.open = demux_mpeg_open;
this->demux_plugin.start = demux_mpeg_start;
this->demux_plugin.seek = demux_mpeg_seek;
diff --git a/src/demuxers/demux_mpeg_block.c b/src/demuxers/demux_mpeg_block.c
index fb2992b79..e3421fbf1 100644
--- a/src/demuxers/demux_mpeg_block.c
+++ b/src/demuxers/demux_mpeg_block.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: demux_mpeg_block.c,v 1.111 2002/09/04 23:31:07 guenter Exp $
+ * $Id: demux_mpeg_block.c,v 1.112 2002/09/05 22:18:52 mroi Exp $
*
* demultiplexer for mpeg 1/2 program streams
*
@@ -1201,7 +1201,6 @@ static void *init_demuxer_plugin (xine_t *xine, void *data) {
_("valid mrls ending for mpeg block demuxer"),
NULL, 20, NULL, NULL);
- this->demux_plugin.interface_version = DEMUXER_PLUGIN_IFACE_VERSION;
this->demux_plugin.open = demux_mpeg_block_open;
this->demux_plugin.start = demux_mpeg_block_start;
this->demux_plugin.seek = demux_mpeg_block_seek;
diff --git a/src/demuxers/demux_mpgaudio.c b/src/demuxers/demux_mpgaudio.c
index ec9b8c02d..67cdc7854 100644
--- a/src/demuxers/demux_mpgaudio.c
+++ b/src/demuxers/demux_mpgaudio.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: demux_mpgaudio.c,v 1.59 2002/09/04 23:31:08 guenter Exp $
+ * $Id: demux_mpgaudio.c,v 1.60 2002/09/05 22:18:52 mroi Exp $
*
* demultiplexer for mpeg audio (i.e. mp3) streams
*
@@ -666,7 +666,6 @@ static void *init_demuxer_plugin (xine_t *xine, void *data) {
_("valid mrls ending for mpeg audio demuxer"),
NULL, 20, NULL, NULL);
- this->demux_plugin.interface_version = DEMUX_MPGAUDIO_IFACE_VERSION;
this->demux_plugin.open = demux_mpgaudio_open;
this->demux_plugin.start = demux_mpgaudio_start;
this->demux_plugin.seek = demux_mpgaudio_seek;
diff --git a/src/demuxers/demux_ogg.c b/src/demuxers/demux_ogg.c
index d3deffede..18529bd5b 100644
--- a/src/demuxers/demux_ogg.c
+++ b/src/demuxers/demux_ogg.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: demux_ogg.c,v 1.40 2002/09/04 23:31:08 guenter Exp $
+ * $Id: demux_ogg.c,v 1.41 2002/09/05 22:18:52 mroi Exp $
*
* demultiplexer for ogg streams
*
@@ -1086,7 +1086,6 @@ static void *init_demuxer_plugin (xine_t *xine, void *data) {
_("valid mrls ending for ogg demuxer"),
NULL, 20, NULL, NULL);
- this->demux_plugin.interface_version = DEMUXER_PLUGIN_IFACE_VERSION;
this->demux_plugin.open = demux_ogg_open;
this->demux_plugin.start = demux_ogg_start;
this->demux_plugin.seek = demux_ogg_seek;
diff --git a/src/demuxers/demux_pes.c b/src/demuxers/demux_pes.c
index ab492fce8..9259431e7 100644
--- a/src/demuxers/demux_pes.c
+++ b/src/demuxers/demux_pes.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: demux_pes.c,v 1.36 2002/09/05 20:44:39 mroi Exp $
+ * $Id: demux_pes.c,v 1.37 2002/09/05 22:18:52 mroi Exp $
*
* demultiplexer for mpeg 2 PES (Packetized Elementary Streams)
* reads streams of variable blocksizes
@@ -618,7 +618,6 @@ static void *init_demuxer_plugin(int iface, xine_t *xine) {
_("valid mrls ending for pes demuxer"),
NULL, 20, NULL, NULL);
- this->demux_plugin.interface_version = DEMUXER_PLUGIN_IFACE_VERSION;
this->demux_plugin.open = demux_pes_open;
this->demux_plugin.start = demux_pes_start;
this->demux_plugin.seek = demux_pes_seek;
diff --git a/src/demuxers/demux_qt.c b/src/demuxers/demux_qt.c
index fe8922ae5..d0849581c 100644
--- a/src/demuxers/demux_qt.c
+++ b/src/demuxers/demux_qt.c
@@ -30,7 +30,7 @@
* build_frame_table
* free_qt_info
*
- * $Id: demux_qt.c,v 1.81 2002/09/04 23:31:08 guenter Exp $
+ * $Id: demux_qt.c,v 1.82 2002/09/05 22:18:52 mroi Exp $
*
*/
@@ -1763,7 +1763,6 @@ static void *init_demuxer_plugin (xine_t *xine, void *data) {
_("valid mrls ending for qt demuxer"),
NULL, 20, NULL, NULL);
- this->demux_plugin.interface_version = DEMUXER_PLUGIN_IFACE_VERSION;
this->demux_plugin.open = demux_qt_open;
this->demux_plugin.start = demux_qt_start;
this->demux_plugin.seek = demux_qt_seek;
diff --git a/src/demuxers/demux_roq.c b/src/demuxers/demux_roq.c
index b9f4cea10..7f398b7a6 100644
--- a/src/demuxers/demux_roq.c
+++ b/src/demuxers/demux_roq.c
@@ -21,7 +21,7 @@
* For more information regarding the RoQ file format, visit:
* http://www.csse.monash.edu.au/~timf/
*
- * $Id: demux_roq.c,v 1.12 2002/09/05 20:44:39 mroi Exp $
+ * $Id: demux_roq.c,v 1.13 2002/09/05 22:18:52 mroi Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -544,7 +544,6 @@ static void *init_demuxer_plugin(int iface, xine_t *xine) {
_("valid mrls ending for roq demuxer"),
NULL, 20, NULL, NULL);
- this->demux_plugin.interface_version = DEMUXER_PLUGIN_IFACE_VERSION;
this->demux_plugin.open = demux_roq_open;
this->demux_plugin.start = demux_roq_start;
this->demux_plugin.seek = demux_roq_seek;
diff --git a/src/demuxers/demux_smjpeg.c b/src/demuxers/demux_smjpeg.c
index a0aef33f0..2ad210a00 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.12 2002/09/05 20:44:39 mroi Exp $
+ * $Id: demux_smjpeg.c,v 1.13 2002/09/05 22:18:53 mroi Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -573,7 +573,6 @@ static void *init_demuxer_plugin(int iface, xine_t *xine) {
_("valid mrls ending for smjpeg demuxer"),
NULL, 20, NULL, NULL);
- this->demux_plugin.interface_version = DEMUXER_PLUGIN_IFACE_VERSION;
this->demux_plugin.open = demux_smjpeg_open;
this->demux_plugin.start = demux_smjpeg_start;
this->demux_plugin.seek = demux_smjpeg_seek;
diff --git a/src/demuxers/demux_snd.c b/src/demuxers/demux_snd.c
index 02139bcdc..b2a50b710 100644
--- a/src/demuxers/demux_snd.c
+++ b/src/demuxers/demux_snd.c
@@ -19,7 +19,7 @@
*
* SND/AU File Demuxer by Mike Melanson (melanson@pcisys.net)
*
- * $Id: demux_snd.c,v 1.4 2002/09/05 20:44:39 mroi Exp $
+ * $Id: demux_snd.c,v 1.5 2002/09/05 22:18:53 mroi Exp $
*
*/
@@ -481,7 +481,6 @@ static void *init_demuxer_plugin(int iface, xine_t *xine) {
_("valid mrls ending for snd demuxer"),
NULL, 10, NULL, NULL);
- this->demux_plugin.interface_version = DEMUXER_PLUGIN_IFACE_VERSION;
this->demux_plugin.open = demux_snd_open;
this->demux_plugin.start = demux_snd_start;
this->demux_plugin.seek = demux_snd_seek;
diff --git a/src/demuxers/demux_ts.c b/src/demuxers/demux_ts.c
index 1293f36d1..5d9a01547 100644
--- a/src/demuxers/demux_ts.c
+++ b/src/demuxers/demux_ts.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: demux_ts.c,v 1.54 2002/09/05 20:44:39 mroi Exp $
+ * $Id: demux_ts.c,v 1.55 2002/09/05 22:18:53 mroi Exp $
*
* Demultiplexer for MPEG2 Transport Streams.
*
@@ -1683,7 +1683,6 @@ static void *init_demuxer_plugin(int iface, xine_t *xine) {
_("valid mrls ending for ts demuxer"),
NULL, 20, NULL, NULL);
- this->plugin.interface_version = DEMUXER_PLUGIN_IFACE_VERSION;
this->plugin.open = demux_ts_open;
this->plugin.start = demux_ts_start;
this->plugin.seek = demux_ts_seek;
diff --git a/src/demuxers/demux_voc.c b/src/demuxers/demux_voc.c
index 67071ed32..1f5bd88a3 100644
--- a/src/demuxers/demux_voc.c
+++ b/src/demuxers/demux_voc.c
@@ -23,7 +23,7 @@
* It will only play that block if it is PCM data. More variations will be
* supported as they are encountered.
*
- * $Id: demux_voc.c,v 1.4 2002/09/05 20:44:39 mroi Exp $
+ * $Id: demux_voc.c,v 1.5 2002/09/05 22:18:53 mroi Exp $
*
*/
@@ -473,7 +473,6 @@ static void *init_demuxer_plugin(int iface, xine_t *xine) {
_("valid mrls ending for voc demuxer"),
NULL, 10, NULL, NULL);
- this->demux_plugin.interface_version = DEMUXER_PLUGIN_IFACE_VERSION;
this->demux_plugin.open = demux_voc_open;
this->demux_plugin.start = demux_voc_start;
this->demux_plugin.seek = demux_voc_seek;
diff --git a/src/demuxers/demux_vqa.c b/src/demuxers/demux_vqa.c
index de693d6fe..b8ea41078 100644
--- a/src/demuxers/demux_vqa.c
+++ b/src/demuxers/demux_vqa.c
@@ -21,7 +21,7 @@
* For more information regarding the VQA file format, visit:
* http://www.pcisys.net/~melanson/codecs/
*
- * $Id: demux_vqa.c,v 1.4 2002/09/05 20:44:39 mroi Exp $
+ * $Id: demux_vqa.c,v 1.5 2002/09/05 22:18:53 mroi Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -570,7 +570,6 @@ static void *init_demuxer_plugin(int iface, xine_t *xine) {
_("valid mrls ending for vqa demuxer"),
NULL, 10, NULL, NULL);
- this->demux_plugin.interface_version = DEMUXER_PLUGIN_IFACE_VERSION;
this->demux_plugin.open = demux_vqa_open;
this->demux_plugin.start = demux_vqa_start;
this->demux_plugin.seek = demux_vqa_seek;
diff --git a/src/demuxers/demux_wav.c b/src/demuxers/demux_wav.c
index 910781153..020d4a8a0 100644
--- a/src/demuxers/demux_wav.c
+++ b/src/demuxers/demux_wav.c
@@ -20,7 +20,7 @@
* MS WAV File Demuxer by Mike Melanson (melanson@pcisys.net)
* based on WAV specs that are available far and wide
*
- * $Id: demux_wav.c,v 1.10 2002/09/05 20:44:39 mroi Exp $
+ * $Id: demux_wav.c,v 1.11 2002/09/05 22:18:53 mroi Exp $
*
*/
@@ -482,7 +482,6 @@ static void *init_demuxer_plugin(int iface, xine_t *xine) {
_("valid mrls ending for wav demuxer"),
NULL, 20, NULL, NULL);
- this->demux_plugin.interface_version = DEMUXER_PLUGIN_IFACE_VERSION;
this->demux_plugin.open = demux_wav_open;
this->demux_plugin.start = demux_wav_start;
this->demux_plugin.seek = demux_wav_seek;
diff --git a/src/demuxers/demux_wc3movie.c b/src/demuxers/demux_wc3movie.c
index 4dacb26df..5d1f1cd14 100644
--- a/src/demuxers/demux_wc3movie.c
+++ b/src/demuxers/demux_wc3movie.c
@@ -22,7 +22,7 @@
* For more information on the MVE file format, visit:
* http://www.pcisys.net/~melanson/codecs/
*
- * $Id: demux_wc3movie.c,v 1.5 2002/09/05 20:44:39 mroi Exp $
+ * $Id: demux_wc3movie.c,v 1.6 2002/09/05 22:18:53 mroi Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -611,7 +611,6 @@ static void *init_demuxer_plugin(int iface, xine_t *xine) {
_("valid mrls ending for mve demuxer"),
NULL, 10, NULL, NULL);
- this->demux_plugin.interface_version = DEMUXER_PLUGIN_IFACE_VERSION;
this->demux_plugin.open = demux_mve_open;
this->demux_plugin.start = demux_mve_start;
this->demux_plugin.seek = demux_mve_seek;