summaryrefslogtreecommitdiffstats
path: root/libvo/vo_aa.c
diff options
context:
space:
mode:
authoruau <uau@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-07-08 15:26:36 +0000
committeruau <uau@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-07-08 15:26:36 +0000
commit5c9b90d7a12e90e7a0aa2af8686b20bfa24742c4 (patch)
tree5081051a4121e0c929ff471684703d4ddc821236 /libvo/vo_aa.c
parent01d52892036af77202db76fe86e808453d554533 (diff)
downloadmpv-5c9b90d7a12e90e7a0aa2af8686b20bfa24742c4.tar.bz2
mpv-5c9b90d7a12e90e7a0aa2af8686b20bfa24742c4.tar.xz
Make some functions static.
Patch by Stefan Huehner, stefan at huehner org. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18955 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo/vo_aa.c')
-rw-r--r--libvo/vo_aa.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/libvo/vo_aa.c b/libvo/vo_aa.c
index 3dc0a1ae52..860799d025 100644
--- a/libvo/vo_aa.c
+++ b/libvo/vo_aa.c
@@ -136,8 +136,8 @@ resize(void){
}
-void
-osdmessage(int duration, int deko, char *fmt, ...)
+static void
+osdmessage(int duration, int deko, const char *fmt, ...)
{
/*
* for outputting a centered string at the bottom
@@ -163,8 +163,8 @@ osdmessage(int duration, int deko, char *fmt, ...)
posbar[0]='\0';
}
-void
-osdpercent(int duration, int deko, int min, int max, int val, char * desc, char * unit)
+static void
+osdpercent(int duration, int deko, int min, int max, int val, const char * desc, const char * unit)
{
/*
* prints a bar for setting values
@@ -190,7 +190,7 @@ osdpercent(int duration, int deko, int min, int max, int val, char * desc, char
}
-void
+static void
printosdtext(void)
{
if(osd_text_length > 0 && !vo_osd_text) {
@@ -220,7 +220,7 @@ printosdtext(void)
}
}
-void
+static void
printosdprogbar(void){
/* print mplayer osd-progbar */
if (vo_osd_progbar_type!=-1){
@@ -574,7 +574,7 @@ draw_osd(void){
#endif
}
-int
+static int
getcolor(char * s){
int i;
char * rest;