summaryrefslogtreecommitdiff
path: root/libavformat/sierravmd.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2008-10-03 10:16:29 +0000
committerDiego Biurrun <diego@biurrun.de>2008-10-03 10:16:29 +0000
commitbc5c918ea8757514de0ec0327066251a2f1ec23f (patch)
tree81bdb2bd95adf7002bc895eec401c7badf36816e /libavformat/sierravmd.c
parent0c45cd0720cdf2415a93ef63475690faf68364c2 (diff)
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. Originally committed as revision 15533 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/sierravmd.c')
-rw-r--r--libavformat/sierravmd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/sierravmd.c b/libavformat/sierravmd.c
index 20c4f58022..0a5f2fa581 100644
--- a/libavformat/sierravmd.c
+++ b/libavformat/sierravmd.c
@@ -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 @@ static int vmd_read_header(AVFormatContext *s,
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;