Browse Source

it's int64_t in the ffmpeg headers, so it will be int64_t here, god damn it

rdb 14 years ago
parent
commit
2d975e0681
1 changed files with 1 additions and 1 deletions
  1. 1 1
      panda/src/movies/ffmpegVirtualFile.cxx

+ 1 - 1
panda/src/movies/ffmpegVirtualFile.cxx

@@ -38,7 +38,7 @@ extern "C" {
 #else
 #else
   static int       pandavfs_write(URLContext *h, const unsigned char *buf, int size);
   static int       pandavfs_write(URLContext *h, const unsigned char *buf, int size);
 #endif
 #endif
-  static PN_int64  pandavfs_seek(URLContext *h, PN_int64 pos, int whence);
+  static int64_t   pandavfs_seek(URLContext *h, int64_t pos, int whence);
   static int       pandavfs_close(URLContext *h);
   static int       pandavfs_close(URLContext *h);
 }
 }