[MPlayer-cvslog] r35321 - in trunk/libvo: vo_x11.c vo_xv.c

reimar subversion at mplayerhq.hu
Thu Nov 1 20:01:32 CET 2012


Author: reimar
Date: Thu Nov  1 20:01:32 2012
New Revision: 35321

Log:
Fix variable declarations I stupidly forgot to make "static".

Modified:
   trunk/libvo/vo_x11.c
   trunk/libvo/vo_xv.c

Modified: trunk/libvo/vo_x11.c
==============================================================================
--- trunk/libvo/vo_x11.c	Thu Nov  1 13:44:26 2012	(r35320)
+++ trunk/libvo/vo_x11.c	Thu Nov  1 20:01:32 2012	(r35321)
@@ -66,7 +66,7 @@ static const vo_info_t info = {
 
 const LIBVO_EXTERN(x11)
 /* private prototypes */
-vo_draw_alpha_func draw_alpha_func;
+static vo_draw_alpha_func draw_alpha_func;
 
 /* local data */
 static unsigned char *ImageData;

Modified: trunk/libvo/vo_xv.c
==============================================================================
--- trunk/libvo/vo_xv.c	Thu Nov  1 13:44:26 2012	(r35320)
+++ trunk/libvo/vo_xv.c	Thu Nov  1 20:01:32 2012	(r35321)
@@ -107,7 +107,7 @@ static struct vo_rect src_rect;
 static struct vo_rect dst_rect;
 static uint32_t max_width = 0, max_height = 0; // zero means: not set
 
-vo_draw_alpha_func draw_alpha_func;
+static vo_draw_alpha_func draw_alpha_func;
 
 static void fixup_osd_position(int *x0, int *y0, int *w, int *h)
 {


More information about the MPlayer-cvslog mailing list