From f8f0a0bdfde0c0502c2b14febaeb81972520352c Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Mon, 29 Jan 2007 14:54:55 +0000 Subject: [PATCH] fix seeking in wma Originally committed as revision 7759 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/asf.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libavformat/asf.c b/libavformat/asf.c index dce7233..4394328 100644 --- a/libavformat/asf.c +++ b/libavformat/asf.c @@ -673,7 +673,8 @@ static int asf_read_packet(AVFormatContext *s, AVPacket *pkt) 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; -- 2.7.4