From aa499568afc01d59215eef7e5b14b949a9671afc Mon Sep 17 00:00:00 2001 From: Vittorio Giovara Date: Tue, 25 Mar 2014 12:26:24 +0100 Subject: avconv: More descriptive message about framedrop --- avconv.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'avconv.c') diff --git a/avconv.c b/avconv.c index 5d4daba5cd..866b90ca7d 100644 --- a/avconv.c +++ b/avconv.c @@ -515,7 +515,9 @@ static void do_video_out(AVFormatContext *s, in_picture->pts != AV_NOPTS_VALUE && in_picture->pts < ost->sync_opts) { nb_frames_drop++; - av_log(NULL, AV_LOG_VERBOSE, "*** drop!\n"); + av_log(NULL, AV_LOG_WARNING, + "*** dropping frame %d from stream %d at ts %"PRId64"\n", + ost->frame_number, ost->st->index, in_picture->pts); return; } -- cgit v1.2.3