diff --git a/libavformat/rtpdec.c b/libavformat/rtpdec.c index eef61608ab..786be9f3bc 100644 --- a/libavformat/rtpdec.c +++ b/libavformat/rtpdec.c @@ -845,7 +845,7 @@ int ff_rtp_parse_packet(RTPDemuxContext *s, AVPacket *pkt, return -1; rv = rtp_parse_one_packet(s, pkt, bufptr, len); s->prev_ret = rv; - while (rv == AVERROR(EAGAIN) && has_next_packet(s)) + while (rv < 0 && has_next_packet(s)) rv = rtp_parse_queued_packet(s, pkt); return rv ? rv : has_next_packet(s); }