diff options
Diffstat (limited to 'src/video_out')
-rw-r--r-- | src/video_out/video_out_aa.c | 3 | ||||
-rw-r--r-- | src/video_out/video_out_directfb.c | 3 | ||||
-rw-r--r-- | src/video_out/video_out_fb.c | 3 | ||||
-rw-r--r-- | src/video_out/video_out_opengl.c | 3 | ||||
-rw-r--r-- | src/video_out/video_out_sdl.c | 3 | ||||
-rw-r--r-- | src/video_out/video_out_syncfb.c | 3 | ||||
-rw-r--r-- | src/video_out/video_out_xshm.c | 3 | ||||
-rw-r--r-- | src/video_out/video_out_xv.c | 3 |
8 files changed, 8 insertions, 16 deletions
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 |