aboutsummaryrefslogtreecommitdiffstats
path: root/doc/manuals/rtp-amr.adoc
diff options
context:
space:
mode:
authorMax <msuraev@sysmocom.de>2016-11-02 17:24:49 +0100
committerNeels Hofmeyr <neels@hofmeyr.de>2018-11-27 17:54:20 +0100
commit08b14a2fac56f5b376822c6f9c6907aad2e6cb7b (patch)
treec91b47dd12b7591125fca9b036324ed78b684e9a /doc/manuals/rtp-amr.adoc
parent5fd42960d665925d3e63d2aea00357b1857e2599 (diff)
Add DTX implementation details to RTP AMR
Add FSM and description. Change-Id: Ib37cb6e4038f970070c1715269961db7172ce377
Diffstat (limited to 'doc/manuals/rtp-amr.adoc')
-rw-r--r--doc/manuals/rtp-amr.adoc18
1 files changed, 18 insertions, 0 deletions
diff --git a/doc/manuals/rtp-amr.adoc b/doc/manuals/rtp-amr.adoc
index f6013036..f7eda112 100644
--- a/doc/manuals/rtp-amr.adoc
+++ b/doc/manuals/rtp-amr.adoc
@@ -1311,3 +1311,21 @@ msc {
ms <= phy [label="L1 burst (sub-block 4 of SID_FIRST_P1, sub-block 2 of SID_FIRST_P2)"];
}
----
+
+== Implementation details
+
+There is FSM implementing all the necessary states and transitions for DTX DL.
+
+[[dtx_dl_fsm]]
+[graphviz]
+----
+include::dtx.dot[]
+----
+
+The idea is that each state corresponds to the particular message type which have to be send to L1 while state transition happens on incoming events like FACCH or Voice frames. There are 3 different classes of of events driving this FSM:
+
+* Voice frame types: E_VOICE, E_SID_U, E_SID_F
+* Incoming FACCH: E_FACCH
+* Internal: E_ONSET, E_INHIB, E_COMPL
+
+They represent different types of incoming RTP frames (Voice, SID UPDATE and SID FIRST correspondingly), incoming FACCH events or important events internal to DTX operations. The latter are Onset (interruption of silence period), Inhibition (of currently transmitted SID FIRST or UPDATE) and Completion (of silence initiation). \ No newline at end of file