view osdep/timer.h @ 25273:a07e6b9e36c1

Sync with vidix.sf.net r320: ati radeon >= R5xx do not have overlay engine anymore but use 3D texture mapping instead; hence no chance to be supported by this driver.
author ben
date Tue, 04 Dec 2007 22:22:24 +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 */