summaryrefslogtreecommitdiffstats
path: root/mplayer.c
diff options
context:
space:
mode:
authoruau <uau@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-11-18 07:38:58 +0000
committeruau <uau@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-11-18 07:38:58 +0000
commit26eb093e5dcb4d6cb7ff9275c4c274cecf21bc29 (patch)
tree4f44ef691e03685323b2df10da19424661f25690 /mplayer.c
parentc9b485e94c21f5b43b762aa0cf21c8f753152e1f (diff)
downloadmpv-26eb093e5dcb4d6cb7ff9275c4c274cecf21bc29.tar.bz2
mpv-26eb093e5dcb4d6cb7ff9275c4c274cecf21bc29.tar.xz
Mark some functions static
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21002 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'mplayer.c')
-rw-r--r--mplayer.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/mplayer.c b/mplayer.c
index 7e264875f9..a998467c1d 100644
--- a/mplayer.c
+++ b/mplayer.c
@@ -1420,7 +1420,7 @@ static mp_osd_msg_t* get_osd_msg(void) {
*
*/
-void set_osd_bar(int type,const char* name,double min,double max,double val) {
+static void set_osd_bar(int type,const char* name,double min,double max,double val) {
if(osd_level < 1) return;
@@ -2992,7 +2992,7 @@ static void adjust_sync_and_print_status(int between_frames, float timing_error)
}
}
-int fill_audio_out_buffers(void)
+static int fill_audio_out_buffers(void)
{
unsigned int t;
double tt;
@@ -3078,7 +3078,7 @@ int fill_audio_out_buffers(void)
return 1;
}
-int sleep_until_update(float *time_frame, float *aq_sleep_time)
+static int sleep_until_update(float *time_frame, float *aq_sleep_time)
{
int frame_time_remaining = 0;
current_module="calc_sleep_time";