提交 fc54db32 编写于 作者: D Dale Curtis 提交者: Michael Niedermayer

Use av_sat_sub64() when updating pts by duration.

Signed-off-by: NDale Curtis <dalecurtis@chromium.org>
Signed-off-by: NMichael Niedermayer <michael@niedermayer.cc>
上级 9d24f293
......@@ -191,7 +191,7 @@ static int theora_packet(AVFormatContext *s, int idx)
pts = theora_gptopts(s, idx, os->granule, NULL);
if (pts != AV_NOPTS_VALUE)
pts -= duration;
pts = av_sat_sub64(pts, duration);
os->lastpts = os->lastdts = pts;
if(s->streams[idx]->start_time == AV_NOPTS_VALUE) {
s->streams[idx]->start_time = os->lastpts;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册