From 2db1bcf1b98270835ab27ffea4eb83b0a7c16002 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Mon, 14 Jul 2014 01:16:08 +0200 Subject: [PATCH] avformat/asfdec: Try to improve skip case Fixes Ticket3761 Signed-off-by: Michael Niedermayer --- libavformat/asfdec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavformat/asfdec.c b/libavformat/asfdec.c index 270ba1d25e..978b9562a1 100644 --- a/libavformat/asfdec.c +++ b/libavformat/asfdec.c @@ -1128,8 +1128,8 @@ static int asf_parse_packet(AVFormatContext *s, AVIOContext *pb, AVPacket *pkt) int ret; if (url_feof(pb)) return AVERROR_EOF; - - if (asf->packet_size_left < FRAME_HEADER_SIZE) { + if (asf->packet_size_left < FRAME_HEADER_SIZE || + asf->packet_segments < 1 && asf->packet_time_start == 0) { int ret = asf->packet_size_left + asf->packet_padsize; assert(ret >= 0);