Commit d555bd69 authored by Eloi BAIL's avatar Eloi BAIL Committed by 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: 's avatarEloi BAIL <eloi.bail@savoirfairelinux.com>
Signed-off-by: 's avatarMartin Storsjö <martin@martin.st>
parent ff7f6ea9
......@@ -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) {
......
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