view osdep/timer.h @ 28605:65e49c604b25

Set samplerate in reset also for AC3, and set it before the format in that case (no idea why, but it is done this way in init, so it is consistent).
author reimar
date Tue, 17 Feb 2009 21:08:22 +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 */