mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 12:09:55 +00:00
avformat/utils: make "first_dts not matching first dts in the queue" message more informative
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
5b53dd0803
commit
4307026243
@ -996,7 +996,8 @@ static void update_initial_durations(AVFormatContext *s, AVStream *st,
|
||||
}
|
||||
}
|
||||
if(pktl && pktl->pkt.dts != st->first_dts) {
|
||||
av_log(s, AV_LOG_DEBUG, "first_dts %s not matching first dts %s in the queue\n", av_ts2str(st->first_dts), av_ts2str(pktl->pkt.dts));
|
||||
av_log(s, AV_LOG_DEBUG, "first_dts %s not matching first dts %s (pts %s, duration %d) in the queue\n",
|
||||
av_ts2str(st->first_dts), av_ts2str(pktl->pkt.dts), av_ts2str(pktl->pkt.pts), pktl->pkt.duration);
|
||||
return;
|
||||
}
|
||||
if(!pktl) {
|
||||
|
Loading…
Reference in New Issue
Block a user