summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-10-10 12:26:58 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-10-10 12:26:58 +0000
commit780e75dd683fdc19a8c2197409876f938f8f33c0 (patch)
tree1c271a5133f396e1832f6729757f804eed32e7bc /libvo
parentf30d8e798910152d4bae17c33d9fa55363ce197c (diff)
downloadmpv-780e75dd683fdc19a8c2197409876f938f8f33c0.tar.bz2
mpv-780e75dd683fdc19a8c2197409876f938f8f33c0.tar.xz
Variables for OSD support should be static
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13600 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r--libvo/vo_gl.c10
1 files 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;