Mercurial > mplayer.hg
annotate osdep/timer.h @ 25914:b102c1f10728
Update the test for ivtv output driver.
Linux kernel 2.6.24 now includes ivtv,
but the vo_ivtv.c fails to compile with it.
Test for structures and ioctl()s used in the current driver.
author | iive |
---|---|
date | Fri, 01 Feb 2008 20:14:53 +0000 |
parents | 88bed2131f19 |
children | 9e739bdb049c |
rev | line source |
---|---|
23934
88bed2131f19
Identifiers starting with underscores are reserved.
diego
parents:
17566
diff
changeset
|
1 #ifndef MPLAYER_TIMER_H |
88bed2131f19
Identifiers starting with underscores are reserved.
diego
parents:
17566
diff
changeset
|
2 #define MPLAYER_TIMER_H |
1 | 3 |
12954 | 4 extern const char *timer_name; |
5 | |
17566
f580a7755ac5
Patch by Stefan Huehner / stefan % huehner ! org \
rathann
parents:
12954
diff
changeset
|
6 void InitTimer(void); |
f580a7755ac5
Patch by Stefan Huehner / stefan % huehner ! org \
rathann
parents:
12954
diff
changeset
|
7 unsigned int GetTimer(void); |
f580a7755ac5
Patch by Stefan Huehner / stefan % huehner ! org \
rathann
parents:
12954
diff
changeset
|
8 unsigned int GetTimerMS(void); |
1 | 9 //int uGetTimer(); |
17566
f580a7755ac5
Patch by Stefan Huehner / stefan % huehner ! org \
rathann
parents:
12954
diff
changeset
|
10 float GetRelativeTime(void); |
1 | 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 | |
23934
88bed2131f19
Identifiers starting with underscores are reserved.
diego
parents:
17566
diff
changeset
|
19 #endif /* MPLAYER_TIMER_H */ |