summaryrefslogtreecommitdiff
path: root/libavformat/asf.c
diff options
context:
space:
mode:
authorSteve L'Homme <slhomme@divxcorp.com>2006-08-23 16:26:59 +0000
committerMichael Niedermayer <michaelni@gmx.at>2006-08-23 16:26:59 +0000
commit052aa2ad3c1131754ed1cf56b3284f732977bcec (patch)
treed5b4eaf4d3a390f090083266dbfeabcd71a06539 /libavformat/asf.c
parent7ad5455cd711d12700ad52b82a915105a7b30127 (diff)
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
Diffstat (limited to 'libavformat/asf.c')
-rw-r--r--libavformat/asf.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavformat/asf.c b/libavformat/asf.c
index 3314a5e197..cf0742e315 100644
--- a/libavformat/asf.c
+++ b/libavformat/asf.c
@@ -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);