annotate osdep/timer.h @ 13256:9a3e02d65e08
fix seeking with -hr-mp3-seek. maybe not the best fix (why is last_pts
ever infinite?!?!) but at least it makes it work... :)
patch by Balazs KOSSOVICS (tevefeju AT freemail.hu):
Hi!
When we listening music with "-hr-mp3-seek" option, than there is a
negative value at the first rewinds in the statusrange (-52 hours, some
minutes). The patch is against this.
author |
rfelker |
date |
Sun, 05 Sep 2004 22:10:59 +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
|