diff options
author | Guenter Bartsch <guenter@users.sourceforge.net> | 2003-04-26 22:34:31 +0000 |
---|---|---|
committer | Guenter Bartsch <guenter@users.sourceforge.net> | 2003-04-26 22:34:31 +0000 |
commit | 5400f6f5377b1f80ae21a977e8ca7617b567c55b (patch) | |
tree | 50da57d2fce9624a75327ff16de3f3f2e28964e1 /src | |
parent | 7920f431c6458779669bac3094b0e48d9c6e222c (diff) | |
download | xine-lib-5400f6f5377b1f80ae21a977e8ca7617b567c55b.tar.gz xine-lib-5400f6f5377b1f80ae21a977e8ca7617b567c55b.tar.bz2 |
bump up input plugin interface version number
CVS patchset: 4692
CVS date: 2003/04/26 22:34:31
Diffstat (limited to 'src')
-rw-r--r-- | src/input/input_cdda.c | 4 | ||||
-rw-r--r-- | src/input/input_dvb.c | 2 | ||||
-rw-r--r-- | src/input/input_dvd.c | 7 | ||||
-rw-r--r-- | src/input/input_file.c | 6 | ||||
-rw-r--r-- | src/input/input_gnome_vfs.c | 6 | ||||
-rw-r--r-- | src/input/input_http.c | 4 | ||||
-rw-r--r-- | src/input/input_mms.c | 6 | ||||
-rw-r--r-- | src/input/input_net.c | 6 | ||||
-rw-r--r-- | src/input/input_plugin.h | 4 | ||||
-rw-r--r-- | src/input/input_pnm.c | 4 | ||||
-rw-r--r-- | src/input/input_pvr.c | 4 | ||||
-rw-r--r-- | src/input/input_rtp.c | 2 | ||||
-rw-r--r-- | src/input/input_rtsp.c | 4 | ||||
-rw-r--r-- | src/input/input_stdin_fifo.c | 6 | ||||
-rw-r--r-- | src/input/input_v4l.c | 2 | ||||
-rw-r--r-- | src/input/input_vcd.c | 6 |
16 files changed, 38 insertions, 35 deletions
diff --git a/src/input/input_cdda.c b/src/input/input_cdda.c index f8fde3047..3e7e73763 100644 --- a/src/input/input_cdda.c +++ b/src/input/input_cdda.c @@ -20,7 +20,7 @@ * Compact Disc Digital Audio (CDDA) Input Plugin * by Mike Melanson (melanson@pcisys.net) * - * $Id: input_cdda.c,v 1.14 2003/04/23 19:58:57 f1rmb Exp $ + * $Id: input_cdda.c,v 1.15 2003/04/26 22:34:31 guenter Exp $ */ #ifdef HAVE_CONFIG_H @@ -1516,7 +1516,7 @@ static void *init_plugin (xine_t *xine, void *data) { plugin_info_t xine_plugin_info[] = { /* type, API, "name", version, special_info, init_function */ - { PLUGIN_INPUT, 12, "CD", XINE_VERSION_CODE, NULL, init_plugin }, + { PLUGIN_INPUT, 13, "CD", XINE_VERSION_CODE, NULL, init_plugin }, { PLUGIN_NONE, 0, "", 0, NULL, NULL } }; diff --git a/src/input/input_dvb.c b/src/input/input_dvb.c index a92ff1f33..d4b3b470e 100644 --- a/src/input/input_dvb.c +++ b/src/input/input_dvb.c @@ -971,6 +971,6 @@ static void *init_class (xine_t *xine, void *data) { plugin_info_t xine_plugin_info[] = { /* type, API, "name", version, special_info, init_function */ - { PLUGIN_INPUT, 12, "DVB", XINE_VERSION_CODE, NULL, init_class }, + { PLUGIN_INPUT, 13, "DVB", XINE_VERSION_CODE, NULL, init_class }, { PLUGIN_NONE, 0, "", 0, NULL, NULL } }; diff --git a/src/input/input_dvd.c b/src/input/input_dvd.c index c3b191991..447373076 100644 --- a/src/input/input_dvd.c +++ b/src/input/input_dvd.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: input_dvd.c,v 1.155 2003/04/26 00:19:21 hadess Exp $ + * $Id: input_dvd.c,v 1.156 2003/04/26 22:34:32 guenter Exp $ * */ @@ -1616,6 +1616,9 @@ static void *init_class (xine_t *xine, void *data) { /* * $Log: input_dvd.c,v $ + * Revision 1.156 2003/04/26 22:34:32 guenter + * bump up input plugin interface version number + * * Revision 1.155 2003/04/26 00:19:21 hadess * - shush * @@ -2041,6 +2044,6 @@ static void *init_class (xine_t *xine, void *data) { plugin_info_t xine_plugin_info[] = { /* type, API, "name", version, special_info, init_function */ - { PLUGIN_INPUT, 12, "DVD", XINE_VERSION_CODE, NULL, init_class }, + { PLUGIN_INPUT, 13, "DVD", XINE_VERSION_CODE, NULL, init_class }, { PLUGIN_NONE, 0, "", 0, NULL, NULL } }; diff --git a/src/input/input_file.c b/src/input/input_file.c index 612546ddf..617e7abb7 100644 --- a/src/input/input_file.c +++ b/src/input/input_file.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2000-2002 the xine project + * Copyright (C) 2000-2003 the xine project * * This file is part of xine, a free video player. * @@ -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.80 2003/04/22 23:30:35 tchamp Exp $ + * $Id: input_file.c,v 1.81 2003/04/26 22:34:32 guenter Exp $ */ #ifdef HAVE_CONFIG_H @@ -850,6 +850,6 @@ static void *init_plugin (xine_t *xine, void *data) { plugin_info_t xine_plugin_info[] = { /* type, API, "name", version, special_info, init_function */ - { PLUGIN_INPUT, 12, "FILE", XINE_VERSION_CODE, NULL, init_plugin }, + { PLUGIN_INPUT, 13, "FILE", XINE_VERSION_CODE, NULL, init_plugin }, { PLUGIN_NONE, 0, "", 0, NULL, NULL } }; diff --git a/src/input/input_gnome_vfs.c b/src/input/input_gnome_vfs.c index f5b31c504..682371b21 100644 --- a/src/input/input_gnome_vfs.c +++ b/src/input/input_gnome_vfs.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2000-2002 the xine project + * Copyright (C) 2000-2003 the xine project * 2002 Bastien Nocera <hadess@hadess.net> * * This file is part of totem, @@ -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: input_gnome_vfs.c,v 1.8 2003/04/13 16:02:53 tmattern Exp $ + * $Id: input_gnome_vfs.c,v 1.9 2003/04/26 22:34:32 guenter Exp $ */ @@ -346,7 +346,7 @@ static void } plugin_info_t xine_plugin_info[] = { - { PLUGIN_INPUT, 12, "gnomevfs", XINE_VERSION_CODE, NULL, + { PLUGIN_INPUT, 13, "gnomevfs", XINE_VERSION_CODE, NULL, init_input_class }, { PLUGIN_NONE, 0, "", 0, NULL, NULL } }; diff --git a/src/input/input_http.c b/src/input/input_http.c index ef190fccd..5580ab825 100644 --- a/src/input/input_http.c +++ b/src/input/input_http.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2000-2002 the xine project + * Copyright (C) 2000-2003 the xine project * * This file is part of xine, a free video player. * @@ -985,7 +985,7 @@ static void *init_class (xine_t *xine, void *data) { plugin_info_t xine_plugin_info[] = { /* type, API, "name", version, special_info, init_function */ - { PLUGIN_INPUT, 12, "http", XINE_VERSION_CODE, NULL, init_class }, + { PLUGIN_INPUT, 13, "http", XINE_VERSION_CODE, NULL, init_class }, { PLUGIN_NONE, 0, "", 0, NULL, NULL } }; diff --git a/src/input/input_mms.c b/src/input/input_mms.c index f359973f8..ae2aaea84 100644 --- a/src/input/input_mms.c +++ b/src/input/input_mms.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2002 the xine project + * Copyright (C) 2002-2003 the xine project * * This file is part of xine, a free video player. * @@ -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.39 2003/04/13 16:02:53 tmattern Exp $ + * $Id: input_mms.c,v 1.40 2003/04/26 22:34:32 guenter Exp $ * * mms input plugin based on work from major mms */ @@ -458,6 +458,6 @@ static void *init_class (xine_t *xine, void *data) { plugin_info_t xine_plugin_info[] = { /* type, API, "name", version, special_info, init_function */ - { PLUGIN_INPUT, 12, "mms", XINE_VERSION_CODE, NULL, init_class }, + { PLUGIN_INPUT, 13, "mms", XINE_VERSION_CODE, NULL, init_class }, { PLUGIN_NONE, 0, "", 0, NULL, NULL } }; diff --git a/src/input/input_net.c b/src/input/input_net.c index fd5b33bc8..9978d37bd 100644 --- a/src/input/input_net.c +++ b/src/input/input_net.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2000-2002 the xine project + * Copyright (C) 2000-2003 the xine project * * This file is part of xine, a free video player. * @@ -20,7 +20,7 @@ * Read from a tcp network stream over a lan (put a tweaked mp1e encoder the * other end and you can watch tv anywhere in the house ..) * - * $Id: input_net.c,v 1.45 2003/04/13 17:31:40 miguelfreitas Exp $ + * $Id: input_net.c,v 1.46 2003/04/26 22:34:32 guenter Exp $ * * how to set up mp1e for use with this plugin: * @@ -439,7 +439,7 @@ static void *init_class (xine_t *xine, void *data) { plugin_info_t xine_plugin_info[] = { /* type, API, "name", version, special_info, init_function */ - { PLUGIN_INPUT, 12, "tcp", XINE_VERSION_CODE, NULL, init_class }, + { PLUGIN_INPUT, 13, "tcp", XINE_VERSION_CODE, NULL, init_class }, { PLUGIN_NONE, 0, "", 0, NULL, NULL } }; diff --git a/src/input/input_plugin.h b/src/input/input_plugin.h index cf29a022e..47244bf8e 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.47 2003/04/13 16:02:54 tmattern Exp $ + * $Id: input_plugin.h,v 1.48 2003/04/26 22:34:32 guenter Exp $ */ #ifndef HAVE_INPUT_PLUGIN_H @@ -29,7 +29,7 @@ #include "buffer.h" #include "configfile.h" -#define INPUT_PLUGIN_IFACE_VERSION 12 +#define INPUT_PLUGIN_IFACE_VERSION 13 typedef struct input_class_s input_class_t ; typedef struct input_plugin_s input_plugin_t; diff --git a/src/input/input_pnm.c b/src/input/input_pnm.c index 136179064..0a093f4ee 100644 --- a/src/input/input_pnm.c +++ b/src/input/input_pnm.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2002 the xine project + * Copyright (C) 2002-2003 the xine project * * This file is part of xine, a free video player. * @@ -307,7 +307,7 @@ static void *init_class (xine_t *xine, void *data) { plugin_info_t xine_plugin_info[] = { /* type, API, "name", version, special_info, init_function */ - { PLUGIN_INPUT, 12, "pnm", XINE_VERSION_CODE, NULL, init_class }, + { PLUGIN_INPUT, 13, "pnm", XINE_VERSION_CODE, NULL, init_class }, { PLUGIN_NONE, 0, "", 0, NULL, NULL } }; diff --git a/src/input/input_pvr.c b/src/input/input_pvr.c index f0a94bd62..349a1a2d9 100644 --- a/src/input/input_pvr.c +++ b/src/input/input_pvr.c @@ -39,7 +39,7 @@ * usage: * xine pvr:<prefix_to_tmp_files>\!<prefix_to_saved_files>\!<max_page_age> * - * $Id: input_pvr.c,v 1.15 2003/04/13 16:02:54 tmattern Exp $ + * $Id: input_pvr.c,v 1.16 2003/04/26 22:34:32 guenter Exp $ */ /************************************************************************** @@ -1411,7 +1411,7 @@ static void *init_plugin (xine_t *xine, void *data) { plugin_info_t xine_plugin_info[] = { /* type, API, "name", version, special_info, init_function */ - { PLUGIN_INPUT, 12, "pvr", XINE_VERSION_CODE, NULL, init_plugin }, + { PLUGIN_INPUT, 13, "pvr", XINE_VERSION_CODE, NULL, init_plugin }, { PLUGIN_NONE, 0, "", 0, NULL, NULL } }; diff --git a/src/input/input_rtp.c b/src/input/input_rtp.c index bbe4dbf1f..e8fa2aa68 100644 --- a/src/input/input_rtp.c +++ b/src/input/input_rtp.c @@ -693,7 +693,7 @@ static void *init_class (xine_t *xine, void *data) { plugin_info_t xine_plugin_info[] = { /* type, API, "name", version, special_info, init_function */ - { PLUGIN_INPUT, 12, "rtp", XINE_VERSION_CODE, NULL, init_class }, + { PLUGIN_INPUT, 13, "rtp", XINE_VERSION_CODE, NULL, init_class }, { PLUGIN_NONE, 0, "", 0, NULL, NULL } }; diff --git a/src/input/input_rtsp.c b/src/input/input_rtsp.c index 617427607..58f85f81a 100644 --- a/src/input/input_rtsp.c +++ b/src/input/input_rtsp.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2002 the xine project + * Copyright (C) 2002-2003 the xine project * * This file is part of xine, a free video player. * @@ -323,7 +323,7 @@ static void *init_class (xine_t *xine, void *data) { plugin_info_t xine_plugin_info[] = { /* type, API, "name", version, special_info, init_function */ - { PLUGIN_INPUT, 12, "rtsp", XINE_VERSION_CODE, NULL, init_class }, + { PLUGIN_INPUT, 13, "rtsp", XINE_VERSION_CODE, NULL, init_class }, { PLUGIN_NONE, 0, "", 0, NULL, NULL } }; diff --git a/src/input/input_stdin_fifo.c b/src/input/input_stdin_fifo.c index 96d03f92d..4a9cc8abd 100644 --- a/src/input/input_stdin_fifo.c +++ b/src/input/input_stdin_fifo.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2000-2002 the xine project + * Copyright (C) 2000-2003 the xine project * * This file is part of xine, a free video player. * @@ -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.49 2003/04/13 18:49:12 miguelfreitas Exp $ + * $Id: input_stdin_fifo.c,v 1.50 2003/04/26 22:34:32 guenter Exp $ */ #ifdef HAVE_CONFIG_H @@ -387,6 +387,6 @@ static void *init_class (xine_t *xine, void *data) { plugin_info_t xine_plugin_info[] = { /* type, API, "name", version, special_info, init_function */ - { PLUGIN_INPUT, 12, "stdin", XINE_VERSION_CODE, NULL, init_class }, + { PLUGIN_INPUT, 13, "stdin", XINE_VERSION_CODE, NULL, init_class }, { PLUGIN_NONE, 0, "", 0, NULL, NULL } }; diff --git a/src/input/input_v4l.c b/src/input/input_v4l.c index 060cde4f9..40354bc3d 100644 --- a/src/input/input_v4l.c +++ b/src/input/input_v4l.c @@ -558,7 +558,7 @@ static void *init_class (xine_t *xine, void *data) { plugin_info_t xine_plugin_info[] = { /* type, API, "name", version, special_info, init_function */ - { PLUGIN_INPUT, 12, "v4l", XINE_VERSION_CODE, NULL, init_class }, + { PLUGIN_INPUT, 13, "v4l", XINE_VERSION_CODE, NULL, init_class }, { PLUGIN_NONE, 0, "", 0, NULL, NULL } }; diff --git a/src/input/input_vcd.c b/src/input/input_vcd.c index 3a62bfd66..675493c62 100644 --- a/src/input/input_vcd.c +++ b/src/input/input_vcd.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2000-2002 the xine project + * Copyright (C) 2000-2003 the xine project * * This file is part of xine, a free video player. * @@ -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.66 2003/04/13 16:02:54 tmattern Exp $ + * $Id: input_vcd.c,v 1.67 2003/04/26 22:34:32 guenter Exp $ * */ @@ -1098,6 +1098,6 @@ static void *init_class (xine_t *xine, void *data) { plugin_info_t xine_plugin_info[] = { /* type, API, "name", version, special_info, init_function */ - { PLUGIN_INPUT, 12, "VCD", XINE_VERSION_CODE, NULL, init_class }, + { PLUGIN_INPUT, 13, "VCD", XINE_VERSION_CODE, NULL, init_class }, { PLUGIN_NONE, 0, "", 0, NULL, NULL } }; |