[Ffmpeg-cvslog] r6053 - trunk/libavformat/asf.c
michael
subversion
Wed Aug 23 18:26:59 CEST 2006
Author: michael
Date: Wed Aug 23 18:26:59 2006
New Revision: 6053
Modified:
trunk/libavformat/asf.c
Log:
value_num should also be 64bit (1 hunk from the asf seeking patch by DrDivx/Steve Lhomme)
Modified: trunk/libavformat/asf.c
==============================================================================
--- trunk/libavformat/asf.c (original)
+++ trunk/libavformat/asf.c Wed Aug 23 18:26:59 2006
@@ -354,7 +354,8 @@
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);
More information about the ffmpeg-cvslog
mailing list