Mercurial > mplayer.hg
view osdep/timer.h @ 18971:ec2f6323fda3
Change SRC_PATH for ffmpeg back to '..' to avoid hardcoding current
directory at configure time. This should work again now that libpostproc
is no longer under libavcodec and all Makefiles included from ffmpeg are
at the same directory level.
The hardcoded paths caused breakage if the build directory was moved or
copied after configure and prevented ccache from sharing compilation
results between directories (different absolute include paths count as
different compiler options).
author | uau |
---|---|
date | Sun, 09 Jul 2006 14:06:13 +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