mirror of
https://github.com/mpv-player/mpv
synced 2025-02-08 07:57:19 +00:00
Change some constants in pts arithmetic from float to double.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20811 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
f037400b74
commit
d1639ced67
@ -690,7 +690,7 @@ got_audio:
|
||||
demux_packet_t *dp = new_demux_packet(sub_packet_lengths[i]);
|
||||
stream_read(demuxer->stream, dp->buffer, sub_packet_lengths[i]);
|
||||
if (priv->a_pts != timestamp)
|
||||
dp->pts = timestamp / 1000.0f;
|
||||
dp->pts = timestamp / 1000.0;
|
||||
priv->a_pts = timestamp;
|
||||
dp->pos = demuxer->filepos;
|
||||
ds_add_packet(ds, dp);
|
||||
@ -747,7 +747,7 @@ got_audio:
|
||||
break;
|
||||
}
|
||||
priv->audio_need_keyframe = 0;
|
||||
priv->audio_timestamp[priv->sub_packet_cnt] = (priv->a_pts==timestamp) ? (correct_pts ? MP_NOPTS_VALUE : 0) : (timestamp/1000.0f);
|
||||
priv->audio_timestamp[priv->sub_packet_cnt] = (priv->a_pts==timestamp) ? (correct_pts ? MP_NOPTS_VALUE : 0) : (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