Commit 3d481f39 authored by Hendrik Leppkes's avatar Hendrik Leppkes

Merge commit 'ff7f6ea9'

* commit 'ff7f6ea9':
  rtpdec: add a trace when jitter buffer is full
Merged-by: 's avatarHendrik Leppkes <h.leppkes@gmail.com>
parents 7cecab2f ff7f6ea9
......@@ -816,8 +816,8 @@ static int rtp_parse_one_packet(RTPDemuxContext *s, AVPacket *pkt,
/* Return the first enqueued packet if the queue is full,
* even if we're missing something */
if (s->queue_len >= s->queue_size) {
av_log(s->st ? s->st->codec : NULL, AV_LOG_ERROR,
"jitter buffer full\n");
av_log(s->st ? s->st->codec : NULL, AV_LOG_WARNING,
"jitter buffer full\n");
return rtp_parse_queued_packet(s, pkt);
}
return -1;
......
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