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 <[email protected]> --- libavformat/rtpdec.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libavformat/rtpdec.c b/libavformat/rtpdec.c index 1d4b06c..c1acd48 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) { -- 2.1.4 _______________________________________________ libav-devel mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-devel
