diff options
author | Hendrik Leppkes <h.leppkes@gmail.com> | 2013-03-12 16:45:13 +0100 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2013-03-27 19:05:58 +0200 |
commit | 85a46ad685048f0c389f0f997c6e33e5546d0b3b (patch) | |
tree | 1e2f6907fbd5784fd9eeb7298c57c096fd7b5e7b /libavformat/os_support.c | |
parent | ad04025987e5c926ae5bde8947a44b3f1346e64c (diff) | |
download | ffmpeg-85a46ad685048f0c389f0f997c6e33e5546d0b3b.tar.gz |
win32: Use 64-bit fstat/lseek variants for MSVC as well
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavformat/os_support.c')
-rw-r--r-- | libavformat/os_support.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavformat/os_support.c b/libavformat/os_support.c index 30581ed7c2..2d8a90346a 100644 --- a/libavformat/os_support.c +++ b/libavformat/os_support.c @@ -29,6 +29,9 @@ #if defined(_WIN32) && !defined(__MINGW32CE__) #undef open +#undef lseek +#undef stat +#undef fstat #include <fcntl.h> #include <io.h> #include <windows.h> |