diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-09-05 20:44:38 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-09-05 20:44:38 +0000 |
commit | ea37f5776a90a7f8153757052a89d589185f5d23 (patch) | |
tree | de101bed2e068b81d2abc03866112342e5858ebe /src/video_out | |
parent | c35a3e9d5068667992c1b104195de59721e23786 (diff) | |
download | xine-lib-ea37f5776a90a7f8153757052a89d589185f5d23.tar.gz xine-lib-ea37f5776a90a7f8153757052a89d589185f5d23.tar.bz2 |
make all the plugin init functions static
(geez this was a job)
CVS patchset: 2616
CVS date: 2002/09/05 20:44:38
Diffstat (limited to 'src/video_out')
-rw-r--r-- | src/video_out/video_out_aa.c | 4 | ||||
-rw-r--r-- | src/video_out/video_out_directfb.c | 4 | ||||
-rw-r--r-- | src/video_out/video_out_fb.c | 4 | ||||
-rw-r--r-- | src/video_out/video_out_opengl.c | 4 | ||||
-rw-r--r-- | src/video_out/video_out_pgx64.c | 4 | ||||
-rw-r--r-- | src/video_out/video_out_sdl.c | 4 | ||||
-rw-r--r-- | src/video_out/video_out_syncfb.c | 4 | ||||
-rw-r--r-- | src/video_out/video_out_vidix.c | 4 | ||||
-rw-r--r-- | src/video_out/video_out_xshm.c | 4 | ||||
-rw-r--r-- | src/video_out/video_out_xv.c | 4 |
10 files changed, 20 insertions, 20 deletions
diff --git a/src/video_out/video_out_aa.c b/src/video_out/video_out_aa.c index 6ebdc0dd7..4241366f3 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.26 2002/09/04 23:31:12 guenter Exp $ + * $Id: video_out_aa.c,v 1.27 2002/09/05 20:44:42 mroi Exp $ * * video_out_aa.c, ascii-art output plugin for xine * @@ -265,7 +265,7 @@ static int aa_redraw_needed (vo_driver_t *this_gen) { return 0; } -vo_driver_t *init_video_out_plugin (config_values_t *config, void *visual_gen) { +static void *init_video_out_plugin (config_values_t *config, void *visual_gen) { aa_driver_t *this; this = (aa_driver_t*) malloc (sizeof (aa_driver_t)); diff --git a/src/video_out/video_out_directfb.c b/src/video_out/video_out_directfb.c index 9f8a9e1b9..9c01d12fe 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.13 2002/08/10 21:25:20 miguelfreitas Exp $ + * $Id: video_out_directfb.c,v 1.14 2002/09/05 20:44:42 mroi Exp $ * * DirectFB based output plugin. * Rich Wareham <richwareham@users.sourceforge.net> @@ -507,7 +507,7 @@ typedef struct { IDirectFBDisplayLayer *video_layer; } dfb_visual_info_t; -vo_driver_t *init_video_out_plugin (config_values_t *config, void *visual_gen) { +static void *init_video_out_plugin (config_values_t *config, void *visual_gen) { directfb_driver_t *this; dfb_visual_info_t *visual_info = (dfb_visual_info_t*)visual_gen; diff --git a/src/video_out/video_out_fb.c b/src/video_out/video_out_fb.c index a6b0b43c1..bf113ff01 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.16 2002/09/04 23:31:12 guenter Exp $ + * $Id: video_out_fb.c,v 1.17 2002/09/05 20:44:42 mroi Exp $ * * video_out_fb.c, frame buffer xine driver by Miguel Freitas * @@ -534,7 +534,7 @@ static void fb_exit (xine_vo_driver_t *this_gen) { close(this->fd); } -xine_vo_driver_t *init_video_out_plugin (config_values_t *config, void *visual_gen) { +static void *init_video_out_plugin (config_values_t *config, void *visual_gen) { fb_driver_t *this; int mode; diff --git a/src/video_out/video_out_opengl.c b/src/video_out/video_out_opengl.c index 2a504b9c0..599ee7482 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.17 2002/09/04 23:31:12 guenter Exp $ + * $Id: video_out_opengl.c,v 1.18 2002/09/05 20:44:42 mroi Exp $ * * video_out_glut.c, glut based OpenGL rendering interface for xine * Matthias Hopf <mat@mshopf.de> @@ -1036,7 +1036,7 @@ static void opengl_exit (vo_driver_t *this_gen) { } -vo_driver_t *init_video_out_plugin (config_values_t *config, void *visual_gen) { +static void *init_video_out_plugin (config_values_t *config, void *visual_gen) { opengl_driver_t *this; x11_visual_t *visual = (x11_visual_t *) visual_gen; diff --git a/src/video_out/video_out_pgx64.c b/src/video_out/video_out_pgx64.c index 04418e359..cc3d6b72b 100644 --- a/src/video_out/video_out_pgx64.c +++ b/src/video_out/video_out_pgx64.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_pgx64.c,v 1.2 2002/09/04 00:37:53 komadori Exp $ + * $Id: video_out_pgx64.c,v 1.3 2002/09/05 20:44:42 mroi Exp $ * * video_out_pgx64.c, Sun PGX64/PGX24 output plugin for xine * @@ -645,7 +645,7 @@ static void pgx64_exit(pgx64_driver_t *this) close(this->fbfd); } -pgx64_driver_t* init_video_out_plugin(config_values_t *config, void *visual_gen) { +static void* init_video_out_plugin(config_values_t *config, void *visual_gen) { pgx64_driver_t *this; char *devname; int fbfd; diff --git a/src/video_out/video_out_sdl.c b/src/video_out/video_out_sdl.c index 98b107892..994e7e371 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.13 2002/09/04 23:31:12 guenter Exp $ + * $Id: video_out_sdl.c,v 1.14 2002/09/05 20:44:42 mroi Exp $ * * video_out_sdl.c, Simple DirectMedia Layer * @@ -429,7 +429,7 @@ static void sdl_exit (xine_vo_driver_t *this_gen) { SDL_QuitSubSystem (SDL_INIT_VIDEO); } -xine_vo_driver_t *init_video_out_plugin (config_values_t *config, void *visual_gen) { +static void *init_video_out_plugin (config_values_t *config, void *visual_gen) { sdl_driver_t *this; const SDL_VideoInfo * vidInfo; diff --git a/src/video_out/video_out_syncfb.c b/src/video_out/video_out_syncfb.c index 7465dcf26..2c1e79b9e 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.77 2002/09/04 23:31:12 guenter Exp $ + * $Id: video_out_syncfb.c,v 1.78 2002/09/05 20:44:42 mroi Exp $ * * video_out_syncfb.c, SyncFB (for Matrox G200/G400 cards) interface for xine * @@ -803,7 +803,7 @@ static void syncfb_exit(xine_vo_driver_t *this_gen) close(this->fd); } -xine_vo_driver_t *init_video_out_plugin(config_values_t *config, void *visual_gen) +static void *init_video_out_plugin(config_values_t *config, void *visual_gen) { syncfb_driver_t* this; Display* display = NULL; diff --git a/src/video_out/video_out_vidix.c b/src/video_out/video_out_vidix.c index 9262f14b0..515cbcdcf 100644 --- a/src/video_out/video_out_vidix.c +++ b/src/video_out/video_out_vidix.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_vidix.c,v 1.11 2002/09/04 23:31:12 guenter Exp $ + * $Id: video_out_vidix.c,v 1.12 2002/09/05 20:44:42 mroi Exp $ * * video_out_vidix.c * @@ -661,7 +661,7 @@ static void vidix_exit (vo_driver_t *this_gen) { vdlClose(this->vidix_handler); } -vo_driver_t *init_video_out_plugin (config_values_t *config, void *visual_gen) { +static void *init_video_out_plugin (config_values_t *config, void *visual_gen) { vidix_driver_t *this; x11_visual_t *visual = (x11_visual_t *) visual_gen; diff --git a/src/video_out/video_out_xshm.c b/src/video_out/video_out_xshm.c index f202d6d95..6a3743f42 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.87 2002/09/04 23:31:12 guenter Exp $ + * $Id: video_out_xshm.c,v 1.88 2002/09/05 20:44:42 mroi Exp $ * * video_out_xshm.c, X11 shared memory extension interface for xine * @@ -996,7 +996,7 @@ static char *visual_class_name(Visual *visual) { } } -xine_vo_driver_t *init_video_out_plugin (config_values_t *config, void *visual_gen) { +static void *init_video_out_plugin (config_values_t *config, void *visual_gen) { xshm_driver_t *this; x11_visual_t *visual = (x11_visual_t *) visual_gen; diff --git a/src/video_out/video_out_xv.c b/src/video_out/video_out_xv.c index 015c18757..410bbbdb6 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.129 2002/09/04 23:31:12 guenter Exp $ + * $Id: video_out_xv.c,v 1.130 2002/09/05 20:44:42 mroi Exp $ * * video_out_xv.c, X11 video extension interface for xine * @@ -1052,7 +1052,7 @@ static void xv_update_XV_DOUBLE_BUFFER(void *this_gen, xine_cfg_entry_t *entry) } -void *init_video_out_plugin (xine_t *xine, void *visual_gen) { +static void *init_video_out_plugin (xine_t *xine, void *visual_gen) { config_values_t *config = xine->config; xv_driver_t *this; |