mirror of https://git.ffmpeg.org/ffmpeg.git
oggdec:Correct duration
Based on a patch by Reimar Döffinger. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
c8981edd90
commit
5901cd6236
|
@ -490,6 +490,18 @@ ogg_get_length (AVFormatContext * s)
|
|||
|
||||
ogg_restore (s, 0);
|
||||
|
||||
ogg_save (s);
|
||||
url_fseek (s->pb, 0, SEEK_SET);
|
||||
while (!ogg_read_page (s, &i)){
|
||||
if (ogg->streams[i].granule != -1 && ogg->streams[i].granule != 0 &&
|
||||
ogg->streams[i].codec) {
|
||||
s->streams[i]->duration -=
|
||||
ogg_gptopts (s, i, ogg->streams[i].granule, NULL);
|
||||
break;
|
||||
}
|
||||
}
|
||||
ogg_restore (s, 0);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue