Mercurial > mplayer.hg
changeset 24497:713ad2d3878d
PTS should be passed as int64_t to demux_ty_CopyToDemuxPacket
author | reimar |
---|---|
date | Sat, 15 Sep 2007 10:55:30 +0000 |
parents | 42693ad6dd30 |
children | 7d955b1de13c |
files | libmpdemux/demux_ty.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/libmpdemux/demux_ty.c Sat Sep 15 10:54:37 2007 +0000 +++ b/libmpdemux/demux_ty.c Sat Sep 15 10:55:30 2007 +0000 @@ -334,7 +334,7 @@ } static void demux_ty_CopyToDemuxPacket( demux_stream_t *ds, - unsigned char *buffer, int size, off_t pos, float pts ) + unsigned char *buffer, int size, off_t pos, int64_t pts ) { demux_packet_t *dp = new_demux_packet( size ); memcpy( dp->buffer, buffer, size );