From 5c9b90d7a12e90e7a0aa2af8686b20bfa24742c4 Mon Sep 17 00:00:00 2001 From: uau Date: Sat, 8 Jul 2006 15:26:36 +0000 Subject: 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 --- libvo/vo_aa.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'libvo/vo_aa.c') 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; -- cgit v1.2.3