fix seeking in WebMs > 2GB on i686

This commit is contained in:
j 2013-08-17 18:11:00 +02:00
parent d47b90be39
commit feb469d863

View file

@ -223,13 +223,13 @@ stdio_read(void * p, size_t length, void * fp)
static int static int
stdio_seek(int64_t offset, int whence, void * fp) stdio_seek(int64_t offset, int whence, void * fp)
{ {
return fseek(fp, offset, whence); return fseeko(fp, offset, whence);
} }
static int64_t static int64_t
stdio_tell(void * fp) stdio_tell(void * fp)
{ {
return ftell(fp); return ftello(fp);
} }
static void static void