Mercurial > mplayer.hg
view osdep/timer.h @ 24585:096d129bb83a
r24558: Clarify the relationship between -msglevel and MPLAYER_VERBOSE.
r24573: Implement setting gain control for video devices (usually webcams)
r24592: Change outdated note for -subfps
author | voroshil |
---|---|
date | Mon, 24 Sep 2007 18:18:51 +0000 |
parents | 88bed2131f19 |
children | 9e739bdb049c |
line wrap: on
line source
#ifndef MPLAYER_TIMER_H #define MPLAYER_TIMER_H extern const char *timer_name; void InitTimer(void); unsigned int GetTimer(void); unsigned int GetTimerMS(void); //int uGetTimer(); float GetRelativeTime(void); int usec_sleep(int usec_delay); /* timer's callback handling */ typedef void timer_callback( void ); extern unsigned set_timer_callback(unsigned ms,timer_callback func); extern void restore_timer(void); #endif /* MPLAYER_TIMER_H */