Mercurial > mplayer.hg
view osdep/timer.h @ 28144:07981d3405b6
re-add codecs: sif1 (directshow version) and acdsee mjpeg
author | compn |
---|---|
date | Mon, 22 Dec 2008 16:51:06 +0000 |
parents | 9e739bdb049c |
children | 5cfef41a1771 |
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 ); unsigned set_timer_callback(unsigned ms,timer_callback func); void restore_timer(void); #endif /* MPLAYER_TIMER_H */