aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhilipp Maier <pmaier@sysmocom.de>2018-05-29 16:04:41 +0200
committerPhilipp Maier <pmaier@sysmocom.de>2018-05-29 16:07:50 +0200
commit7632278ea36c25eaa0d8e35fa0ee102ec05dc802 (patch)
treee1777780caa0149e9ec83f61128e9af41d078ff7
parentb0162077da4d2b60c9006173c11bfab5a0369164 (diff)
ortp: make sure the ortp scheduler is started
the function osmo_rtp_init() is initializing ortp at the start of the application. However, it does not start the scheduler of ortp, which leads into error log messages in some situatios. - make sure that ortp_scheduler_init() is called with osmo_rtp_init() Change-Id: I3a63c23f5ede47773b6a249a48ecebd5d3b45ace Related: OS#3299
-rw-r--r--src/trau/osmo_ortp.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/trau/osmo_ortp.c b/src/trau/osmo_ortp.c
index 8ea05e4..18a6123 100644
--- a/src/trau/osmo_ortp.c
+++ b/src/trau/osmo_ortp.c
@@ -290,6 +290,7 @@ void osmo_rtp_init(void *ctx)
ortp_set_log_handler(my_ortp_logfn);
create_payload_types();
+ ortp_scheduler_init();
}
/*! \brief Set Osmocom RTP socket parameters