[FFmpeg-cvslog] avconv: More descriptive message about framedrop
Vittorio Giovara
git at videolan.org
Tue Mar 25 19:39:02 CET 2014
ffmpeg | branch: master | Vittorio Giovara <vittorio.giovara at gmail.com> | Tue Mar 25 12:26:24 2014 +0100| [aa499568afc01d59215eef7e5b14b949a9671afc] | committer: Vittorio Giovara
avconv: More descriptive message about framedrop
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=aa499568afc01d59215eef7e5b14b949a9671afc
---
avconv.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/avconv.c b/avconv.c
index 5d4daba..866b90c 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;
}
More information about the ffmpeg-cvslog
mailing list