From 70122f2902c815e395be44bc4097cbf6164ef3f5 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Thu, 4 Nov 2004 19:02:14 +0000 Subject: [PATCH] remove weird offsets Originally committed as revision 3660 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 3b8a274d44..84849374fd 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -695,7 +695,7 @@ static void do_video_out(AVFormatContext *s, if (vdelta < -1.1) nb_frames = 0; else if (vdelta > 1.1) - nb_frames = lrintf(vdelta - 1.1 + 0.5); + nb_frames = lrintf(vdelta); //fprintf(stderr, "vdelta:%f, ost->sync_opts:%lld, ost->sync_ipts:%f nb_frames:%d\n", vdelta, ost->sync_opts, ost->sync_ipts, nb_frames); if (nb_frames == 0){ ++nb_frames_drop;