diff sierravmd.c @ 3973:549a09cf23fe libavformat

Remove offset_t typedef and use int64_t directly instead. The name offset_t is easily confused with the standard off_t type and *_t is POSIX reserved namespace if any POSIX header is included.
author diego
date Fri, 03 Oct 2008 10:16:29 +0000
parents 1d3d17de20ba
children dcaeec7bd85f
line wrap: on
line diff
--- a/sierravmd.c	Thu Oct 02 21:15:48 2008 +0000
+++ b/sierravmd.c	Fri Oct 03 10:16:29 2008 +0000
@@ -34,7 +34,7 @@
 
 typedef struct {
   int stream_index;
-  offset_t frame_offset;
+  int64_t frame_offset;
   unsigned int frame_size;
   int64_t pts;
   int keyframe;
@@ -77,7 +77,7 @@
     unsigned int toc_offset;
     unsigned char *raw_frame_table;
     int raw_frame_table_size;
-    offset_t current_offset;
+    int64_t current_offset;
     int i, j;
     unsigned int total_frames;
     int64_t pts_inc = 1;