ffmpeg: make loglevel verbose for frame duration warning

This commit is contained in:
Gyan Doshi 2018-06-28 14:05:31 +05:30
parent 3f953379e1
commit 07987404a8
1 changed files with 1 additions and 1 deletions

View File

@ -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;