diff options
author | Eloi BAIL <eloi.bail@savoirfairelinux.com> | 2015-09-14 14:02:16 -0400 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2015-09-15 13:34:51 +0200 |
commit | 0edf6c8b2a976d8af5d4211da565ca30b9759737 (patch) | |
tree | 712cc8fb3313674e53ba3e04a6ce9431f460e018 | |
parent | bc3ea394154bfca8cfb3a831d0c65a6b579bd710 (diff) | |
download | ffmpeg-0edf6c8b2a976d8af5d4211da565ca30b9759737.tar.gz |
rtpdec: add a trace when jitter buffer is full
This commit adds an error trace when jitter buffer
is full. It helps to understand leading decoding issues.
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r-- | libavformat/rtpdec.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libavformat/rtpdec.c b/libavformat/rtpdec.c index d544c1baf9..c50e98b421 100644 --- a/libavformat/rtpdec.c +++ b/libavformat/rtpdec.c @@ -815,8 +815,11 @@ static int rtp_parse_one_packet(RTPDemuxContext *s, AVPacket *pkt, *bufptr = NULL; /* Return the first enqueued packet if the queue is full, * even if we're missing something */ - if (s->queue_len >= s->queue_size) + if (s->queue_len >= s->queue_size) { + av_log(s->st ? s->st->codec : NULL, AV_LOG_ERROR, + "jitter buffer full\n"); return rtp_parse_queued_packet(s, pkt); + } return -1; } } |