fftools/ffmpeg: drop an obsolete debug log

The value it prints has not been cur_dts from lavf for a very long time,
so it's misleading.
pull/389/head
Anton Khirnov 1 year ago
parent 57a42a714b
commit 6a9d3f46c7
  1. 4
      fftools/ffmpeg.c

@ -941,10 +941,6 @@ static int choose_output(OutputStream **post)
} else { } else {
opts = ost->last_mux_dts == AV_NOPTS_VALUE ? opts = ost->last_mux_dts == AV_NOPTS_VALUE ?
INT64_MIN : ost->last_mux_dts; INT64_MIN : ost->last_mux_dts;
if (ost->last_mux_dts == AV_NOPTS_VALUE)
av_log(ost, AV_LOG_DEBUG,
"cur_dts is invalid [init:%d i_done:%d finish:%d] (this is harmless if it occurs once at the start per stream)\n",
ost->initialized, ost->inputs_done, ost->finished);
} }
if (!ost->initialized && !ost->inputs_done && !ost->finished) { if (!ost->initialized && !ost->inputs_done && !ost->finished) {

Loading…
Cancel
Save