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.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavformat/riff.h') diff --git a/libavformat/riff.h b/libavformat/riff.h index 5fdb370d71..bd4e9f16ae 100644 --- a/libavformat/riff.h +++ b/libavformat/riff.h @@ -31,8 +31,8 @@ #include "libavcodec/avcodec.h" #include "avio.h" -offset_t start_tag(ByteIOContext *pb, const char *tag); -void end_tag(ByteIOContext *pb, offset_t start); +int64_t start_tag(ByteIOContext *pb, const char *tag); +void end_tag(ByteIOContext *pb, int64_t start); typedef struct AVCodecTag { int id; -- cgit v1.2.3