1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-11-26 19:01:44 +02:00

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

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2012-05-04 13:45:51 +02:00
parent 5f9f78dc9b
commit 96fb233e64

View File

@ -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;