summaryrefslogtreecommitdiffstats
path: root/demux/aviheader.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2012-11-18 20:46:12 +0100
committerwm4 <wm4@nowhere>2012-11-20 18:00:15 +0100
commitddffcce67810fbde5508a353f85760da7a1b4a95 (patch)
tree74d9b416568c12759a0c198651bce0e78a0c2284 /demux/aviheader.h
parent51dac4e0702e361b88e5a373fbb0165f5ad47420 (diff)
downloadmpv-ddffcce67810fbde5508a353f85760da7a1b4a95.tar.bz2
mpv-ddffcce67810fbde5508a353f85760da7a1b4a95.tar.xz
stream, demux: replace off_t with int64_t
On reasonable systems, these types were the same anyway. Even on unreasonable systems (seriously, which?), this may reduce potential breakage.
Diffstat (limited to 'demux/aviheader.h')
-rw-r--r--demux/aviheader.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/demux/aviheader.h b/demux/aviheader.h
index f1ec64a577..0d721908d3 100644
--- a/demux/aviheader.h
+++ b/demux/aviheader.h
@@ -348,14 +348,14 @@ typedef struct {
// index stuff:
void* idx;
int idx_size;
- off_t idx_pos;
- off_t idx_pos_a;
- off_t idx_pos_v;
- off_t idx_offset; // ennyit kell hozzaadni az index offset ertekekhez
+ int64_t idx_pos;
+ int64_t idx_pos_a;
+ int64_t idx_pos_v;
+ int64_t idx_offset; // ennyit kell hozzaadni az index offset ertekekhez
// bps-based PTS stuff:
int video_pack_no;
int audio_block_size;
- off_t audio_block_no;
+ int64_t audio_block_no;
// interleaved PTS stuff:
int skip_video_frames;
int audio_streams;