diff libvo/vo_directfb.c @ 8148:5b39e79af5fe

removed get_info, using the same sheme as in libmpcodecs instead
author alex
date Mon, 11 Nov 2002 15:22:10 +0000
parents eca7dbad0166
children edfe34c5405d
line wrap: on
line diff
--- a/libvo/vo_directfb.c	Mon Nov 11 14:26:07 2002 +0000
+++ b/libvo/vo_directfb.c	Mon Nov 11 15:22:10 2002 +0000
@@ -65,15 +65,15 @@
 #define min(x,y) (((x)<(y))?(x):(y))
 #endif
 
-LIBVO_EXTERN(directfb)
-
-static vo_info_t vo_info = {
+static vo_info_t info = {
 	"Direct Framebuffer Device",
 	"directfb",
 	"Jiri Svoboda Jiri.Svoboda@seznam.cz",
 	""
 };
 
+LIBVO_EXTERN(directfb)
+
 extern int verbose;
 
 /******************************
@@ -1079,11 +1079,6 @@
 	return 0;
 }
 
-static const vo_info_t *get_info(void)
-{
-	return &vo_info;
-}
-
 static void draw_alpha(int x0, int y0, int w, int h, unsigned char *src,
 		unsigned char *srca, int stride)
 {