Commit 7bdd762f authored by michael's avatar michael

total_size should be 64bit (1 hunk of the asf seeking patch from DrDivx / Steve Lhomme)


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@6052 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent bd191a3a
......@@ -187,7 +187,8 @@ static int asf_read_header(AVFormatContext *s, AVFormatParameters *ap)
asf->packet_size = asf->hdr.max_pktsize;
asf->nb_packets = asf->hdr.packets_count;
} else if (!memcmp(&g, &stream_header, sizeof(GUID))) {
int type, total_size, type_specific_size, sizeX;
int type, type_specific_size, sizeX;
uint64_t total_size;
unsigned int tag1;
int64_t pos1, pos2;
int test_for_ext_stream_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