Commit 71a5cd7d authored by Michael Niedermayer's avatar Michael Niedermayer

flvdec: perform duration search just once

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent a2232e69
......@@ -52,6 +52,7 @@ typedef struct {
} validate_index[2];
int validate_next;
int validate_count;
int searched_for_end;
} FLVContext;
static int flv_probe(AVProbeData *p)
......@@ -744,7 +745,7 @@ static int flv_read_packet(AVFormatContext *s, AVPacket *pkt)
}
// if not streamed and no duration from metadata then seek to end to find the duration from the timestamps
if(s->pb->seekable && (!s->duration || s->duration==AV_NOPTS_VALUE)){
if(s->pb->seekable && (!s->duration || s->duration==AV_NOPTS_VALUE) && !flv->searched_for_end){
int size;
const int64_t pos= avio_tell(s->pb);
const int64_t fsize= avio_size(s->pb);
......@@ -757,6 +758,7 @@ static int flv_read_packet(AVFormatContext *s, AVPacket *pkt)
s->duration = ts * (int64_t)AV_TIME_BASE / 1000;
}
avio_seek(s->pb, pos, SEEK_SET);
flv->searched_for_end = 1;
}
if(stream_type == FLV_STREAM_TYPE_AUDIO){
......
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