]> git.sesse.net Git - ffmpeg/commitdiff
ffmpeg: Do not clip timestamps at LONG_MAX.
authorCarl Eugen Hoyos <ceffmpeg@gmail.com>
Mon, 13 Apr 2020 12:01:14 +0000 (14:01 +0200)
committerCarl Eugen Hoyos <ceffmpeg@gmail.com>
Wed, 15 Apr 2020 17:59:13 +0000 (19:59 +0200)
Fixes ticket #8612.

fftools/ffmpeg.c

index 0578265c1ece7b23118f5004c923a9a947cc7d03..d896b14a140f5a6790376fbe1e67219ad89aeaab 100644 (file)
@@ -1147,7 +1147,7 @@ static void do_video_out(OutputFile *of,
                 av_log(NULL, AV_LOG_DEBUG, "Not duplicating %d initial frames\n", (int)lrintf(delta0));
                 delta = duration;
                 delta0 = 0;
-                ost->sync_opts = lrint(sync_ipts);
+                ost->sync_opts = llrint(sync_ipts);
             }
         case VSYNC_CFR:
             // FIXME set to 0.5 after we fix some dts/pts bugs like in avidec.c
@@ -1158,18 +1158,18 @@ static void do_video_out(OutputFile *of,
             else if (delta > 1.1) {
                 nb_frames = lrintf(delta);
                 if (delta0 > 1.1)
-                    nb0_frames = lrintf(delta0 - 0.6);
+                    nb0_frames = llrintf(delta0 - 0.6);
             }
             break;
         case VSYNC_VFR:
             if (delta <= -0.6)
                 nb_frames = 0;
             else if (delta > 0.6)
-                ost->sync_opts = lrint(sync_ipts);
+                ost->sync_opts = llrint(sync_ipts);
             break;
         case VSYNC_DROP:
         case VSYNC_PASSTHROUGH:
-            ost->sync_opts = lrint(sync_ipts);
+            ost->sync_opts = llrint(sync_ipts);
             break;
         default:
             av_assert0(0);