Mercurial > mplayer.hg
changeset 30673:cfb6e0b4e2bd
Mark sleep_accurate() as static, it is only used within the file.
author | diego |
---|---|
date | Mon, 22 Feb 2010 21:53:06 +0000 |
parents | 4400019c6ae2 |
children | 553f53cffabf |
files | osdep/timer-darwin.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/osdep/timer-darwin.c Mon Feb 22 19:17:25 2010 +0000 +++ b/osdep/timer-darwin.c Mon Feb 22 21:53:06 2010 +0000 @@ -35,7 +35,7 @@ /* the core sleep function, uses floats and is used in MPlayer G2 */ -float sleep_accurate(float time_frame) +static float sleep_accurate(float time_frame) { uint64_t deadline = time_frame / timebase_ratio + mach_absolute_time();