Commit bc3ea394 authored by Eloi BAIL's avatar Eloi BAIL Committed by 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: 's avatarEloi BAIL <eloi.bail@savoirfairelinux.com>
Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent e76be9cd
......@@ -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) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment