diff options
author | Ramiro Polla <ramiro.polla@gmail.com> | 2008-10-02 17:43:27 +0000 |
---|---|---|
committer | Ramiro Polla <ramiro.polla@gmail.com> | 2008-10-02 17:43:27 +0000 |
commit | 3defa81fc4b5134f4969a610fde6c40518f682c9 (patch) | |
tree | 25424c67662673d33c7cbf6fd5b2b9b688d4d6b6 /libavformat/os_support.h | |
parent | 126cadc723b175c6db564f92b4223cbadfa38304 (diff) | |
download | ffmpeg-3defa81fc4b5134f4969a610fde6c40518f682c9.tar.gz |
MinGW runtime 3.15 has a wrapper for usleep().
Originally committed as revision 15522 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/os_support.h')
-rw-r--r-- | libavformat/os_support.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libavformat/os_support.h b/libavformat/os_support.h index 2b89fb58e2..e547085dff 100644 --- a/libavformat/os_support.h +++ b/libavformat/os_support.h @@ -28,9 +28,6 @@ */ #ifdef __MINGW32__ -# define WIN32_LEAN_AND_MEAN -# include <windows.h> -# define usleep(t) Sleep((t) / 1000) # include <fcntl.h> # define lseek(f,p,w) _lseeki64((f), (p), (w)) #endif |