summaryrefslogtreecommitdiff
path: root/ffmpeg.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-04-04 20:58:59 +0200
committerMichael Niedermayer <michaelni@gmx.at>2014-04-04 21:15:31 +0200
commit506064ed10f6c0453f3b1fa8819cdc37696816df (patch)
tree1f761fd3662d832c66ed074ee44d3e64213a01e3 /ffmpeg.c
parent5bb3f8825584a319b25b430e4ece2fa5b2b47ff9 (diff)
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@gmx.at>
Diffstat (limited to 'ffmpeg.c')
-rw-r--r--ffmpeg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index 25001f57db..28507462aa 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;