Commit 9fb45a77 authored by diego's avatar diego

#define fseeko/ftello to fseeko64/ftello64, fixes MinGW compilation.

patch by Steve Lhomme, steve.,.,.lhomme.,@,.free.,.,.fr


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@5230 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 41a90fb4
......@@ -24,6 +24,11 @@
#include <stdlib.h>
#include <inttypes.h>
#ifdef __MINGW32__
#define fseeko(x,y,z) fseeko64(x,y,z)
#define ftello(x) ftello64(x)
#endif
#define BE_16(x) ((((uint8_t*)(x))[0] << 8) | ((uint8_t*)(x))[1])
#define BE_32(x) ((((uint8_t*)(x))[0] << 24) | \
(((uint8_t*)(x))[1] << 16) | \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment