mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-11 17:30:00 +01:00
rtpdec: Parse the next packet in the sequence if it is available, if the previous packet didn't return any data
Originally committed as revision 25460 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@@ -694,6 +694,8 @@ int rtp_parse_packet(RTPDemuxContext *s, AVPacket *pkt,
|
||||
{
|
||||
int rv = rtp_parse_one_packet(s, pkt, bufptr, len);
|
||||
s->prev_ret = rv;
|
||||
while (rv == AVERROR(EAGAIN) && has_next_packet(s))
|
||||
rv = rtp_parse_queued_packet(s, pkt);
|
||||
return rv ? rv : has_next_packet(s);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user