summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Courtier-Dutton <jcdutton@users.sourceforge.net>2002-03-05 22:31:06 +0000
committerJames Courtier-Dutton <jcdutton@users.sourceforge.net>2002-03-05 22:31:06 +0000
commit8ea6db0abc6246ecc70dec14007e2518b175fdb1 (patch)
tree3caaeb90bc6c251d0f17529855c82991d893ddd7
parentb2ba852bbb64780030ba72d451ef3d7c6ac2e63c (diff)
downloadxine-lib-8ea6db0abc6246ecc70dec14007e2518b175fdb1.tar.gz
xine-lib-8ea6db0abc6246ecc70dec14007e2518b175fdb1.tar.bz2
remove bad "get_info" functions.
---------------------------------------------------------------------- CVS patchset: 1539 CVS date: 2002/03/05 22:31:06
-rw-r--r--include/xine.h.tmpl.in7
-rw-r--r--src/dxr3/dxr3_video_out.c3
-rw-r--r--src/video_out/video_out_aa.c3
-rw-r--r--src/video_out/video_out_directfb.c3
-rw-r--r--src/video_out/video_out_fb.c3
-rw-r--r--src/video_out/video_out_opengl.c3
-rw-r--r--src/video_out/video_out_sdl.c3
-rw-r--r--src/video_out/video_out_syncfb.c3
-rw-r--r--src/video_out/video_out_xshm.c3
-rw-r--r--src/video_out/video_out_xv.c3
-rw-r--r--src/xine-engine/video_out.h3
11 files changed, 11 insertions, 26 deletions
diff --git a/include/xine.h.tmpl.in b/include/xine.h.tmpl.in
index 8972871d2..70dee248e 100644
--- a/include/xine.h.tmpl.in
+++ b/include/xine.h.tmpl.in
@@ -28,7 +28,7 @@
\endverbatim
*/
/*
- * $Id: xine.h.tmpl.in,v 1.83 2002/03/05 20:39:05 jcdutton Exp $
+ * $Id: xine.h.tmpl.in,v 1.84 2002/03/05 22:31:06 jcdutton Exp $
*
*/
@@ -509,11 +509,6 @@ struct vo_driver_s {
*/
void (*exit) (vo_driver_t *self);
- /**
- * Get driver name etc.
- */
- vo_info_t* (*get_info) ();
-
};
/** @} end of video_group */
diff --git a/src/dxr3/dxr3_video_out.c b/src/dxr3/dxr3_video_out.c
index 8f91dcafa..1fd3a6d7d 100644
--- a/src/dxr3/dxr3_video_out.c
+++ b/src/dxr3/dxr3_video_out.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_video_out.c,v 1.7 2002/03/05 21:54:31 jcdutton Exp $
+ * $Id: dxr3_video_out.c,v 1.8 2002/03/05 22:31:06 jcdutton Exp $
*
* mpeg1 encoding video out plugin for the dxr3.
*
@@ -533,7 +533,6 @@ printf("dxr3_video_out:init_plugin\n");
this->vo_driver.get_property_min_max = dxr3_get_property_min_max;
this->vo_driver.gui_data_exchange = dxr3_gui_data_exchange;
this->vo_driver.exit = dxr3_exit;
- this->vo_driver.get_info = get_video_out_plugin_info;
this->config=config;
this->mpeg_source = 0; /* set by update_frame, by checking the flag */
diff --git a/src/video_out/video_out_aa.c b/src/video_out/video_out_aa.c
index 92e69ee28..60b4ee1b9 100644
--- a/src/video_out/video_out_aa.c
+++ b/src/video_out/video_out_aa.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: video_out_aa.c,v 1.14 2002/01/09 22:33:04 jcdutton Exp $
+ * $Id: video_out_aa.c,v 1.15 2002/03/05 22:31:06 jcdutton Exp $
*
* video_out_aa.c, ascii-art output plugin for xine
*
@@ -289,7 +289,6 @@ vo_driver_t *init_video_out_plugin (config_values_t *config, void *visual_gen) {
this->vo_driver.get_property_min_max = aa_get_property_min_max;
this->vo_driver.gui_data_exchange = NULL;
this->vo_driver.exit = aa_exit;
- this->vo_driver.get_info = get_video_out_plugin_info;
return (vo_driver_t*) this;
}
diff --git a/src/video_out/video_out_directfb.c b/src/video_out/video_out_directfb.c
index 7695979e5..32cf8e660 100644
--- a/src/video_out/video_out_directfb.c
+++ b/src/video_out/video_out_directfb.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: video_out_directfb.c,v 1.5 2002/02/25 10:32:53 richwareham Exp $
+ * $Id: video_out_directfb.c,v 1.6 2002/03/05 22:31:06 jcdutton Exp $
*
* DirectFB based output plugin.
* Rich Wareham <richwareham@users.sourceforge.net>
@@ -556,7 +556,6 @@ vo_driver_t *init_video_out_plugin (config_values_t *config, void *visual_gen) {
this->vo_driver.get_property_min_max = directfb_get_property_min_max;
this->vo_driver.gui_data_exchange = directfb_gui_data_exchange;
this->vo_driver.exit = directfb_exit;
- this->vo_driver.get_info = get_video_out_plugin_info;
this->dfb = visual_info->dfb;
this->layer = visual_info->video_layer;
diff --git a/src/video_out/video_out_fb.c b/src/video_out/video_out_fb.c
index 8dbbd0f46..a50ca495f 100644
--- a/src/video_out/video_out_fb.c
+++ b/src/video_out/video_out_fb.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: video_out_fb.c,v 1.5 2002/02/09 07:13:24 guenter Exp $
+ * $Id: video_out_fb.c,v 1.6 2002/03/05 22:31:06 jcdutton Exp $
*
* video_out_fb.c, frame buffer xine driver by Miguel Freitas
*
@@ -770,7 +770,6 @@ vo_driver_t *init_video_out_plugin (config_values_t *config, void *visual_gen) {
this->vo_driver.get_property_min_max = fb_get_property_min_max;
this->vo_driver.gui_data_exchange = fb_gui_data_exchange;
this->vo_driver.exit = fb_exit;
- this->vo_driver.get_info = get_video_out_plugin_info;
device_name = config->register_string (config, "video.fb_device", "/dev/fb0",
"framebuffer device", NULL, NULL, NULL);
diff --git a/src/video_out/video_out_opengl.c b/src/video_out/video_out_opengl.c
index 23e690719..347194033 100644
--- a/src/video_out/video_out_opengl.c
+++ b/src/video_out/video_out_opengl.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: video_out_opengl.c,v 1.5 2002/02/09 07:13:24 guenter Exp $
+ * $Id: video_out_opengl.c,v 1.6 2002/03/05 22:31:06 jcdutton Exp $
*
* video_out_glut.c, glut based OpenGL rendering interface for xine
* Matthias Hopf <mat@mshopf.de>
@@ -1132,7 +1132,6 @@ vo_driver_t *init_video_out_plugin (config_values_t *config, void *visual_gen) {
this->vo_driver.get_property_min_max = opengl_get_property_min_max;
this->vo_driver.gui_data_exchange = opengl_gui_data_exchange;
this->vo_driver.exit = opengl_exit;
- this->vo_driver.get_info = get_video_out_plugin_info;
this->yuv2rgb = yuv2rgb_init (YUV_FORMAT, YUV_SWAP_MODE, NULL);
diff --git a/src/video_out/video_out_sdl.c b/src/video_out/video_out_sdl.c
index f724fd057..db180423b 100644
--- a/src/video_out/video_out_sdl.c
+++ b/src/video_out/video_out_sdl.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: video_out_sdl.c,v 1.4 2002/01/24 23:09:53 guenter Exp $
+ * $Id: video_out_sdl.c,v 1.5 2002/03/05 22:31:06 jcdutton Exp $
*
* video_out_sdl.c, Simple DirectMedia Layer
*
@@ -639,7 +639,6 @@ vo_driver_t *init_video_out_plugin (config_values_t *config, void *visual_gen) {
this->vo_driver.get_property_min_max = sdl_get_property_min_max;
this->vo_driver.gui_data_exchange = sdl_gui_data_exchange;
this->vo_driver.exit = sdl_exit;
- this->vo_driver.get_info = get_video_out_plugin_info;
printf ("video_out_sdl: warning, xine's SDL driver is EXPERIMENTAL\n");
printf ("video_out_sdl: fullscreen mode is NOT supported\n");
diff --git a/src/video_out/video_out_syncfb.c b/src/video_out/video_out_syncfb.c
index ce34a6b1c..ac7a0299c 100644
--- a/src/video_out/video_out_syncfb.c
+++ b/src/video_out/video_out_syncfb.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: video_out_syncfb.c,v 1.53 2002/02/09 07:13:24 guenter Exp $
+ * $Id: video_out_syncfb.c,v 1.54 2002/03/05 22:31:06 jcdutton Exp $
*
* video_out_syncfb.c, SyncFB (for Matrox G200/G400 cards) interface for xine
*
@@ -1258,7 +1258,6 @@ vo_driver_t *init_video_out_plugin (config_values_t *config, void *visual_gen) {
this->vo_driver.get_property_min_max = syncfb_get_property_min_max;
this->vo_driver.gui_data_exchange = syncfb_gui_data_exchange;
this->vo_driver.exit = syncfb_exit;
- this->vo_driver.get_info = get_video_out_plugin_info;
this->deinterlace_enabled = 0;
diff --git a/src/video_out/video_out_xshm.c b/src/video_out/video_out_xshm.c
index 529b220fd..60ffc6236 100644
--- a/src/video_out/video_out_xshm.c
+++ b/src/video_out/video_out_xshm.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: video_out_xshm.c,v 1.65 2002/03/01 09:29:50 guenter Exp $
+ * $Id: video_out_xshm.c,v 1.66 2002/03/05 22:31:06 jcdutton Exp $
*
* video_out_xshm.c, X11 shared memory extension interface for xine
*
@@ -1273,7 +1273,6 @@ vo_driver_t *init_video_out_plugin (config_values_t *config, void *visual_gen) {
this->vo_driver.get_property_min_max = xshm_get_property_min_max;
this->vo_driver.gui_data_exchange = xshm_gui_data_exchange;
this->vo_driver.exit = xshm_exit;
- this->vo_driver.get_info = get_video_out_plugin_info;
XAllocNamedColor (this->display,
DefaultColormap (this->display, this->screen),
diff --git a/src/video_out/video_out_xv.c b/src/video_out/video_out_xv.c
index 35669a342..ff5071d65 100644
--- a/src/video_out/video_out_xv.c
+++ b/src/video_out/video_out_xv.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: video_out_xv.c,v 1.103 2002/03/01 09:23:21 guenter Exp $
+ * $Id: video_out_xv.c,v 1.104 2002/03/05 22:31:06 jcdutton Exp $
*
* video_out_xv.c, X11 video extension interface for xine
*
@@ -1310,7 +1310,6 @@ vo_driver_t *init_video_out_plugin (config_values_t *config, void *visual_gen) {
this->vo_driver.get_property_min_max = xv_get_property_min_max;
this->vo_driver.gui_data_exchange = xv_gui_data_exchange;
this->vo_driver.exit = xv_exit;
- this->vo_driver.get_info = get_video_out_plugin_info;
/*
* init properties
diff --git a/src/xine-engine/video_out.h b/src/xine-engine/video_out.h
index e1571184c..6a4d8037e 100644
--- a/src/xine-engine/video_out.h
+++ b/src/xine-engine/video_out.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: video_out.h,v 1.46 2002/03/05 20:39:05 jcdutton Exp $
+ * $Id: video_out.h,v 1.47 2002/03/05 22:31:06 jcdutton Exp $
*
*
* xine version of video_out.h
@@ -308,7 +308,6 @@ struct vo_driver_s {
void *data);
void (*exit) (vo_driver_t *this);
- vo_info_t* (*get_info) ();
};