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:
uau 2006-11-09 01:52:11 +00:00
parent f037400b74
commit d1639ced67
1 changed files with 2 additions and 2 deletions

View File

@ -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;