Originally committed as revision 3149 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Michael Niedermayer 2004-05-22 12:21:58 +00:00
parent 9ee91c2f53
commit e06d3d553c
1 changed files with 2 additions and 2 deletions

View File

@ -457,12 +457,12 @@ int main(int argc, char **argv)
for(;;) {
/* compute current audio and video time */
if (audio_st)
audio_pts = (double)audio_st->pts.val * oc->pts_num / oc->pts_den;
audio_pts = (double)audio_st->pts.val * audio_st->time_base.num / audio_st->time_base.den;
else
audio_pts = 0.0;
if (video_st)
video_pts = (double)video_st->pts.val * oc->pts_num / oc->pts_den;
video_pts = (double)video_st->pts.val * video_st->time_base.num / video_st->time_base.den;
else
video_pts = 0.0;