Fix typos

This commit is contained in:
Martin Hauke 2021-01-01 22:14:42 +01:00 committed by Andreas Eversberg
parent 6ea21e8a2e
commit 027846d895
2 changed files with 5 additions and 5 deletions

View File

@ -50,10 +50,10 @@
* If RTP proxy is enabled, the SDP is negotiated with the supported codecs of
* this router. The first reply to the CC-SETUP-REQ message will include the
* SDP reply as well as progress indicator set to 8 (if not a CC-SETUP-CNF
* message) towards originating endpoint. The SDP negoatiation on the
* message) towards originating endpoint. The SDP negotiation on the
* originating side is complete. If the call gets forwarded to a single or
* multiple terminating endpoints, an SDP is generated with teh supported
* codecs of this router. In case of single terminating endpont, the SDP of the
* multiple terminating endpoints, an SDP is generated with the supported
* codecs of this router. In case of single terminating endpoint, the SDP of the
* first reply to the CC-SETUP-IND message is used to negotiate the codec. In
* case of multiple terminating endpoints (call forking) the SDP reply is
* stored and processed when a CC-SETUP-RSP is received from the first
@ -1729,7 +1729,7 @@ static void routing_dtmf(call_t *call)
dtmf_decode_exit(&relation->dtmf_dec);
/* we add 13, because we working at speech level and not at 0dBm, wich is -13 dBm */
/* we add 13, because we working at speech level and not at 0dBm, which is -13 dBm */
dtmf_decode_init(&relation->dtmf_dec, relation, recv_dtmf, 8000, db2level(6.0 + 13.0), db2level(-30.0 + 13.0));
relation->dtmf_dec_enable = 1;

View File

@ -26,7 +26,7 @@ typedef struct call_relation {
struct call_relation *next;
int num; /* number counter for debugging */
struct call *call; /* points to the call */
uint32_t cc_callref; /* callref for each releation */
uint32_t cc_callref; /* callref for each relation */
const char *sdp; /* received SDP? */
int tones_recv; /* are inband tones available? */
jitter_t orig_dejitter; /* jitter buffer for call recording (originating source) */