lavf: More informative error message
Print the timestamp values and not just the stream index.
This commit is contained in:
parent
b7c3bfd5eb
commit
eb4f906900
@ -294,7 +294,10 @@ static int compute_pkt_fields2(AVFormatContext *s, AVStream *st, AVPacket *pkt)
|
|||||||
return AVERROR(EINVAL);
|
return AVERROR(EINVAL);
|
||||||
}
|
}
|
||||||
if (pkt->dts != AV_NOPTS_VALUE && pkt->pts != AV_NOPTS_VALUE && pkt->pts < pkt->dts) {
|
if (pkt->dts != AV_NOPTS_VALUE && pkt->pts != AV_NOPTS_VALUE && pkt->pts < pkt->dts) {
|
||||||
av_log(s, AV_LOG_ERROR, "pts < dts in stream %d\n", st->index);
|
av_log(s, AV_LOG_ERROR,
|
||||||
|
"pts %" PRId64 " < dts %" PRId64 " in stream %d\n",
|
||||||
|
pkt->pts, pkt->dts,
|
||||||
|
st->index);
|
||||||
return AVERROR(EINVAL);
|
return AVERROR(EINVAL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user