[FFmpeg-cvslog] rtpdec: add a trace when jitter buffer is full

Eloi BAIL git at videolan.org
Wed Sep 16 14:10:57 CEST 2015


ffmpeg | branch: master | Eloi BAIL <eloi.bail at savoirfairelinux.com> | Tue Sep 15 11:38:21 2015 -0400| [ff7f6ea9db2a77d74f7e68a716f53ba1f3f85017] | committer: Martin Storsjö

rtpdec: add a trace when jitter buffer is full

This commit adds a warning trace when jitter buffer
is full. It helps to understand leading decoding issues.

Signed-off-by: Eloi BAIL <eloi.bail at savoirfairelinux.com>
Signed-off-by: Martin Storsjö <martin at martin.st>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=ff7f6ea9db2a77d74f7e68a716f53ba1f3f85017
---

 libavformat/rtpdec.c |    5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/libavformat/rtpdec.c b/libavformat/rtpdec.c
index 0efcdb9..5706f16 100644
--- a/libavformat/rtpdec.c
+++ b/libavformat/rtpdec.c
@@ -804,8 +804,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_WARNING,
+                       "jitter buffer full\n");
                 return rtp_parse_queued_packet(s, pkt);
+            }
             return -1;
         }
     }



More information about the ffmpeg-cvslog mailing list