diff options
author | Gyan Doshi <ffmpeg@gyani.pro> | 2018-06-28 14:05:31 +0530 |
---|---|---|
committer | Gyan Doshi <ffmpeg@gyani.pro> | 2018-06-28 14:08:51 +0530 |
commit | 07987404a8b7346e1904501b88320c9bab353298 (patch) | |
tree | a775e7ebb883100a5ac6874cbc99e3960526b901 /fftools/ffmpeg.c | |
parent | 3f953379e1c7f7d6e08847c3cd91f1d3b628cc4f (diff) | |
download | ffmpeg-07987404a8b7346e1904501b88320c9bab353298.tar.gz |
ffmpeg: make loglevel verbose for frame duration warning
Diffstat (limited to 'fftools/ffmpeg.c')
-rw-r--r-- | fftools/ffmpeg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fftools/ffmpeg.c b/fftools/ffmpeg.c index 8d311a9ac8..5d9dbffc3b 100644 --- a/fftools/ffmpeg.c +++ b/fftools/ffmpeg.c @@ -1121,7 +1121,7 @@ static void do_video_out(OutputFile *of, format_video_sync != VSYNC_PASSTHROUGH && format_video_sync != VSYNC_DROP) { if (delta0 < -0.6) { - av_log(NULL, AV_LOG_WARNING, "Past duration %f too large\n", -delta0); + av_log(NULL, AV_LOG_VERBOSE, "Past duration %f too large\n", -delta0); } else av_log(NULL, AV_LOG_DEBUG, "Clipping frame in rate conversion by %f\n", -delta0); sync_ipts = ost->sync_opts; |