Commit 052aa2ad authored by Steve L'Homme's avatar Steve L'Homme Committed by Michael Niedermayer

value_num should also be 64bit (1 hunk from the asf seeking patch by DrDivx/Steve Lhomme)

Originally committed as revision 6053 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 7ad5455c
......@@ -354,7 +354,8 @@ static int asf_read_header(AVFormatContext *s, AVFormatParameters *ap)
desc_count = get_le16(pb);
for(i=0;i<desc_count;i++)
{
int name_len,value_type,value_len,value_num = 0;
int name_len,value_type,value_len;
uint64_t value_num = 0;
char *name, *value;
name_len = get_le16(pb);
......
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