Mercurial > mplayer.hg
changeset 26381:4617c374f752
demux_real.c: Always use MP_NOPTS_VALUE for unknown pts
demux_real.c still had code that used either 0 or MP_NOPTS_VALUE for
unknown timestamps depending on correct_pts setting. It should have
been removed in svn commit 25988 "Change to always use MP_NOPTS_VALUE
(instead of sometimes 0) for unknown pts.".
author | uau |
---|---|
date | Sat, 12 Apr 2008 15:51:15 +0000 |
parents | 664b4467564d |
children | b2f4abcf20ed |
files | libmpdemux/demux_real.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/libmpdemux/demux_real.c Sat Apr 12 15:51:11 2008 +0000 +++ b/libmpdemux/demux_real.c Sat Apr 12 15:51:15 2008 +0000 @@ -741,7 +741,7 @@ break; } priv->audio_need_keyframe = 0; - priv->audio_timestamp[priv->sub_packet_cnt] = (priv->a_pts==timestamp) ? (user_correct_pts > 0 ? MP_NOPTS_VALUE : 0) : (timestamp/1000.0); + priv->audio_timestamp[priv->sub_packet_cnt] = (priv->a_pts==timestamp) ? MP_NOPTS_VALUE : (timestamp/1000.0); priv->a_pts = timestamp; if (priv->sub_packet_cnt == 0) priv->audio_filepos = demuxer->filepos;