summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/video_out/video_out_aa.c4
-rw-r--r--src/video_out/video_out_directfb.c4
-rw-r--r--src/video_out/video_out_fb.c8
-rw-r--r--src/video_out/video_out_opengl.c4
-rw-r--r--src/video_out/video_out_sdl.c4
-rw-r--r--src/video_out/video_out_syncfb.c3
-rw-r--r--src/video_out/video_out_xshm.c4
-rw-r--r--src/video_out/video_out_xv.c4
8 files changed, 8 insertions, 27 deletions
diff --git a/src/video_out/video_out_aa.c b/src/video_out/video_out_aa.c
index 60b4ee1b9..35094d4f7 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.15 2002/03/05 22:31:06 jcdutton Exp $
+ * $Id: video_out_aa.c,v 1.16 2002/03/07 13:26:15 jcdutton Exp $
*
* video_out_aa.c, ascii-art output plugin for xine
*
@@ -76,8 +76,6 @@ typedef struct {
/*
* our video driver
*/
-vo_info_t *get_video_out_plugin_info();
-
static uint32_t aa_get_capabilities (vo_driver_t *this) {
return VO_CAP_YV12 | VO_CAP_YUY2;
}
diff --git a/src/video_out/video_out_directfb.c b/src/video_out/video_out_directfb.c
index 32cf8e660..a0dd3991f 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.6 2002/03/05 22:31:06 jcdutton Exp $
+ * $Id: video_out_directfb.c,v 1.7 2002/03/07 13:26:15 jcdutton Exp $
*
* DirectFB based output plugin.
* Rich Wareham <richwareham@users.sourceforge.net>
@@ -130,8 +130,6 @@ typedef struct directfb_driver_s {
/*
* first, some utility functions
*/
-vo_info_t *get_video_out_plugin_info();
-
static void *my_malloc_aligned (size_t alignment, size_t size, uint8_t **chunk) {
uint8_t *pMem;
diff --git a/src/video_out/video_out_fb.c b/src/video_out/video_out_fb.c
index a50ca495f..bef2ad75c 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.6 2002/03/05 22:31:06 jcdutton Exp $
+ * $Id: video_out_fb.c,v 1.7 2002/03/07 13:26:15 jcdutton Exp $
*
* video_out_fb.c, frame buffer xine driver by Miguel Freitas
*
@@ -139,12 +139,6 @@ typedef struct fb_driver_s {
/*
- * first, some utility functions
- */
-vo_info_t *get_video_out_plugin_info();
-
-
-/*
* and now, the driver functions
*/
diff --git a/src/video_out/video_out_opengl.c b/src/video_out/video_out_opengl.c
index 347194033..06645c206 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.6 2002/03/05 22:31:06 jcdutton Exp $
+ * $Id: video_out_opengl.c,v 1.7 2002/03/07 13:26:16 jcdutton Exp $
*
* video_out_glut.c, glut based OpenGL rendering interface for xine
* Matthias Hopf <mat@mshopf.de>
@@ -203,8 +203,6 @@ typedef struct opengl_driver_s {
/*
* first, some utility functions
*/
-vo_info_t *get_video_out_plugin_info();
-
static void *my_malloc_aligned (size_t alignment, size_t size, uint8_t **chunk) {
uint8_t *pMem;
diff --git a/src/video_out/video_out_sdl.c b/src/video_out/video_out_sdl.c
index db180423b..4d96e8c66 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.5 2002/03/05 22:31:06 jcdutton Exp $
+ * $Id: video_out_sdl.c,v 1.6 2002/03/07 13:26:16 jcdutton Exp $
*
* video_out_sdl.c, Simple DirectMedia Layer
*
@@ -128,8 +128,6 @@ struct sdl_driver_s {
int *dest_height, int *dest_width);
};
-vo_info_t *get_video_out_plugin_info();
-
static uint32_t sdl_get_capabilities (vo_driver_t *this_gen) {
sdl_driver_t *this = (sdl_driver_t *) this_gen;
diff --git a/src/video_out/video_out_syncfb.c b/src/video_out/video_out_syncfb.c
index ac7a0299c..2a791b04e 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.54 2002/03/05 22:31:06 jcdutton Exp $
+ * $Id: video_out_syncfb.c,v 1.55 2002/03/07 13:26:16 jcdutton Exp $
*
* video_out_syncfb.c, SyncFB (for Matrox G200/G400 cards) interface for xine
*
@@ -160,7 +160,6 @@ int gX11Fail;
/*
* internal video_out_syncfb functions
*/
-vo_info_t *get_video_out_plugin_info();
/* returns boolean value (1 success, 0 failure) */
int syncfb_overlay_on(syncfb_driver_t* this) {
diff --git a/src/video_out/video_out_xshm.c b/src/video_out/video_out_xshm.c
index 60ffc6236..6411b4282 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.66 2002/03/05 22:31:06 jcdutton Exp $
+ * $Id: video_out_xshm.c,v 1.67 2002/03/07 13:26:16 jcdutton Exp $
*
* video_out_xshm.c, X11 shared memory extension interface for xine
*
@@ -176,8 +176,6 @@ int gX11Fail;
/*
* first, some utility functions
*/
-vo_info_t *get_video_out_plugin_info();
-
static int HandleXError (Display *display, XErrorEvent *xevent) {
char str [1024];
diff --git a/src/video_out/video_out_xv.c b/src/video_out/video_out_xv.c
index ff5071d65..a2514bd73 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.104 2002/03/05 22:31:06 jcdutton Exp $
+ * $Id: video_out_xv.c,v 1.105 2002/03/07 13:26:16 jcdutton Exp $
*
* video_out_xv.c, X11 video extension interface for xine
*
@@ -197,8 +197,6 @@ struct xv_driver_s {
int gX11Fail;
-vo_info_t *get_video_out_plugin_info();
-
static uint32_t xv_get_capabilities (vo_driver_t *this_gen) {
xv_driver_t *this = (xv_driver_t *) this_gen;