Browse Source

Add the new option rtcp-interval description and example

pull/1772/head
Andrii Pogrebennyk 2 years ago
committed by Richard Fuchs
parent
commit
64631fb962
3 changed files with 9 additions and 0 deletions
  1. +1
    -0
      daemon/main.c
  2. +7
    -0
      docs/rtpengine.md
  3. +1
    -0
      etc/rtpengine.conf

+ 1
- 0
daemon/main.c View File

@ -101,6 +101,7 @@ struct rtpengine_config rtpe_config = {
.mqtt_keepalive = 30,
.mqtt_publish_interval = 5000,
.dtmf_digit_delay = 2500,
.rtcp_interval = 5000,
.common = {
.log_levels = {
[log_level_index_internals] = -1,


+ 7
- 0
docs/rtpengine.md View File

@ -1230,6 +1230,13 @@ call to inject-DTMF won't be sent to __\-\-dtmf-log-dest=__ or __\-\-listen-tcp-
Enable measuring RTP metrics even for plain RTP passthrough scenarios. Without
that option, RTP metrics are measured only in transcoding scenarios.
- __\-\-rtcp-interval=__*INT*
Delay in milliseconds between RTCP packets when generate-rtcp flag is on. The
effective value includes the random dispersion between 0..1 seconds on top,
so the timer execution period is randomized and up to 1 sec greater than given
value in ms. Defaults to __5000__ ms (5 seconds).
- __\-\-socket-cpu-affinity=__*INT*
Enables setting the socket CPU affinity via the __SO\*INCOMING\*CPU__ socket


+ 1
- 0
etc/rtpengine.conf View File

@ -137,6 +137,7 @@ recording-method = proc
# mos = CQ
# poller-per-thread = false
# socket-cpu-affinity = -1
# rtcp-interval = 5000
[rtpengine-testing]
table = -1


Loading…
Cancel
Save