diff options
author | Hendrik Leppkes <h.leppkes@gmail.com> | 2013-03-12 16:45:13 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-03-12 20:06:31 +0100 |
commit | 713ac21097555722257343494f83999068006653 (patch) | |
tree | e0966367ec54f4a78ba494dc4088b106da723889 /libavformat/os_support.c | |
parent | 6a701306db167a70b29a9a5aed3aaf7d8c369716 (diff) | |
download | ffmpeg-713ac21097555722257343494f83999068006653.tar.gz |
avutil/os_support: use 64-bit fstat/lseek variants for MSVC as well
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
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 ad1a23d0ed..15cf753072 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> |