Mercurial > libavformat.hg
changeset 1115:8aa77d05572e libavformat
dont load the index if we cant seek back
author | michael |
---|---|
date | Wed, 14 Jun 2006 00:32:10 +0000 |
parents | c25f3b5b9a5c |
children | 22a86dfd052d |
files | avidec.c |
diffstat | 1 files changed, 5 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/avidec.c Tue Jun 13 23:13:59 2006 +0000 +++ b/avidec.c Wed Jun 14 00:32:10 2006 +0000 @@ -429,8 +429,10 @@ break; case MKTAG('i', 'n', 'd', 'x'): i= url_ftell(pb); - read_braindead_odml_indx(s, 0); - avi->index_loaded=1; + if(!url_is_streamed(pb)){ + read_braindead_odml_indx(s, 0); + avi->index_loaded=1; + } url_fseek(pb, i+size, SEEK_SET); break; default: @@ -451,7 +453,7 @@ return -1; } - if(!avi->index_loaded) + if(!avi->index_loaded && !url_is_streamed(pb)) avi_load_index(s); avi->index_loaded = 1; avi->non_interleaved |= guess_ni_flag(s);