diff options
Diffstat (limited to 'src/input')
-rw-r--r-- | src/input/input_cda.c | 4 | ||||
-rw-r--r-- | src/input/input_dvd.c | 4 | ||||
-rw-r--r-- | src/input/input_file.c | 4 | ||||
-rw-r--r-- | src/input/input_http.c | 2 | ||||
-rw-r--r-- | src/input/input_mms.c | 4 | ||||
-rw-r--r-- | src/input/input_net.c | 2 | ||||
-rw-r--r-- | src/input/input_plugin.h | 4 | ||||
-rw-r--r-- | src/input/input_rtp.c | 2 | ||||
-rw-r--r-- | src/input/input_stdin_fifo.c | 4 | ||||
-rw-r--r-- | src/input/input_vcd.c | 4 |
10 files changed, 17 insertions, 17 deletions
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" |