From 80036204af792fd31a82b42f345571c4ed699470 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Wed, 17 Jan 2007 12:06:31 +0000 Subject: [PATCH] simplify Originally committed as revision 7567 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/mpeg.c | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/libavformat/mpeg.c b/libavformat/mpeg.c index cff9fe2b1e..a8ba8826be 100644 --- a/libavformat/mpeg.c +++ b/libavformat/mpeg.c @@ -1522,21 +1522,18 @@ static int mpegps_read_pes_header(AVFormatContext *s, len -= 2; if (header_len > len) goto error_redo; + len -= header_len; if (flags & 0x80) { dts = pts = get_pts(&s->pb, -1); header_len -= 5; - len -= 5; if (flags & 0x40) { dts = get_pts(&s->pb, -1); header_len -= 5; - len -= 5; } } - len -= header_len; - while (header_len > 0) { - get_byte(&s->pb); - header_len--; - } + if(header_len < 0) + goto error_redo; + url_fskip(&s->pb, header_len); } else if( c!= 0xf ) goto redo;