Commit 96fb233e authored by Michael Niedermayer's avatar Michael Niedermayer

oggdec: reset lastpts so that justins vorbis duration correction is not skiped

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 5f9f78dc
......@@ -121,6 +121,7 @@ static int ogg_reset(AVFormatContext *s)
{
struct ogg *ogg = s->priv_data;
int i;
int64_t start_pos = avio_tell(s->pb);
for (i = 0; i < ogg->nstreams; i++){
struct ogg_stream *os = ogg->streams + i;
......@@ -135,6 +136,9 @@ static int ogg_reset(AVFormatContext *s)
os->nsegs = 0;
os->segp = 0;
os->incomplete = 0;
if (start_pos <= s->data_offset) {
os->lastpts = 0;
}
}
ogg->curidx = -1;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment