summaryrefslogtreecommitdiff
path: root/avconv.c
diff options
context:
space:
mode:
authorVittorio Giovara <vittorio.giovara@gmail.com>2014-03-25 12:26:24 +0100
committerVittorio Giovara <vittorio.giovara@gmail.com>2014-03-25 12:26:24 +0100
commitaa499568afc01d59215eef7e5b14b949a9671afc (patch)
tree4b91b31d7833b19914df501e27ba2743a6826a3b /avconv.c
parent6ee55c7b111eec6c51dfdc0fddbd46f5dd867fa3 (diff)
avconv: More descriptive message about framedrop
Diffstat (limited to 'avconv.c')
-rw-r--r--avconv.c4
1 files changed, 3 insertions, 1 deletions
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;
}