diff asf.c @ 1744:1f8dc697cb11 libavformat

fix seeking in wma
author michael
date Mon, 29 Jan 2007 14:54:55 +0000
parents 5ebac013d792
children ea10bb05b839
line wrap: on
line diff
--- a/asf.c	Sun Jan 28 17:23:28 2007 +0000
+++ b/asf.c	Mon Jan 29 14:54:55 2007 +0000
@@ -673,7 +673,8 @@
             asf->packet_multi_size -= asf->packet_obj_size;
             //printf("COMPRESS size  %d  %d  %d   ms:%d\n", asf->packet_obj_size, asf->packet_frag_timestamp, asf->packet_size_left, asf->packet_multi_size);
         }
-        if (asf_st->pkt.size != asf->packet_obj_size) { //FIXME is this condition sufficient?
+        if (   asf_st->pkt.size != asf->packet_obj_size
+            || asf_st->frag_offset + asf->packet_frag_size > asf_st->pkt.size) { //FIXME is this condition sufficient?
             if(asf_st->pkt.data){
                 av_log(s, AV_LOG_INFO, "freeing incomplete packet size %d, new %d\n", asf_st->pkt.size, asf->packet_obj_size);
                 asf_st->frag_offset = 0;