diff --git a/libavformat/flvdec.c b/libavformat/flvdec.c index 1fc7146ca0..eb24792e3d 100644 --- a/libavformat/flvdec.c +++ b/libavformat/flvdec.c @@ -327,15 +327,14 @@ static int flv_read_packet(AVFormatContext *s, AVPacket *pkt) is_audio=0; flags = get_byte(s->pb); size--; - if ((flags & 0xf0) == 0x50) { /* video info / command frame */ - url_fskip(s->pb, size); - continue; - } + if ((flags & 0xf0) == 0x50) /* video info / command frame */ + goto skip; } else { if (type == FLV_TAG_TYPE_META && size > 13+1+4) flv_read_metabody(s, next); else /* skip packet */ av_log(s, AV_LOG_ERROR, "skipping flv packet: type %d, size %d, flags %d\n", type, size, flags); + skip: url_fseek(s->pb, next, SEEK_SET); continue; }