summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSiggi Langauf <siggi@users.sourceforge.net>2002-05-25 19:19:16 +0000
committerSiggi Langauf <siggi@users.sourceforge.net>2002-05-25 19:19:16 +0000
commit92ef4f25e2ad9e5daff482448dac75603e1aaecd (patch)
treef7929764845990894e5a4bec2e159a914cdcb49b /src
parent2fafe645c12eaa0ed713720e385e42bc62ca0f3a (diff)
downloadxine-lib-92ef4f25e2ad9e5daff482448dac75603e1aaecd.tar.gz
xine-lib-92ef4f25e2ad9e5daff482448dac75603e1aaecd.tar.bz2
patch from Michael Roitzsch:
increased interface version numbers, to reflect the xine_t change CVS patchset: 1939 CVS date: 2002/05/25 19:19:16
Diffstat (limited to 'src')
-rw-r--r--src/demuxers/demux.h4
-rw-r--r--src/demuxers/demux_asf.c4
-rw-r--r--src/demuxers/demux_avi.c4
-rw-r--r--src/demuxers/demux_cda.c4
-rw-r--r--src/demuxers/demux_elem.c4
-rw-r--r--src/demuxers/demux_mpeg.c4
-rw-r--r--src/demuxers/demux_mpeg_block.c4
-rw-r--r--src/demuxers/demux_mpgaudio.c4
-rw-r--r--src/demuxers/demux_ogg.c4
-rw-r--r--src/demuxers/demux_pes.c4
-rw-r--r--src/demuxers/demux_qt.c4
-rw-r--r--src/demuxers/demux_ts.c4
-rw-r--r--src/dxr3/dxr3_decode_spu.c4
-rw-r--r--src/dxr3/dxr3_decode_video.c4
-rw-r--r--src/input/input_cda.c4
-rw-r--r--src/input/input_dvd.c4
-rw-r--r--src/input/input_file.c4
-rw-r--r--src/input/input_http.c2
-rw-r--r--src/input/input_mms.c4
-rw-r--r--src/input/input_net.c2
-rw-r--r--src/input/input_plugin.h4
-rw-r--r--src/input/input_rtp.c2
-rw-r--r--src/input/input_stdin_fifo.c4
-rw-r--r--src/input/input_vcd.c4
-rw-r--r--src/liba52/xine_decoder.c4
-rw-r--r--src/libdivx4/xine_decoder.c4
-rw-r--r--src/libdts/xine_decoder.c4
-rw-r--r--src/libffmpeg/xine_decoder.c4
-rw-r--r--src/liblpcm/xine_decoder.c4
-rw-r--r--src/libmad/xine_decoder.c4
-rw-r--r--src/libmpeg2/xine_decoder.c4
-rw-r--r--src/libspucc/xine_decoder.c4
-rw-r--r--src/libspudec/spu_decoder_api.h2
-rw-r--r--src/libspudec/xine_decoder.c4
-rw-r--r--src/libsputext/xine_decoder.c4
-rw-r--r--src/libvorbis/xine_decoder.c4
-rw-r--r--src/libw32dll/w32codec.c6
-rw-r--r--src/libxinevdec/cinepak.c4
-rw-r--r--src/libxinevdec/cyuv.c4
-rw-r--r--src/libxinevdec/msvc.c4
-rw-r--r--src/libxvid/xine_decoder.c2
-rw-r--r--src/xine-engine/xine_internal.h6
42 files changed, 81 insertions, 81 deletions
diff --git a/src/demuxers/demux.h b/src/demuxers/demux.h
index d8622eeb8..873ef0dea 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.14 2002/05/21 00:12:31 siggi Exp $
+ * $Id: demux.h,v 1.15 2002/05/25 19:19:16 siggi Exp $
*/
#ifndef HAVE_DEMUX_H
@@ -35,7 +35,7 @@ extern "C" {
#include "input_plugin.h"
#endif
-#define DEMUXER_PLUGIN_IFACE_VERSION 7
+#define DEMUXER_PLUGIN_IFACE_VERSION 8
#define DEMUX_OK 0
#define DEMUX_FINISHED 1
diff --git a/src/demuxers/demux_asf.c b/src/demuxers/demux_asf.c
index 43b9ed957..15691bda8 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.39 2002/05/21 00:33:34 tmattern Exp $
+ * $Id: demux_asf.c,v 1.40 2002/05/25 19:19:16 siggi Exp $
*
* demultiplexer for asf streams
*
@@ -1445,7 +1445,7 @@ demux_plugin_t *init_demuxer_plugin(int iface, xine_t *xine) {
demux_asf_t *this;
- if (iface != 7) {
+ if (iface != 8) {
printf ("demux_asf: plugin doesn't support plugin API version %d.\n"
" this means there's a version mismatch between xine and this "
" demuxer plugin.\nInstalling current demux plugins should help.\n",
diff --git a/src/demuxers/demux_avi.c b/src/demuxers/demux_avi.c
index 1a12619f8..e168427cf 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.89 2002/05/24 11:32:02 miguelfreitas Exp $
+ * $Id: demux_avi.c,v 1.90 2002/05/25 19:19:16 siggi Exp $
*
* demultiplexer for avi streams
*
@@ -1601,7 +1601,7 @@ demux_plugin_t *init_demuxer_plugin(int iface, xine_t *xine) {
demux_avi_t *this;
- if (iface != 7) {
+ if (iface != 8) {
xine_log (xine, XINE_LOG_PLUGIN,
_("demux_avi: this plugin doesn't support plugin API version %d.\n"
"demux_avi: this means there's a version mismatch between xine and this "
diff --git a/src/demuxers/demux_cda.c b/src/demuxers/demux_cda.c
index 308fd9a73..39ecf62c5 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.16 2002/05/21 00:17:54 tmattern Exp $
+ * $Id: demux_cda.c,v 1.17 2002/05/25 19:19:17 siggi Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -325,7 +325,7 @@ static int demux_cda_get_stream_length (demux_plugin_t *this_gen) {
demux_plugin_t *init_demuxer_plugin(int iface, xine_t *xine) {
demux_cda_t *this;
- if (iface != 7) {
+ if (iface != 8) {
printf ("demux_cda: plugin doesn't support plugin API version %d.\n"
" this means there's a version mismatch between xine and this "
" demuxer plugin.\nInstalling current demux plugins should help.\n",
diff --git a/src/demuxers/demux_elem.c b/src/demuxers/demux_elem.c
index 107a20ecc..9a87aba3f 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.43 2002/05/21 00:14:33 tmattern Exp $
+ * $Id: demux_elem.c,v 1.44 2002/05/25 19:19:17 siggi Exp $
*
* demultiplexer for elementary mpeg streams
*
@@ -397,7 +397,7 @@ demux_plugin_t *init_demuxer_plugin(int iface, xine_t *xine) {
demux_mpeg_elem_t *this;
- if (iface != 7) {
+ if (iface != 8) {
printf ("demux_elem: plugin doesn't support plugin API version %d.\n"
" this means there's a version mismatch between xine and this "
" demuxer plugin.\nInstalling current demux plugins should help.\n",
diff --git a/src/demuxers/demux_mpeg.c b/src/demuxers/demux_mpeg.c
index 06ef78883..12a205c24 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.62 2002/05/21 00:17:55 tmattern Exp $
+ * $Id: demux_mpeg.c,v 1.63 2002/05/25 19:19:17 siggi Exp $
*
* demultiplexer for mpeg 1/2 program streams
* reads streams of variable blocksizes
@@ -1017,7 +1017,7 @@ demux_plugin_t *init_demuxer_plugin(int iface, xine_t *xine) {
demux_mpeg_t *this;
- if (iface != 7) {
+ if (iface != 8) {
printf ("demux_mpeg: plugin doesn't support plugin API version %d.\n"
" this means there's a version mismatch between xine and this "
" demuxer plugin.\nInstalling current demux plugins should help.\n",
diff --git a/src/demuxers/demux_mpeg_block.c b/src/demuxers/demux_mpeg_block.c
index b188dbde9..e213cb61f 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.101 2002/05/21 00:17:55 tmattern Exp $
+ * $Id: demux_mpeg_block.c,v 1.102 2002/05/25 19:19:17 siggi Exp $
*
* demultiplexer for mpeg 1/2 program streams
*
@@ -1228,7 +1228,7 @@ demux_plugin_t *init_demuxer_plugin(int iface, xine_t *xine) {
demux_mpeg_block_t *this;
- if (iface != 7) {
+ if (iface != 8) {
printf ("demux_mpeg_block: plugin doesn't support plugin API version %d.\n"
" this means there's a version mismatch between xine and this "
" demuxer plugin.\nInstalling current demux plugins should help.\n",
diff --git a/src/demuxers/demux_mpgaudio.c b/src/demuxers/demux_mpgaudio.c
index 4e116b925..87dddcc14 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.46 2002/05/21 20:34:00 miguelfreitas Exp $
+ * $Id: demux_mpgaudio.c,v 1.47 2002/05/25 19:19:17 siggi Exp $
*
* demultiplexer for mpeg audio (i.e. mp3) streams
*
@@ -564,7 +564,7 @@ demux_plugin_t *init_demuxer_plugin(int iface, xine_t *xine) {
demux_mpgaudio_t *this;
- if (iface != 7) {
+ if (iface != 8) {
printf ("demux_mpeg: plugin doesn't support plugin API version %d.\n"
" this means there's a version mismatch between xine and this "
" demuxer plugin.\nInstalling current demux plugins should help.\n",
diff --git a/src/demuxers/demux_ogg.c b/src/demuxers/demux_ogg.c
index db81328bb..8a9d66852 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.25 2002/05/21 00:12:32 siggi Exp $
+ * $Id: demux_ogg.c,v 1.26 2002/05/25 19:19:17 siggi Exp $
*
* demultiplexer for ogg streams
*
@@ -693,7 +693,7 @@ demux_plugin_t *init_demuxer_plugin(int iface, xine_t *xine) {
demux_ogg_t *this;
- if (iface != 7) {
+ if (iface != 8) {
printf( _("demux_ogg: plugin doesn't support plugin API version %d.\n"
" this means there's a version mismatch between xine and this "
" demuxer plugin.\nInstalling current demux plugins should help.\n"),
diff --git a/src/demuxers/demux_pes.c b/src/demuxers/demux_pes.c
index 43f05203c..d0dcfc442 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.28 2002/05/21 00:17:56 tmattern Exp $
+ * $Id: demux_pes.c,v 1.29 2002/05/25 19:19:17 siggi Exp $
*
* demultiplexer for mpeg 2 PES (Packetized Elementary Streams)
* reads streams of variable blocksizes
@@ -648,7 +648,7 @@ demux_plugin_t *init_demuxer_plugin(int iface, xine_t *xine) {
demux_pes_t *this;
- if (iface != 7) {
+ if (iface != 8) {
printf ("demux_pes: plugin doesn't support plugin API version %d.\n"
" this means there's a version mismatch between xine and this "
" demuxer plugin.\nInstalling current demux plugins should help.\n",
diff --git a/src/demuxers/demux_qt.c b/src/demuxers/demux_qt.c
index 872c640db..6c5b44cca 100644
--- a/src/demuxers/demux_qt.c
+++ b/src/demuxers/demux_qt.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_qt.c,v 1.32 2002/05/21 00:17:55 tmattern Exp $
+ * $Id: demux_qt.c,v 1.33 2002/05/25 19:19:17 siggi Exp $
*
* demultiplexer for mpeg-4 system (aka quicktime) streams, based on:
*
@@ -4437,7 +4437,7 @@ demux_plugin_t *init_demuxer_plugin(int iface, xine_t *xine) {
demux_qt_t *this;
- if (iface != 7) {
+ if (iface != 8) {
printf ("demux_qt: plugin doesn't support plugin API version %d.\n"
" this means there's a version mismatch between xine and this "
" demuxer plugin.\nInstalling current demux plugins should help.\n",
diff --git a/src/demuxers/demux_ts.c b/src/demuxers/demux_ts.c
index bc614bf06..aa401e419 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.45 2002/05/21 00:17:57 tmattern Exp $
+ * $Id: demux_ts.c,v 1.46 2002/05/25 19:19:17 siggi Exp $
*
* Demultiplexer for MPEG2 Transport Streams.
*
@@ -1486,7 +1486,7 @@ demux_plugin_t *init_demuxer_plugin(int iface, xine_t *xine) {
demux_ts *this;
int i;
- if (iface != 7) {
+ if (iface != 8) {
LOG_MSG (xine,
_("demux_ts: plugin doesn't support plugin API version %d.\n"
" this means there's a version mismatch between xine and this "
diff --git a/src/dxr3/dxr3_decode_spu.c b/src/dxr3/dxr3_decode_spu.c
index 31649cf62..6f4dc5fbe 100644
--- a/src/dxr3/dxr3_decode_spu.c
+++ b/src/dxr3/dxr3_decode_spu.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: dxr3_decode_spu.c,v 1.3 2002/05/24 22:09:44 miguelfreitas Exp $
+ * $Id: dxr3_decode_spu.c,v 1.4 2002/05/25 19:19:17 siggi Exp $
*/
/* dxr3 spu decoder plugin.
@@ -96,7 +96,7 @@ spu_decoder_t *init_spu_decoder_plugin(int iface_version, xine_t *xine)
const char *confstr;
int dashpos;
- if (iface_version != 7) {
+ if (iface_version != 8) {
printf( "dxr3_decode_spu: plugin doesn't support plugin API version %d.\n"
"dxr3_decode_spu: this means there's a version mismatch between xine and this "
"dxr3_decode_spu: decoder plugin. Installing current plugins should help.\n",
diff --git a/src/dxr3/dxr3_decode_video.c b/src/dxr3/dxr3_decode_video.c
index 10c07700e..9f33d8ba0 100644
--- a/src/dxr3/dxr3_decode_video.c
+++ b/src/dxr3/dxr3_decode_video.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: dxr3_decode_video.c,v 1.3 2002/05/24 22:09:44 miguelfreitas Exp $
+ * $Id: dxr3_decode_video.c,v 1.4 2002/05/25 19:19:17 siggi Exp $
*/
/* dxr3 video decoder plugin.
@@ -115,7 +115,7 @@ video_decoder_t *init_video_decoder_plugin(int iface_version, xine_t *xine)
const char *confstr;
int dashpos;
- if (iface_version != 8) {
+ if (iface_version != 9) {
printf( "dxr3_decode_video: plugin doesn't support plugin API version %d.\n"
"dxr3_decode_video: this means there's a version mismatch between xine and this\n"
"dxr3_decode_video: decoder plugin. Installing current plugins should help.\n",
diff --git a/src/input/input_cda.c b/src/input/input_cda.c
index 59389dd9d..9553f4c94 100644
--- a/src/input/input_cda.c
+++ b/src/input/input_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: input_cda.c,v 1.23 2002/04/29 23:31:59 jcdutton Exp $
+ * $Id: input_cda.c,v 1.24 2002/05/25 19:19:17 siggi Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -1792,7 +1792,7 @@ input_plugin_t *init_input_plugin (int iface, xine_t *xine) {
_ENTER_FUNC();
- if (iface != 6) {
+ if (iface != 7) {
LOG_MSG(xine,
_("cda input plugin doesn't support plugin API version %d.\n"
"PLUGIN DISABLED.\n"
diff --git a/src/input/input_dvd.c b/src/input/input_dvd.c
index 3d0f64fa0..8eb7256f8 100644
--- a/src/input/input_dvd.c
+++ b/src/input/input_dvd.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: input_dvd.c,v 1.48 2002/05/03 02:20:29 miguelfreitas Exp $
+ * $Id: input_dvd.c,v 1.49 2002/05/25 19:19:17 siggi Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -809,7 +809,7 @@ input_plugin_t *init_input_plugin (int iface, xine_t *xine) {
config_values_t *config;
int i;
- if (iface != 6) {
+ if (iface != 7) {
LOG_MSG(xine,
_("dvd input plugin doesn't support plugin API version %d.\n"
"PLUGIN DISABLED.\n"
diff --git a/src/input/input_file.c b/src/input/input_file.c
index ada3f2b10..9a88255c4 100644
--- a/src/input/input_file.c
+++ b/src/input/input_file.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: input_file.c,v 1.48 2002/05/05 20:20:10 f1rmb Exp $
+ * $Id: input_file.c,v 1.49 2002/05/25 19:19:17 siggi Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -854,7 +854,7 @@ input_plugin_t *init_input_plugin (int iface, xine_t *xine) {
file_input_plugin_t *this;
config_values_t *config;
- if (iface != 6) {
+ if (iface != 7) {
LOG_MSG(xine,
_("file input plugin doesn't support plugin API version %d.\n"
"PLUGIN DISABLED.\n"
diff --git a/src/input/input_http.c b/src/input/input_http.c
index 871313c48..996c2bd9b 100644
--- a/src/input/input_http.c
+++ b/src/input/input_http.c
@@ -668,7 +668,7 @@ input_plugin_t *init_input_plugin (int iface, xine_t *xine) {
http_input_plugin_t *this;
config_values_t *config;
- if (iface != 6) {
+ if (iface != 7) {
xine_log (xine, XINE_LOG_PLUGIN,
_("http input plugin doesn't support plugin API version %d.\n"
"PLUGIN DISABLED.\n"
diff --git a/src/input/input_mms.c b/src/input/input_mms.c
index b9812afc6..616f2e609 100644
--- a/src/input/input_mms.c
+++ b/src/input/input_mms.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: input_mms.c,v 1.13 2002/05/23 23:22:14 tmattern Exp $
+ * $Id: input_mms.c,v 1.14 2002/05/25 19:19:17 siggi Exp $
*
* mms input plugin based on work from major mms
*/
@@ -289,7 +289,7 @@ input_plugin_t *init_input_plugin (int iface, xine_t *xine) {
mms_input_plugin_t *this;
config_values_t *config;
- if (iface != 6) {
+ if (iface != 7) {
printf ("mms input plugin doesn't support plugin API version %d.\n"
"PLUGIN DISABLED.\n"
"This means there's a version mismatch between xine and this input"
diff --git a/src/input/input_net.c b/src/input/input_net.c
index cd6c76262..6c16f3803 100644
--- a/src/input/input_net.c
+++ b/src/input/input_net.c
@@ -339,7 +339,7 @@ input_plugin_t *init_input_plugin (int iface, xine_t *xine) {
net_input_plugin_t *this;
config_values_t *config;
- if (iface != 6) {
+ if (iface != 7) {
LOG_MSG(xine,
_("net input plugin doesn't support plugin API version %d.\n"
"PLUGIN DISABLED.\n"
diff --git a/src/input/input_plugin.h b/src/input/input_plugin.h
index dd514f576..63249ea09 100644
--- a/src/input/input_plugin.h
+++ b/src/input/input_plugin.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: input_plugin.h,v 1.24 2002/04/23 15:45:21 esnel Exp $
+ * $Id: input_plugin.h,v 1.25 2002/05/25 19:19:17 siggi Exp $
*/
#ifndef HAVE_INPUT_PLUGIN_H
@@ -33,7 +33,7 @@ extern "C" {
#include "buffer.h"
#include "configfile.h"
-#define INPUT_PLUGIN_IFACE_VERSION 6
+#define INPUT_PLUGIN_IFACE_VERSION 7
#define MAX_MRL_ENTRIES 255
diff --git a/src/input/input_rtp.c b/src/input/input_rtp.c
index 879709138..7db45091a 100644
--- a/src/input/input_rtp.c
+++ b/src/input/input_rtp.c
@@ -509,7 +509,7 @@ input_plugin_t *init_input_plugin (int iface, xine_t *xine) {
config_values_t *config;
int bufn;
- if (iface != 6) {
+ if (iface != 7) {
LOG_MSG(xine,
_("rtp input plugin doesn't support plugin API version %d.\n"
"PLUGIN DISABLED.\n"
diff --git a/src/input/input_stdin_fifo.c b/src/input/input_stdin_fifo.c
index c766fab50..760222d33 100644
--- a/src/input/input_stdin_fifo.c
+++ b/src/input/input_stdin_fifo.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: input_stdin_fifo.c,v 1.26 2002/05/05 20:20:11 f1rmb Exp $
+ * $Id: input_stdin_fifo.c,v 1.27 2002/05/25 19:19:18 siggi Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -352,7 +352,7 @@ input_plugin_t *init_input_plugin (int iface, xine_t *xine) {
stdin_input_plugin_t *this;
config_values_t *config;
- if (iface != 6) {
+ if (iface != 7) {
xine_log (xine, XINE_LOG_PLUGIN,
_("stdin/fifo input plugin doesn't support plugin API version %d.\n"
"PLUGIN DISABLED.\n"
diff --git a/src/input/input_vcd.c b/src/input/input_vcd.c
index 89dc04035..f2f2238c2 100644
--- a/src/input/input_vcd.c
+++ b/src/input/input_vcd.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: input_vcd.c,v 1.41 2002/04/24 08:12:13 f1rmb Exp $
+ * $Id: input_vcd.c,v 1.42 2002/05/25 19:19:18 siggi Exp $
*
*/
@@ -1141,7 +1141,7 @@ input_plugin_t *init_input_plugin (int iface, xine_t *xine) {
config_values_t *config;
int i;
- if (iface != 6) {
+ if (iface != 7) {
LOG_MSG(xine,
_("vcd input plugin doesn't support plugin API version %d.\n"
"PLUGIN DISABLED.\n"
diff --git a/src/liba52/xine_decoder.c b/src/liba52/xine_decoder.c
index 5db711685..a4623e0b0 100644
--- a/src/liba52/xine_decoder.c
+++ b/src/liba52/xine_decoder.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: xine_decoder.c,v 1.25 2002/04/23 15:45:21 esnel Exp $
+ * $Id: xine_decoder.c,v 1.26 2002/05/25 19:19:18 siggi Exp $
*
* stuff needed to turn liba52 into a xine decoder plugin
*/
@@ -546,7 +546,7 @@ audio_decoder_t *init_audio_decoder_plugin (int iface_version, xine_t *xine) {
a52dec_decoder_t *this ;
config_values_t *cfg;
- if (iface_version != 7) {
+ if (iface_version != 8) {
printf( "liba52: plugin doesn't support plugin API version %d.\n"
"liba52: this means there's a version mismatch between xine and this "
"liba52: decoder plugin.\nInstalling current plugins should help.\n",
diff --git a/src/libdivx4/xine_decoder.c b/src/libdivx4/xine_decoder.c
index 4bb3f210f..9ed719327 100644
--- a/src/libdivx4/xine_decoder.c
+++ b/src/libdivx4/xine_decoder.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: xine_decoder.c,v 1.33 2002/05/01 19:42:56 guenter Exp $
+ * $Id: xine_decoder.c,v 1.34 2002/05/25 19:19:18 siggi Exp $
*
* xine decoder plugin using divx4
*
@@ -575,7 +575,7 @@ video_decoder_t *init_video_decoder_plugin (int iface_version, xine_t *xine) {
decoreFunc libdecore_func = 0;
config_values_t *cfg;
- if (iface_version != 8) {
+ if (iface_version != 9) {
printf( "divx4: plugin doesn't support plugin API version %d.\n"
"divx4: this means there's a version mismatch between xine and this "
"divx4: decoder plugin.\nInstalling current plugins should help.\n",
diff --git a/src/libdts/xine_decoder.c b/src/libdts/xine_decoder.c
index 175342da4..f4a1af58b 100644
--- a/src/libdts/xine_decoder.c
+++ b/src/libdts/xine_decoder.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: xine_decoder.c,v 1.20 2002/04/23 15:45:22 esnel Exp $
+ * $Id: xine_decoder.c,v 1.21 2002/05/25 19:19:18 siggi Exp $
*
* 04-09-2001 DTS passtrough (C) Joachim Koenig
* 09-12-2001 DTS passthrough inprovements (C) James Courtier-Dutton
@@ -229,7 +229,7 @@ audio_decoder_t *init_audio_decoder_plugin (int iface_version, xine_t *xine) {
dts_decoder_t *this ;
- if (iface_version != 7) {
+ if (iface_version != 8) {
printf( "libdts: plugin doesn't support plugin API version %d.\n"
"libdts: this means there's a version mismatch between xine and this "
"libdts: decoder plugin.\nInstalling current plugins should help.\n",
diff --git a/src/libffmpeg/xine_decoder.c b/src/libffmpeg/xine_decoder.c
index c2896e41c..08e60f9ed 100644
--- a/src/libffmpeg/xine_decoder.c
+++ b/src/libffmpeg/xine_decoder.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: xine_decoder.c,v 1.36 2002/05/01 19:42:56 guenter Exp $
+ * $Id: xine_decoder.c,v 1.37 2002/05/25 19:19:18 siggi Exp $
*
* xine decoder plugin using ffmpeg
*
@@ -420,7 +420,7 @@ video_decoder_t *init_video_decoder_plugin (int iface_version, xine_t *xine) {
ff_decoder_t *this ;
static pthread_once_t once_control = PTHREAD_ONCE_INIT;
- if (iface_version != 8) {
+ if (iface_version != 9) {
printf( "ffmpeg: plugin doesn't support plugin API version %d.\n"
"ffmpeg: this means there's a version mismatch between xine and this "
"ffmpeg: decoder plugin.\nInstalling current plugins should help.\n",
diff --git a/src/liblpcm/xine_decoder.c b/src/liblpcm/xine_decoder.c
index f0f4b2da0..c64819b77 100644
--- a/src/liblpcm/xine_decoder.c
+++ b/src/liblpcm/xine_decoder.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: xine_decoder.c,v 1.24 2002/05/10 00:32:05 miguelfreitas Exp $
+ * $Id: xine_decoder.c,v 1.25 2002/05/25 19:19:18 siggi Exp $
*
* 31-8-2001 Added LPCM rate sensing.
* (c) 2001 James Courtier-Dutton James@superbug.demon.co.uk
@@ -184,7 +184,7 @@ audio_decoder_t *init_audio_decoder_plugin (int iface_version, xine_t *xine) {
lpcm_decoder_t *this ;
- if (iface_version != 7) {
+ if (iface_version != 8) {
printf( "liblpcm: plugin doesn't support plugin API version %d.\n"
"liblpcm: this means there's a version mismatch between xine and this "
"liblpcm: decoder plugin.\nInstalling current plugins should help.\n",
diff --git a/src/libmad/xine_decoder.c b/src/libmad/xine_decoder.c
index d561e5125..927ef4612 100644
--- a/src/libmad/xine_decoder.c
+++ b/src/libmad/xine_decoder.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: xine_decoder.c,v 1.19 2002/04/23 15:45:24 esnel Exp $
+ * $Id: xine_decoder.c,v 1.20 2002/05/25 19:19:18 siggi Exp $
*
* stuff needed to turn libmad into a xine decoder plugin
*/
@@ -279,7 +279,7 @@ audio_decoder_t *init_audio_decoder_plugin (int iface_version, xine_t *xine) {
mad_decoder_t *this ;
- if (iface_version != 7) {
+ if (iface_version != 8) {
printf( "libmad: plugin doesn't support plugin API version %d.\n"
"libmad: this means there's a version mismatch between xine and this "
"libmad: decoder plugin.\nInstalling current plugins should help.\n",
diff --git a/src/libmpeg2/xine_decoder.c b/src/libmpeg2/xine_decoder.c
index fc0ac5dc3..743cf8d04 100644
--- a/src/libmpeg2/xine_decoder.c
+++ b/src/libmpeg2/xine_decoder.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: xine_decoder.c,v 1.32 2002/05/01 19:42:56 guenter Exp $
+ * $Id: xine_decoder.c,v 1.33 2002/05/25 19:19:18 siggi Exp $
*
* stuff needed to turn libmpeg2 into a xine decoder plugin
*/
@@ -152,7 +152,7 @@ video_decoder_t *init_video_decoder_plugin (int iface_version, xine_t *xine) {
mpeg2dec_decoder_t *this ;
- if (iface_version != 8) {
+ if (iface_version != 9) {
printf( "libmpeg2: plugin doesn't support plugin API version %d.\n"
"libmpeg2: this means there's a version mismatch between xine and this "
"libmpeg2: decoder plugin.\nInstalling current plugins should help.\n",
diff --git a/src/libspucc/xine_decoder.c b/src/libspucc/xine_decoder.c
index 7fdcc69f0..5aafd6d0e 100644
--- a/src/libspucc/xine_decoder.c
+++ b/src/libspucc/xine_decoder.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: xine_decoder.c,v 1.12 2002/05/01 19:42:56 guenter Exp $
+ * $Id: xine_decoder.c,v 1.13 2002/05/25 19:19:18 siggi Exp $
*
* closed caption spu decoder. receive data by events.
*
@@ -385,7 +385,7 @@ spu_decoder_t *init_spu_decoder_plugin (int iface_version, xine_t *xine) {
spucc_decoder_t *this ;
- if (iface_version != 7) {
+ if (iface_version != 8) {
printf("libspucc: doesn't support plugin api version %d.\n"
"libspucc: This means there is a version mismatch between xine and\n"
"libspucc: this plugin.\n", iface_version);
diff --git a/src/libspudec/spu_decoder_api.h b/src/libspudec/spu_decoder_api.h
index bbde5786a..2b252a26f 100644
--- a/src/libspudec/spu_decoder_api.h
+++ b/src/libspudec/spu_decoder_api.h
@@ -24,7 +24,7 @@
#ifndef HAVE_SPU_API_H
#define HAVE_SPU_API_H
-#define SPU_DECODER_IFACE_VERSION 7
+#define SPU_DECODER_IFACE_VERSION 8
/*
* generic xine spu decoder plugin interface
diff --git a/src/libspudec/xine_decoder.c b/src/libspudec/xine_decoder.c
index 333267261..1aa7988b0 100644
--- a/src/libspudec/xine_decoder.c
+++ b/src/libspudec/xine_decoder.c
@@ -19,7 +19,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: xine_decoder.c,v 1.67 2002/05/01 19:42:56 guenter Exp $
+ * $Id: xine_decoder.c,v 1.68 2002/05/25 19:19:18 siggi Exp $
*
* stuff needed to turn libspu into a xine decoder plugin
*/
@@ -301,7 +301,7 @@ spu_decoder_t *init_spu_decoder_plugin (int iface_version, xine_t *xine) {
spudec_decoder_t *this ;
- if (iface_version != 7) {
+ if (iface_version != 8) {
printf("libspudec: Doesn't support plugin API version %d.\n"
"libspudec: This means there is a version mismatch between XINE and\n"
"libspudec: this plugin.\n", iface_version);
diff --git a/src/libsputext/xine_decoder.c b/src/libsputext/xine_decoder.c
index 39d27c1d0..d53b11e07 100644
--- a/src/libsputext/xine_decoder.c
+++ b/src/libsputext/xine_decoder.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: xine_decoder.c,v 1.23 2002/05/16 12:39:56 f1rmb Exp $
+ * $Id: xine_decoder.c,v 1.24 2002/05/25 19:19:19 siggi Exp $
*
* code based on mplayer module:
*
@@ -1005,7 +1005,7 @@ spu_decoder_t *init_spu_decoder_plugin (int iface_version, xine_t *xine) {
sputext_decoder_t *this ;
- if (iface_version != 7) {
+ if (iface_version != 8) {
printf("libsputext: doesn't support plugin api version %d.\n"
"libsputext: This means there is a version mismatch between xine and\n"
"libsputext: this plugin.\n", iface_version);
diff --git a/src/libvorbis/xine_decoder.c b/src/libvorbis/xine_decoder.c
index ba4f862b8..9cdcd4ed8 100644
--- a/src/libvorbis/xine_decoder.c
+++ b/src/libvorbis/xine_decoder.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: xine_decoder.c,v 1.11 2002/04/23 15:45:25 esnel Exp $
+ * $Id: xine_decoder.c,v 1.12 2002/05/25 19:19:19 siggi Exp $
*
* (ogg/)vorbis audio decoder plugin (libvorbis wrapper) for xine
*/
@@ -243,7 +243,7 @@ audio_decoder_t *init_audio_decoder_plugin (int iface_version, xine_t *xine) {
vorbis_decoder_t *this ;
- if (iface_version != 7) {
+ if (iface_version != 8) {
printf( "libvorbis: plugin doesn't support plugin API version %d.\n"
"libvorbis: this means there's a version mismatch between xine and this "
"libvorbis: decoder plugin.\nInstalling current plugins should help.\n",
diff --git a/src/libw32dll/w32codec.c b/src/libw32dll/w32codec.c
index dc686b25a..f28682673 100644
--- a/src/libw32dll/w32codec.c
+++ b/src/libw32dll/w32codec.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: w32codec.c,v 1.77 2002/05/01 19:42:57 guenter Exp $
+ * $Id: w32codec.c,v 1.78 2002/05/25 19:19:19 siggi Exp $
*
* routines for using w32 codecs
* DirectShow support by Miguel Freitas (Nov/2001)
@@ -1326,7 +1326,7 @@ video_decoder_t *init_video_decoder_plugin (int iface_version, xine_t *xine) {
w32v_decoder_t *this ;
config_values_t *cfg;
- if (iface_version != 8) {
+ if (iface_version != 9) {
printf( "w32codec: plugin doesn't support plugin API version %d.\n"
"w32codec: this means there's a version mismatch between xine and this "
"w32codec: decoder plugin.\nInstalling current input plugins should help.\n",
@@ -1372,7 +1372,7 @@ audio_decoder_t *init_audio_decoder_plugin (int iface_version, xine_t *xine) {
w32a_decoder_t *this ;
config_values_t *cfg;
- if (iface_version != 7) {
+ if (iface_version != 8) {
printf( "w32codec: plugin doesn't support plugin API version %d.\n"
"w32codec: this means there's a version mismatch between xine and this "
"w32codec: decoder plugin.\nInstalling current input plugins should help.\n",
diff --git a/src/libxinevdec/cinepak.c b/src/libxinevdec/cinepak.c
index b2728e9d6..798f42bd1 100644
--- a/src/libxinevdec/cinepak.c
+++ b/src/libxinevdec/cinepak.c
@@ -22,7 +22,7 @@
* based on overview of Cinepak algorithm and example decoder
* by Tim Ferguson: http://www.csse.monash.edu.au/~timf/
*
- * $Id: cinepak.c,v 1.4 2002/05/06 20:32:36 miguelfreitas Exp $
+ * $Id: cinepak.c,v 1.5 2002/05/25 19:19:19 siggi Exp $
*/
#include <stdlib.h>
@@ -442,7 +442,7 @@ video_decoder_t *init_video_decoder_plugin (int iface_version, xine_t *xine) {
cvid_decoder_t *this ;
- if (iface_version != 8) {
+ if (iface_version != 9) {
printf( "cinepak: plugin doesn't support plugin API version %d.\n"
"cinepak: this means there's a version mismatch between xine and this "
"cinepak: decoder plugin.\nInstalling current plugins should help.\n",
diff --git a/src/libxinevdec/cyuv.c b/src/libxinevdec/cyuv.c
index 60f929ecc..3031f8c2e 100644
--- a/src/libxinevdec/cyuv.c
+++ b/src/libxinevdec/cyuv.c
@@ -18,7 +18,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: cyuv.c,v 1.2 2002/05/01 19:42:57 guenter Exp $
+ * $Id: cyuv.c,v 1.3 2002/05/25 19:19:19 siggi Exp $
*/
/* And this is the header that came with the CYUV decoder: */
@@ -228,7 +228,7 @@ video_decoder_t *init_video_decoder_plugin (int iface_version, xine_t *xine) {
cyuv_decoder_t *this ;
- if (iface_version != 8) {
+ if (iface_version != 9) {
printf( "CYUV: plugin doesn't support plugin API version %d.\n"
"CYUV: this means there's a version mismatch between xine and this "
"CYUV: decoder plugin.\nInstalling current plugins should help.\n",
diff --git a/src/libxinevdec/msvc.c b/src/libxinevdec/msvc.c
index d819688e8..eddf34236 100644
--- a/src/libxinevdec/msvc.c
+++ b/src/libxinevdec/msvc.c
@@ -22,7 +22,7 @@
* based on overview of Microsoft Video-1 algorithm
* by Mike Melanson: http://www.pcisys.net/~melanson/codecs/video1.txt
*
- * $Id: msvc.c,v 1.2 2002/05/01 19:42:57 guenter Exp $
+ * $Id: msvc.c,v 1.3 2002/05/25 19:19:19 siggi Exp $
*/
#include <stdlib.h>
@@ -335,7 +335,7 @@ video_decoder_t *init_video_decoder_plugin (int iface_version, xine_t *xine) {
msvc_decoder_t *this ;
- if (iface_version != 8) {
+ if (iface_version != 9) {
printf( "msvc: plugin doesn't support plugin API version %d.\n"
"msvc: this means there's a version mismatch between xine and this "
"msvc: decoder plugin.\nInstalling current plugins should help.\n",
diff --git a/src/libxvid/xine_decoder.c b/src/libxvid/xine_decoder.c
index a03e8ec7a..6e235722c 100644
--- a/src/libxvid/xine_decoder.c
+++ b/src/libxvid/xine_decoder.c
@@ -236,7 +236,7 @@ video_decoder_t *init_video_decoder_plugin (int iface_version, xine_t *xine) {
xvid_decoder_t *this;
XVID_INIT_PARAM xinit;
- if (iface_version != 8) {
+ if (iface_version != 9) {
printf ("xvid: plugin doesn't support plugin API version %d.\n"
"xvid: this means there's a version mismatch between xine and this\n"
"xvid: decoder plugin. Installing current plugins should help.\n",
diff --git a/src/xine-engine/xine_internal.h b/src/xine-engine/xine_internal.h
index f5de7a181..d19841cc9 100644
--- a/src/xine-engine/xine_internal.h
+++ b/src/xine-engine/xine_internal.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: xine_internal.h,v 1.84 2002/05/21 00:50:22 siggi Exp $
+ * $Id: xine_internal.h,v 1.85 2002/05/25 19:19:19 siggi Exp $
*
*/
@@ -55,8 +55,8 @@ extern "C" {
#define INPUT_PLUGIN_MAX 50
#define DEMUXER_PLUGIN_MAX 50
#define DECODER_PLUGIN_MAX 256
-#define VIDEO_DECODER_IFACE_VERSION 8
-#define AUDIO_DECODER_IFACE_VERSION 7
+#define VIDEO_DECODER_IFACE_VERSION 9
+#define AUDIO_DECODER_IFACE_VERSION 8
#define AUDIO_OUT_PLUGIN_MAX 50
#define VIDEO_OUT_PLUGIN_MAX 50
#define XINE_MAX_EVENT_LISTENERS 50