From b7952ed184554e2200ac80979858b89d6f17412a Mon Sep 17 00:00:00 2001 From: =?utf8?q?Martin=20Storsj=C3=B6?= Date: Fri, 8 Oct 2010 08:40:08 +0000 Subject: [PATCH] rtpdec: Set prev_ret properly when parsing more data from mpegts RTP packets Originally committed as revision 25404 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/rtpdec.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/libavformat/rtpdec.c b/libavformat/rtpdec.c index fed166c..033f336 100644 --- a/libavformat/rtpdec.c +++ b/libavformat/rtpdec.c @@ -644,12 +644,16 @@ int rtp_parse_packet(RTPDemuxContext *s, AVPacket *pkt, return rv ? rv : has_next_packet(s); } else { // TODO: Move to a dynamic packet handler (like above) - if (s->read_buf_index >= s->read_buf_size) + if (s->read_buf_index >= s->read_buf_size) { + s->prev_ret = -1; return -1; + } ret = ff_mpegts_parse_packet(s->ts, pkt, s->buf + s->read_buf_index, s->read_buf_size - s->read_buf_index); - if (ret < 0) + if (ret < 0) { + s->prev_ret = -1; return -1; + } s->read_buf_index += ret; if (s->read_buf_index < s->read_buf_size) return 1; -- 2.7.4