[FFmpeg-cvslog] ffmpeg: frame droping due to fps should not be a warning

Michael Niedermayer git at videolan.org
Fri Apr 4 21:16:56 CEST 2014


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Fri Apr  4 20:58:59 2014 +0200| [506064ed10f6c0453f3b1fa8819cdc37696816df] | committer: Michael Niedermayer

ffmpeg: frame droping due to fps should not be a warning

This reverts part of 41e7e46cac507e993af6d656c8d3672ba3f9e304

See: http://thread.gmane.org/gmane.comp.video.ffmpeg.user/51229
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=506064ed10f6c0453f3b1fa8819cdc37696816df
---

 ffmpeg.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ffmpeg.c b/ffmpeg.c
index 25001f5..2850746 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -895,7 +895,7 @@ static void do_video_out(AVFormatContext *s,
     nb_frames = FFMIN(nb_frames, ost->max_frames - ost->frame_number);
     if (nb_frames == 0) {
         nb_frames_drop++;
-        av_log(NULL, AV_LOG_WARNING,
+        av_log(NULL, AV_LOG_VERBOSE,
                "*** dropping frame %d from stream %d at ts %"PRId64"\n",
                ost->frame_number, ost->st->index, in_picture->pts);
         return;



More information about the ffmpeg-cvslog mailing list