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 | 2 | ||||
-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, 16 insertions, 16 deletions
diff --git a/src/input/input_cda.c b/src/input/input_cda.c index fb7defe66..f5f7e672d 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.20 2002/04/23 13:30:42 esnel Exp $ + * $Id: input_cda.c,v 1.21 2002/04/23 15:45:20 esnel Exp $ */ #ifdef HAVE_CONFIG_H @@ -1791,7 +1791,7 @@ input_plugin_t *init_input_plugin (int iface, xine_t *xine) { _ENTER_FUNC(); - if (iface != 5) { + if (iface != 6) { 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 e0a69fd6c..db3a1ccb6 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.45 2002/04/23 13:30:42 esnel Exp $ + * $Id: input_dvd.c,v 1.46 2002/04/23 15:45:20 esnel Exp $ */ #ifdef HAVE_CONFIG_H @@ -808,7 +808,7 @@ input_plugin_t *init_input_plugin (int iface, xine_t *xine) { config_values_t *config; int i; - if (iface != 5) { + if (iface != 6) { 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 b0c25f7b9..3ccffcc4f 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.45 2002/04/23 14:02:41 esnel Exp $ + * $Id: input_file.c,v 1.46 2002/04/23 15:45:21 esnel 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 != 5) { + if (iface != 6) { 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 8cf804ad6..96a41290d 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 != 5) { + if (iface != 6) { 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 a4888d4cb..c06465b6a 100644 --- a/src/input/input_mms.c +++ b/src/input/input_mms.c @@ -318,7 +318,7 @@ input_plugin_t *init_input_plugin (int iface, xine_t *xine) { mms_input_plugin_t *this; config_values_t *config; - if (iface != 5) { + if (iface != 6) { 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 2e986b82d..aef84a1da 100644 --- a/src/input/input_net.c +++ b/src/input/input_net.c @@ -337,7 +337,7 @@ input_plugin_t *init_input_plugin (int iface, xine_t *xine) { net_input_plugin_t *this; config_values_t *config; - if (iface != 5) { + if (iface != 6) { 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 a3b753e93..dd514f576 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.23 2002/04/23 13:30:43 esnel Exp $ + * $Id: input_plugin.h,v 1.24 2002/04/23 15:45:21 esnel Exp $ */ #ifndef HAVE_INPUT_PLUGIN_H @@ -33,7 +33,7 @@ extern "C" { #include "buffer.h" #include "configfile.h" -#define INPUT_PLUGIN_IFACE_VERSION 5 +#define INPUT_PLUGIN_IFACE_VERSION 6 #define MAX_MRL_ENTRIES 255 diff --git a/src/input/input_rtp.c b/src/input/input_rtp.c index ad73e5e1d..0501ba3bb 100644 --- a/src/input/input_rtp.c +++ b/src/input/input_rtp.c @@ -510,7 +510,7 @@ input_plugin_t *init_input_plugin (int iface, xine_t *xine) { config_values_t *config; int bufn; - if (iface != 5) { + if (iface != 6) { 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 37df10a64..3aad8ab62 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.23 2002/04/23 13:30:43 esnel Exp $ + * $Id: input_stdin_fifo.c,v 1.24 2002/04/23 15:45:21 esnel Exp $ */ #ifdef HAVE_CONFIG_H @@ -351,7 +351,7 @@ input_plugin_t *init_input_plugin (int iface, xine_t *xine) { stdin_input_plugin_t *this; config_values_t *config; - if (iface != 5) { + if (iface != 6) { 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 9cd31f7ce..197616041 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.39 2002/04/23 13:30:43 esnel Exp $ + * $Id: input_vcd.c,v 1.40 2002/04/23 15:45:21 esnel Exp $ * */ @@ -1141,7 +1141,7 @@ input_plugin_t *init_input_plugin (int iface, xine_t *xine) { config_values_t *config; int i; - if (iface != 5) { + if (iface != 6) { LOG_MSG(xine, _("vcd input plugin doesn't support plugin API version %d.\n" "PLUGIN DISABLED.\n" |