aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src
diff options
context:
space:
mode:
authorHarald Welte (local) <laflocal@hanuman.gnumonks.org>2009-12-27 20:32:09 +0100
committerHarald Welte (local) <laflocal@hanuman.gnumonks.org>2009-12-27 20:32:09 +0100
commit2fd5b4e05ce7792cb2a0bbe3438c25ad32c82ad6 (patch)
tree3386d9564a04e00bb3596dc5fdaaa67286c61315 /openbsc/src
parent121809406a9a231121ca35f1e9b99f78f5a83bfe (diff)
26C3: disable RTP proxy timestamp "correction"
the correction might be required for handover in the openbsc standalone case, but it is causing incrementally bigger latency in the lcr case.
Diffstat (limited to 'openbsc/src')
-rw-r--r--openbsc/src/rtp_proxy.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/openbsc/src/rtp_proxy.c b/openbsc/src/rtp_proxy.c
index 83b774f97..78bb79af9 100644
--- a/openbsc/src/rtp_proxy.c
+++ b/openbsc/src/rtp_proxy.c
@@ -226,6 +226,7 @@ int rtp_send_frame(struct rtp_socket *rs, struct gsm_data_frame *frame)
return -EINVAL;
}
+#if 0
{
struct timeval tv, tv_diff;
long int usec_diff, frame_diff;
@@ -246,6 +247,7 @@ int rtp_send_frame(struct rtp_socket *rs, struct gsm_data_frame *frame)
rs->transmit.timestamp += frame_diff_excess * duration;
}
}
+#endif
msg = msgb_alloc(sizeof(struct rtp_hdr) + payload_len, "RTP-GSM-FULL");
if (!msg)