changeset 1263:cf88f6719743 libavformat

total_size should be 64bit (1 hunk of the asf seeking patch from DrDivx / Steve Lhomme)
author michael
date Wed, 23 Aug 2006 16:24:39 +0000
parents 8da1b141e83a
children 3d00cb7b7426
files asf.c
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/asf.c	Mon Aug 21 15:49:08 2006 +0000
+++ b/asf.c	Wed Aug 23 16:24:39 2006 +0000
@@ -187,7 +187,8 @@
             asf->packet_size = asf->hdr.max_pktsize;
             asf->nb_packets = asf->hdr.packets_count;
         } else if (!memcmp(&g, &stream_header, sizeof(GUID))) {
-            int type, total_size, type_specific_size, sizeX;
+            int type, type_specific_size, sizeX;
+            uint64_t total_size;
             unsigned int tag1;
             int64_t pos1, pos2;
             int test_for_ext_stream_audio;