This is merely a historical archive of years 2008-2021, before the migration to mailman3.
A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/gerrit-log@lists.osmocom.org/.
jfdionne gerrit-no-reply at lists.osmocom.org
Review at https://gerrit.osmocom.org/1982
Fix RTP jitter buffer that never stop to increase in DTX mode.
Duration that is passed to the osmo_rtp_send_frame_ext function
is based on the last frame and the current one. It then must be
added directly to the current timestamp.
Change-Id: I0593d6530c097cca34125a0ae2dd1b019b4dd80d
---
M src/trau/osmo_ortp.c
1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/libosmo-abis refs/changes/82/1982/1
diff --git a/src/trau/osmo_ortp.c b/src/trau/osmo_ortp.c
index d4d4ff5..401918a 100644
--- a/src/trau/osmo_ortp.c
+++ b/src/trau/osmo_ortp.c
@@ -460,7 +460,7 @@
rtp_set_markbit(mblk, marker);
rc = rtp_session_sendm_with_ts(rs->sess, mblk,
- rs->tx_timestamp);
+ rs->tx_timestamp + duration);
rs->tx_timestamp += duration;
if (rc < 0) {
/* no need to free() the mblk, as rtp_session_rtp_send()
--
To view, visit https://gerrit.osmocom.org/1982
To unsubscribe, visit https://gerrit.osmocom.org/settings
Gerrit-MessageType: newchange
Gerrit-Change-Id: I0593d6530c097cca34125a0ae2dd1b019b4dd80d
Gerrit-PatchSet: 1
Gerrit-Project: libosmo-abis
Gerrit-Branch: master
Gerrit-Owner: jfdionne <jf.dionne at nutaq.com>