@@ -2983,11 +2983,24 @@ static void estimate_timings(AVFormatContext *ic, int64_t old_offset)
AVStream av_unused *st;
for (i = 0; i < ic->nb_streams; i++) {
st = ic->streams[i];
- if (st->time_base.den)
+ if (st->time_base.den) {
+ if (st->start_time == AV_NOPTS_VALUE)
+ av_log(ic, AV_LOG_TRACE, "stream %d: start_time: N/A duration: %0.3f\n", i,
+ (double) st->duration * av_q2d(st->time_base));
+ else
av_log(ic, AV_LOG_TRACE, "stream %d: start_time: %0.3f duration: %0.3f\n", i,
(double) st->start_time * av_q2d(st->time_base),
(double) st->duration * av_q2d(st->time_base));
+ }
}
+
+ if (ic->start_time == AV_NOPTS_VALUE)
+ av_log(ic, AV_LOG_TRACE,
+ "format: start_time: N/A duration: %0.3f (estimate from %s) bitrate=%"PRId64" kb/s\n",
+ (double) ic->duration / AV_TIME_BASE,
+ duration_estimate_name(ic->duration_estimation_method),
+ (int64_t)ic->bit_rate / 1000);
+ else
av_log(ic, AV_LOG_TRACE,
"format: start_time: %0.3f duration: %0.3f (estimate from %s) bitrate=%"PRId64" kb/s\n",
(double) ic->start_time / AV_TIME_BASE,