changeset 1264:3d00cb7b7426 libavformat

value_num should also be 64bit (1 hunk from the asf seeking patch by DrDivx/Steve Lhomme)
author michael
date Wed, 23 Aug 2006 16:26:59 +0000
parents cf88f6719743
children 613fdf995af0
files asf.c
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/asf.c	Wed Aug 23 16:24:39 2006 +0000
+++ b/asf.c	Wed Aug 23 16:26:59 2006 +0000
@@ -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);