Commit aa499568 authored by Vittorio Giovara's avatar Vittorio Giovara

avconv: More descriptive message about framedrop

parent 6ee55c7b
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment