[Mplayer-cvslog] CVS: main/libvo vo_gl.c,1.51,1.52
Reimar Döffinger CVS
syncmail at mplayerhq.hu
Sun Oct 10 14:27:01 CEST 2004
CVS change done by Reimar Döffinger CVS
Update of /cvsroot/mplayer/main/libvo
In directory mail:/var2/tmp/cvs-serv30837/libvo
Modified Files:
vo_gl.c
Log Message:
Variables for OSD support should be static
Index: vo_gl.c
===================================================================
RCS file: /cvsroot/mplayer/main/libvo/vo_gl.c,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -r1.51 -r1.52
--- vo_gl.c 8 Oct 2004 19:53:10 -0000 1.51
+++ vo_gl.c 10 Oct 2004 12:26:58 -0000 1.52
@@ -42,14 +42,14 @@
GLX_DOUBLEBUFFER,
None };
-int use_osd;
+static int use_osd;
#define MAX_OSD_PARTS 20
-GLuint osdtex[MAX_OSD_PARTS];
+static GLuint osdtex[MAX_OSD_PARTS];
#ifndef FAST_OSD
-GLuint osdatex[MAX_OSD_PARTS];
+static GLuint osdatex[MAX_OSD_PARTS];
#endif
-GLuint osdDispList[MAX_OSD_PARTS];
-int osdtexCnt = 0;
+static GLuint osdDispList[MAX_OSD_PARTS];
+static int osdtexCnt = 0;
static uint32_t image_width;
static uint32_t image_height;
More information about the MPlayer-cvslog
mailing list