summaryrefslogtreecommitdiff
path: root/libavformat/os_support.h
diff options
context:
space:
mode:
authorRamiro Polla <ramiro.polla@gmail.com>2008-10-02 17:43:27 +0000
committerRamiro Polla <ramiro.polla@gmail.com>2008-10-02 17:43:27 +0000
commit3defa81fc4b5134f4969a610fde6c40518f682c9 (patch)
tree25424c67662673d33c7cbf6fd5b2b9b688d4d6b6 /libavformat/os_support.h
parent126cadc723b175c6db564f92b4223cbadfa38304 (diff)
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.h3
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