diff options
author | James Almer <jamrial@gmail.com> | 2017-04-04 15:58:11 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2017-04-04 15:58:11 -0300 |
commit | 2c40adf218c8991769fd6f55deffdea697361e3d (patch) | |
tree | 8ec8d384a6bef8a43c1fdde0f05494611a270541 /tools/qt-faststart.c | |
parent | 30518a68a74b82abaf2a8f230fee18b7e6c477fa (diff) | |
parent | 233d50b275dd7cf6cc0656851e670e1b2dfba56f (diff) | |
download | ffmpeg-2c40adf218c8991769fd6f55deffdea697361e3d.tar.gz |
Merge commit '233d50b275dd7cf6cc0656851e670e1b2dfba56f'
* commit '233d50b275dd7cf6cc0656851e670e1b2dfba56f':
qt-faststart: Do not try to use fancy 64-bit seeking functions on mingw32ce
Merged-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'tools/qt-faststart.c')
-rw-r--r-- | tools/qt-faststart.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/qt-faststart.c b/tools/qt-faststart.c index 97be019c58..728f80c39c 100644 --- a/tools/qt-faststart.c +++ b/tools/qt-faststart.c @@ -29,7 +29,10 @@ #include <inttypes.h> #include <string.h> -#ifdef __MINGW32__ +#ifdef __MINGW32CE__ +#define fseeko(x, y, z) fseek(x, y, z) +#define ftello(x) ftell(x) +#elif defined(__MINGW32__) #undef fseeko #define fseeko(x, y, z) fseeko64(x, y, z) #undef ftello |