diff options
author | Diego Biurrun | 2008-10-03 10:16:29 +0000 |
---|---|---|
committer | Diego Biurrun | 2008-10-03 10:16:29 +0000 |
commit | bc5c918ea8757514de0ec0327066251a2f1ec23f (patch) | |
tree | 81bdb2bd95adf7002bc895eec401c7badf36816e /libavformat/ffm.h | |
parent | 0c45cd0720cdf2415a93ef63475690faf68364c2 (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/ffm.h')
-rw-r--r-- | libavformat/ffm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/ffm.h b/libavformat/ffm.h index 0ed5c227f3..4a52c407ad 100644 --- a/libavformat/ffm.h +++ b/libavformat/ffm.h @@ -42,7 +42,7 @@ enum { typedef struct FFMContext { /* only reading mode */ - offset_t write_index, file_size; + int64_t write_index, file_size; int read_state; uint8_t header[FRAME_HEADER_SIZE+4]; |