[FFmpeg-cvslog] xmv: Make the various offset variables uint64_t
Sven Hesse
git at videolan.org
Fri Aug 19 00:07:09 CEST 2011
ffmpeg | branch: master | Sven Hesse <drmccoy at drmccoy.de> | Thu Aug 18 18:22:40 2011 +0200| [d50fc62ea2c2be2d9c7858e688f6bdfcf984ba34] | committer: Michael Niedermayer
xmv: Make the various offset variables uint64_t
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=d50fc62ea2c2be2d9c7858e688f6bdfcf984ba34
---
libavformat/xmv.c | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/libavformat/xmv.c b/libavformat/xmv.c
index ef332e0..05ebe41 100644
--- a/libavformat/xmv.c
+++ b/libavformat/xmv.c
@@ -60,7 +60,7 @@ typedef struct XMVVideoPacket {
int stream_index;
uint32_t data_size;
- uint32_t data_offset;
+ uint64_t data_offset;
uint32_t current_frame;
uint32_t frame_count;
@@ -83,11 +83,11 @@ typedef struct XMVAudioPacket {
XMVAudioTrack *track;
uint32_t data_size;
- uint32_t data_offset;
+ uint64_t data_offset;
uint32_t frame_size;
- uint32_t block_count;
+ uint64_t block_count;
} XMVAudioPacket;
typedef struct XMVDemuxContext {
@@ -98,8 +98,8 @@ typedef struct XMVDemuxContext {
uint32_t this_packet_size;
uint32_t next_packet_size;
- uint32_t this_packet_offset;
- uint32_t next_packet_offset;
+ uint64_t this_packet_offset;
+ uint64_t next_packet_offset;
uint16_t current_stream;
uint16_t stream_count;
@@ -286,7 +286,7 @@ static int xmv_process_packet_header(AVFormatContext *s)
uint8_t data[8];
uint16_t audio_track;
- uint32_t data_offset;
+ uint64_t data_offset;
/* Next packet size */
xmv->next_packet_size = avio_rl32(pb);
More information about the ffmpeg-cvslog
mailing list