From bc5c918ea8757514de0ec0327066251a2f1ec23f Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Fri, 3 Oct 2008 10:16:29 +0000 Subject: 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 --- libavformat/swf.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libavformat/swf.h') diff --git a/libavformat/swf.h b/libavformat/swf.h index a138987ca4..93377dcccf 100644 --- a/libavformat/swf.h +++ b/libavformat/swf.h @@ -66,9 +66,9 @@ typedef struct { int audio_stream_index; - offset_t duration_pos; - offset_t tag_pos; - offset_t vframes_pos; + int64_t duration_pos; + int64_t tag_pos; + int64_t vframes_pos; int samples_per_frame; int sound_samples; int swf_frame_number; -- cgit v1.2.3