aboutsummaryrefslogtreecommitdiffstats
path: root/doc/manuals/dtx.dot
blob: b9f0b5f2ee2ee935b8290e9c4db37570eab453b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
digraph dtx_dl_amr_fsm {
	node [shape = doublecircle] ST_VOICE ST_FACCH ST_U_NOINH
	node [shape = circle]

	// default state for non-DTX and DTX when SPEECH is in progress
	ST_VOICE -> ST_SID_F1 [ label = "E_SID_F" ]
	ST_VOICE -> ST_F1_INH_V [ label = "E_INHIB" ]
	ST_VOICE -> ST_U_NOINH [ label = "E_SID_U" ]
	ST_VOICE -> ST_VOICE [ label = "E_VOICE" ]
	ST_VOICE -> ST_VOICE [ label = "E_FACCH" ]

	// SID-FIRST or SID-FIRST-P1 in case of AMR HR: start of silence period (might be interrupted in case of AMR HR)
	ST_SID_F1 -> ST_SID_F1 [ label = "E_SID_F" ]
	ST_SID_F1 -> ST_U_NOINH [ label = "E_SID_U" ]
        ST_SID_F1 -> ST_F1_INH_F [ label = "E_FACCH" ]
	ST_SID_F1 -> ST_SID_F2  [ label = "E_FIRST" ]
	ST_SID_F1 -> ST_ONSET_V [ label = "E_ONSET" ]

	// SID-FIRST P2 (only for AMR HR): actual start of silence period in case of AMR HR
	ST_SID_F2 -> ST_U_NOINH [ label = "E_COMPL" ]
	ST_SID_F2 -> ST_ONSET_F [ label = "E_FACCH" ]
	ST_SID_F2 -> ST_ONSET_V [ label = "E_ONSET" ]

	// SID-FIRST Inhibited: incoming SPEECH (only for AMR HR)
	ST_F1_INH_V -> ST_F1_INH_V_REC [ label = "E_COMPL" ]

	// SID-FIRST Inhibited: incoming FACCH frame (only for AMR HR)
	ST_F1_INH_F -> ST_F1_INH_F_REC [ label = "E_COMPL" ]

	// SID-UPDATE Inhibited: incoming SPEECH (only for AMR HR)
	ST_U_INH_V -> ST_U_INH_V_REC [ label = "E_COMPL" ]

	// SID-UPDATE Inhibited: incoming FACCH frame (only for AMR HR)
	ST_U_INH_F -> ST_U_INH_F_REC [ label = "E_COMPL" ]

	// Silence period with periodic comfort noise data updates (no Inhibition)
	ST_U_NOINH -> ST_ONSET_F [ label = "E_FACCH" ]
	ST_U_NOINH -> ST_VOICE [ label = "E_VOICE" ]
	ST_U_NOINH -> ST_U_NOINH [ label = "E_SID_U" ]
	ST_U_NOINH -> ST_U_NOINH [ label = "E_SID_F" ]
	ST_U_NOINH -> ST_ONSET_V [ label = "E_ONSET" ]
	ST_U_NOINH -> ST_SID_U [ label = "E_COMPL" ]

	// SID-FIRST Inhibition recursion in progress: Inhibit itself was already sent, now have to send the voice that caused it
	ST_F1_INH_V_REC -> ST_VOICE [ label = "E_COMPL" ]
	ST_F1_INH_V_REC -> ST_VOICE [ label = "E_VOICE" ]

	// SID-FIRST Inhibition recursion in progress: Inhibit itself was already sent, now have to send the voice that caused it
	ST_F1_INH_F_REC -> ST_FACCH [ label = "E_COMPL" ]
	ST_F1_INH_F_REC -> ST_FACCH [ label = "E_VOICE" ]

	// SID-UPDATE Inhibition recursion in progress: Inhibit itself was already sent, now have to send the voice that caused it
	ST_U_INH_V_REC -> ST_VOICE [ label = "E_COMPL" ]
	ST_U_INH_V_REC -> ST_VOICE [ label = "E_VOICE" ]

	// SID-UPDATE Inhibition recursion in progress: Inhibit itself was already sent, now have to send the voice that caused it
	ST_U_INH_F_REC -> ST_FACCH [ label = "E_COMPL" ]
	ST_U_INH_F_REC -> ST_FACCH [ label = "E_VOICE" ]

	// Silence period with periodic comfort noise data updates (can be inhibited)
	ST_SID_U -> ST_U_INH_F [ label = "E_FACCH" ]
	ST_SID_U -> ST_VOICE [ label = "E_VOICE" ]
	ST_SID_U -> ST_U_INH_V [ label = "E_INHIB" ]
	ST_SID_U -> ST_U_NOINH [ label = "E_SID_U" ]
	ST_SID_U -> ST_U_NOINH [ label = "E_SID_F" ]

	// ONSET - end of silent period due to incoming SPEECH frame
	ST_ONSET_V -> ST_ONSET_V_REC [ label = "E_COMPL" ]

	// ONSET - end of silent period due to incoming FACCH frame
	ST_ONSET_F -> ST_ONSET_F_REC [ label = "E_COMPL" ]

	// ONSET recursion in progress: ONSET itself was already sent, now have to send the data that caused it
	ST_ONSET_F_REC -> ST_FACCH [ label = "E_COMPL" ]

	// ONSET recursion in progress: ONSET itself was already sent, now have to send the voice that caused it
	ST_ONSET_V_REC -> ST_VOICE [ label = "E_COMPL" ]

	// FACCH sending state
	ST_FACCH -> ST_VOICE [ label = "E_VOICE" ]
	ST_FACCH -> ST_FACCH [ label = "E_FACCH" ]
	ST_FACCH -> ST_FACCH [ label = "E_SID_U" ]
	ST_FACCH -> ST_FACCH [ label = "E_SID_F" ]
	ST_FACCH -> ST_SID_F1 [ label = "E_COMPL" ]
}