diff options
author | Hendrik Leppkes <h.leppkes@gmail.com> | 2015-09-16 14:10:27 +0200 |
---|---|---|
committer | Hendrik Leppkes <h.leppkes@gmail.com> | 2015-09-16 14:10:27 +0200 |
commit | 3d481f39a272acca7b51d53f4711f0996087a430 (patch) | |
tree | 32c4681287a2d5991f46d0ad1129c0cce62f102e | |
parent | 7cecab2f886b539096996980f4379d4b88ab7a46 (diff) | |
parent | ff7f6ea9db2a77d74f7e68a716f53ba1f3f85017 (diff) | |
download | ffmpeg-3d481f39a272acca7b51d53f4711f0996087a430.tar.gz |
Merge commit 'ff7f6ea9db2a77d74f7e68a716f53ba1f3f85017'
* commit 'ff7f6ea9db2a77d74f7e68a716f53ba1f3f85017':
rtpdec: add a trace when jitter buffer is full
Merged-by: Hendrik Leppkes <h.leppkes@gmail.com>
-rw-r--r-- | libavformat/rtpdec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/rtpdec.c b/libavformat/rtpdec.c index c50e98b421..f39f87ff1b 100644 --- a/libavformat/rtpdec.c +++ b/libavformat/rtpdec.c @@ -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; |