Mercurial > mplayer.hg
changeset 34107:4529cc476aa6
Do not use long type, it makes the code more platform dependent for no
good reason.
author | reimar |
---|---|
date | Thu, 13 Oct 2011 16:49:21 +0000 |
parents | 73287a787c27 |
children | 6cc07dbad511 |
files | libmpdemux/demux_pva.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/libmpdemux/demux_pva.c Thu Oct 13 16:45:48 2011 +0000 +++ b/libmpdemux/demux_pva.c Thu Oct 13 16:49:21 2011 +0000 @@ -51,7 +51,7 @@ typedef struct { off_t offset; - long size; + int size; uint8_t type; uint8_t is_packet_start; float pts; @@ -62,7 +62,7 @@ float last_audio_pts; float last_video_pts; float video_pts_after_prebytes; - long video_size_after_prebytes; + int video_size_after_prebytes; uint8_t prebytes_delivered; uint8_t just_synced; uint8_t synced_stream_id;