diff libvo/vo_null.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 9fc45fe0d444
children 05aa13cdf92f
line wrap: on
line diff
--- a/libvo/vo_null.c	Mon Nov 11 14:26:07 2002 +0000
+++ b/libvo/vo_null.c	Mon Nov 11 15:22:10 2002 +0000
@@ -29,10 +29,7 @@
 #include "video_out.h"
 #include "video_out_internal.h"
 
-LIBVO_EXTERN(null)
-
-
-static vo_info_t vo_info = 
+static vo_info_t info = 
 {
 	"Null video output",
 	"null",
@@ -40,6 +37,8 @@
 	""
 };
 
+LIBVO_EXTERN(null)
+
 static uint32_t image_width, image_height;
 
 //static uint32_t
@@ -78,12 +77,6 @@
 	return 0;
 }
 
-static const vo_info_t*
-get_info(void)
-{
-	return &vo_info;
-}
-
 static void
 uninit(void)
 {