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/riff.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libavformat/riff.c') diff --git a/libavformat/riff.c b/libavformat/riff.c index e00c9e131d..7b2682ae1e 100644 --- a/libavformat/riff.c +++ b/libavformat/riff.c @@ -215,16 +215,16 @@ const AVCodecTag codec_wav_tags[] = { }; #ifdef CONFIG_MUXERS -offset_t start_tag(ByteIOContext *pb, const char *tag) +int64_t start_tag(ByteIOContext *pb, const char *tag) { put_tag(pb, tag); put_le32(pb, 0); return url_ftell(pb); } -void end_tag(ByteIOContext *pb, offset_t start) +void end_tag(ByteIOContext *pb, int64_t start) { - offset_t pos; + int64_t pos; pos = url_ftell(pb); url_fseek(pb, start - 4, SEEK_SET); -- cgit v1.2.3