Mercurial > mplayer.hg
view osdep/timer.h @ 20892:5ded625e07ad
Remove some incorrect code
This code was apparently intended to duplicate frames in constant-
framerate output in case of skipped input frames, but the test used
(blit_frame not set at that location) is not correct for that use.
If removing this code turns out to make the brokenness of other code
more apparent then a better fix might be needed.
author | uau |
---|---|
date | Tue, 14 Nov 2006 05:56:20 +0000 |
parents | f580a7755ac5 |
children | 88bed2131f19 |
line wrap: on
line source
#ifndef __TIMER_H #define __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