From 43924f018b5e687c4198f602fcfd0ed367bf8779 Mon Sep 17 00:00:00 2001 From: Alex Beregszaszi Date: Tue, 17 Jul 2007 13:04:22 +0000 Subject: [PATCH] use av_q2d as in the rest of the file Originally committed as revision 9720 to svn://svn.ffmpeg.org/ffmpeg/trunk --- ffmpeg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ffmpeg.c b/ffmpeg.c index ac52d7a2bb..46e3111031 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -969,7 +969,7 @@ static void print_report(AVFormatContext **output_files, vid = 1; } /* compute min output value */ - pts = (double)ost->st->pts.val * ost->st->time_base.num / ost->st->time_base.den; + pts = (double)ost->st->pts.val * av_q2d(ost->st->time_base); if ((pts < ti1) && (pts > 0)) ti1 = pts; }