diff options
author | Mike Melanson <mike@multimedia.cx> | 2003-10-02 03:53:52 +0000 |
---|---|---|
committer | Mike Melanson <mike@multimedia.cx> | 2003-10-02 03:53:52 +0000 |
commit | 68a43d044a0b8505f8fdef44880faa5c98388a72 (patch) | |
tree | 825e8c09626f73bb3d9c0d55981bf0695cd4d612 | |
parent | ca7d05d56fec59c51cd4bf7c47d585a15f1cbf4e (diff) | |
download | ffmpeg-68a43d044a0b8505f8fdef44880faa5c98388a72.tar.gz |
the correct data type is offset_t
Originally committed as revision 2329 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/segafilm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/segafilm.c b/libavformat/segafilm.c index 818c0d3d82..3d1b48bbfa 100644 --- a/libavformat/segafilm.c +++ b/libavformat/segafilm.c @@ -46,7 +46,7 @@ typedef struct { int stream; - off_t sample_offset; + offset_t sample_offset; unsigned int sample_size; int64_t pts; int keyframe; |