From ddffcce67810fbde5508a353f85760da7a1b4a95 Mon Sep 17 00:00:00 2001 From: wm4 Date: Sun, 18 Nov 2012 20:46:12 +0100 Subject: 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. --- demux/demux_packet.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'demux/demux_packet.h') diff --git a/demux/demux_packet.h b/demux/demux_packet.h index d64291f4e0..db5d41402c 100644 --- a/demux/demux_packet.h +++ b/demux/demux_packet.h @@ -28,7 +28,7 @@ typedef struct demux_packet { double pts; double duration; double stream_pts; - off_t pos; // position in index (AVI) or file (MPG) + int64_t pos; // position in index (AVI) or file (MPG) unsigned char *buffer; bool keyframe; int refcount; // counter for the master packet, if 0, buffer can be free()d -- cgit v1.2.3