mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
total_size should be 64bit (1 hunk of the asf seeking patch from DrDivx / Steve Lhomme)
Originally committed as revision 6052 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
b3701f5cc0
commit
7ad5455cd7
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user