[FFmpeg-cvslog] rtpdec: inform jitter buffer size

2015-09-15 Thread Eloi BAIL
ffmpeg | branch: master | Eloi BAIL  | Mon Sep 
14 14:02:17 2015 -0400| [bc3ea394154bfca8cfb3a831d0c65a6b579bd710] | committer: 
Michael Niedermayer

rtpdec: inform jitter buffer size

This commit print as AV_LOG_INFO the jitter buffer
size. It might be the default value or the value set by application.

Signed-off-by: Eloi BAIL 
Signed-off-by: Michael Niedermayer 

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

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

diff --git a/libavformat/rtpdec.c b/libavformat/rtpdec.c
index fee9547..d544c1b 100644
--- a/libavformat/rtpdec.c
+++ b/libavformat/rtpdec.c
@@ -520,6 +520,10 @@ RTPDemuxContext *ff_rtp_parse_open(AVFormatContext *s1, 
AVStream *st,
 s->ic  = s1;
 s->st  = st;
 s->queue_size  = queue_size;
+
+av_log(s->st ? s->st->codec : NULL, AV_LOG_VERBOSE,
+"setting jitter buffer size to %d\n", s->queue_size);
+
 rtp_init_statistics(&s->statistics, 0);
 if (st) {
 switch (st->codec->codec_id) {

___
ffmpeg-cvslog mailing list
ffmpeg-cvslog@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog


[FFmpeg-cvslog] rtpdec: inform jitter buffer size

2015-09-16 Thread Eloi BAIL
ffmpeg | branch: master | Eloi BAIL  | Tue Sep 
15 11:38:22 2015 -0400| [d555bd69e792e42d94bd909b30d9bfef01db4e25] | committer: 
Martin Storsjö

rtpdec: inform jitter buffer size

This commit print as AV_LOG_VERBOSE the jitter buffer
size. It might be the default value or the value set by application.

Signed-off-by: Eloi BAIL 
Signed-off-by: Martin Storsjö 

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

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

diff --git a/libavformat/rtpdec.c b/libavformat/rtpdec.c
index 5706f16..34c77f8 100644
--- a/libavformat/rtpdec.c
+++ b/libavformat/rtpdec.c
@@ -513,6 +513,10 @@ RTPDemuxContext *ff_rtp_parse_open(AVFormatContext *s1, 
AVStream *st,
 s->ic  = s1;
 s->st  = st;
 s->queue_size  = queue_size;
+
+av_log(s->st ? s->st->codec : NULL, AV_LOG_VERBOSE,
+"setting jitter buffer size to %d\n", s->queue_size);
+
 rtp_init_statistics(&s->statistics, 0);
 if (st) {
 switch (st->codec->codec_id) {

___
ffmpeg-cvslog mailing list
ffmpeg-cvslog@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog