From 780e75dd683fdc19a8c2197409876f938f8f33c0 Mon Sep 17 00:00:00 2001 From: reimar Date: Sun, 10 Oct 2004 12:26:58 +0000 Subject: [PATCH] Variables for OSD support should be static git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13600 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libvo/vo_gl.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/libvo/vo_gl.c b/libvo/vo_gl.c index 489df7401e..8470000c68 100644 --- a/libvo/vo_gl.c +++ b/libvo/vo_gl.c @@ -42,14 +42,14 @@ static int wsGLXAttrib[] = { GLX_RGBA, 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;