mirror of
https://github.com/mpv-player/mpv
synced 2024-12-24 07:42:17 +00:00
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.". git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26413 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
dd4bde7bc3
commit
aa5ecdffd5
@ -741,7 +741,7 @@ got_audio:
|
||||
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;
|
||||
|
Loading…
Reference in New Issue
Block a user