[SCM] libav/experimental: avconv: More descriptive message about framedrop

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Aug 10 16:02:24 UTC 2014


The following commit has been merged in the experimental branch:
commit aa499568afc01d59215eef7e5b14b949a9671afc
Author: Vittorio Giovara <vittorio.giovara at gmail.com>
Date:   Tue Mar 25 12:26:24 2014 +0100

    avconv: More descriptive message about framedrop

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;
     }
 

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list