From 6298eb810de8364bbbd470abfb321a0416964b1d Mon Sep 17 00:00:00 2001 From: Baptiste Coudurier Date: Fri, 29 Aug 2008 22:03:18 +0000 Subject: [PATCH] simplify size handling code Originally committed as revision 15040 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/flvdec.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/libavformat/flvdec.c b/libavformat/flvdec.c index 309aacce45..1fc7146ca0 100644 --- a/libavformat/flvdec.c +++ b/libavformat/flvdec.c @@ -322,11 +322,13 @@ static int flv_read_packet(AVFormatContext *s, AVPacket *pkt) if (type == FLV_TAG_TYPE_AUDIO) { is_audio=1; flags = get_byte(s->pb); + size--; } else if (type == FLV_TAG_TYPE_VIDEO) { is_audio=0; flags = get_byte(s->pb); + size--; if ((flags & 0xf0) == 0x50) { /* video info / command frame */ - url_fskip(s->pb, size - 1); + url_fskip(s->pb, size); continue; } } else { @@ -400,13 +402,13 @@ static int flv_read_packet(AVFormatContext *s, AVPacket *pkt) get_be24(s->pb); } if (type == 0) { - if ((ret = flv_get_extradata(s, st, size - 1)) < 0) + if ((ret = flv_get_extradata(s, st, size)) < 0) return ret; goto retry; } } - ret= av_get_packet(s->pb, pkt, size - 1); + ret= av_get_packet(s->pb, pkt, size); if (ret <= 0) { return AVERROR(EIO); }