Mercurial > libavformat.hg
changeset 981:55519fa957c3 libavformat
fix demuxing of XviD_with_3_AAC-HE_audio_streams.avi
author | michael |
---|---|
date | Wed, 01 Mar 2006 12:04:22 +0000 |
parents | da4296d3bc39 |
children | c21f07d85158 |
files | avidec.c |
diffstat | 1 files changed, 8 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/avidec.c Wed Mar 01 11:41:16 2006 +0000 +++ b/avidec.c Wed Mar 01 12:04:22 2006 +0000 @@ -203,7 +203,10 @@ /* using frame_period is bad idea */ frame_period = get_le32(pb); bit_rate = get_le32(pb) * 8; - url_fskip(pb, 4 * 4); + get_le32(pb); + avi->non_interleaved |= get_le32(pb) & AVIF_MUSTUSEINDEX; + + url_fskip(pb, 2 * 4); n = get_le32(pb); for(i=0;i<n;i++) { AVIStream *ast; @@ -468,13 +471,12 @@ if(i>=0){ int64_t pos= best_st->index_entries[i].pos; pos += best_ast->packet_size - best_ast->remaining; - url_fseek(&s->pb, pos, SEEK_SET); + url_fseek(&s->pb, pos + 8, SEEK_SET); // av_log(NULL, AV_LOG_DEBUG, "pos=%Ld\n", pos); - if(best_ast->remaining) - avi->stream_index= best_stream_index; - else - avi->stream_index= -1; + avi->stream_index= best_stream_index; + if(!best_ast->remaining) + best_ast->remaining= best_st->index_entries[i].size; } }