Commit 2da3940a authored by michael's avatar michael

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


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@6053 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 7bdd762f
......@@ -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