Commit 45658b74 authored by Martin Storsjö's avatar Martin Storsjö

rtpdec: Store the previous return value for mpegts when it was -1, too

Originally committed as revision 25403 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 243ac3fd
......@@ -471,8 +471,10 @@ static int rtp_parse_packet_internal(RTPDemuxContext *s, AVPacket *pkt,
if (!st) {
/* specific MPEG2TS demux support */
ret = ff_mpegts_parse_packet(s->ts, pkt, buf, len);
if (ret < 0)
if (ret < 0) {
s->prev_ret = -1;
return -1;
}
if (ret < len) {
s->read_buf_size = len - ret;
memcpy(s->buf, buf + ret, s->read_buf_size);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment