Commit e06d3d55 authored by Michael Niedermayer's avatar Michael Niedermayer

ooops

Originally committed as revision 3149 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 9ee91c2f
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment