diff options
author | Max <msuraev@sysmocom.de> | 2016-08-12 16:18:56 +0200 |
---|---|---|
committer | Harald Welte <laforge@gnumonks.org> | 2016-09-09 06:35:42 +0000 |
commit | c69de3e25cb0fe651293e64a68ba35e936c50ff3 (patch) | |
tree | 2cbf701344b0a5a0cf1a8d8c92278ec39767bb64 /include | |
parent | 6320934e6a740c824f99769700937ed0477c67b3 (diff) |
Add Marker to ph_tch_param
Extend struct ph_tch_param with Marker bit from RTP header to indicate
speech onset in case of DTX.
Change-Id: Ic664902630b9d335ff9abc7a9ca7249eaf80e05f
Related: OS#1750
Diffstat (limited to 'include')
-rw-r--r-- | include/osmocom/gsm/l1sap.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/osmocom/gsm/l1sap.h b/include/osmocom/gsm/l1sap.h index f0e9f6c9..e199efe1 100644 --- a/include/osmocom/gsm/l1sap.h +++ b/include/osmocom/gsm/l1sap.h @@ -81,6 +81,7 @@ struct ph_tch_param { uint8_t chan_nr; /*!< \brief Channel Number (Like RSL) */ uint32_t fn; /*!< \brief GSM Frame Number */ int8_t rssi; /*!< \brief RSSI of received indication */ + uint8_t marker; /*!< \brief RTP Marker bit (speech onset indicator) */ }; /*! \brief for PH-CONN.ind */ |