Mercurial > mplayer.hg
annotate osdep/timer.h @ 15155:bccc42f0c10b
Online audio switching now supports Matroska too
author | gpoirier |
---|---|
date | Wed, 13 Apr 2005 22:33:20 +0000 |
parents | f9755d9c479a |
children | f580a7755ac5 |
rev | line source |
---|---|
4863 | 1 #ifndef __TIMER_H |
2 #define __TIMER_H | |
1 | 3 |
12954 | 4 extern const char *timer_name; |
5 | |
1 | 6 void InitTimer(); |
99 | 7 unsigned int GetTimer(); |
4385 | 8 unsigned int GetTimerMS(); |
1 | 9 //int uGetTimer(); |
10 float GetRelativeTime(); | |
11 | |
2266 | 12 int usec_sleep(int usec_delay); |
13 | |
4863 | 14 /* timer's callback handling */ |
15 typedef void timer_callback( void ); | |
16 extern unsigned set_timer_callback(unsigned ms,timer_callback func); | |
17 extern void restore_timer(void); | |
18 | |
19 #endif |