mirror of https://git.ffmpeg.org/ffmpeg.git
qt-faststart: Undefine fseeko/ftello before defining them
This avoids a number of redefinition warnings on MinGW64.
This commit is contained in:
parent
1019b7c4ed
commit
3526ab891c
|
@ -30,10 +30,14 @@
|
|||
#include <string.h>
|
||||
|
||||
#ifdef __MINGW32__
|
||||
#undef fseeko
|
||||
#define fseeko(x, y, z) fseeko64(x, y, z)
|
||||
#undef ftello
|
||||
#define ftello(x) ftello64(x)
|
||||
#elif defined(_WIN32)
|
||||
#undef fseeko
|
||||
#define fseeko(x, y, z) _fseeki64(x, y, z)
|
||||
#undef ftello
|
||||
#define ftello(x) _ftelli64(x)
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in New Issue