aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhilipp Maier <pmaier@sysmocom.de>2017-06-16 16:47:06 +0200
committerHarald Welte <laforge@gnumonks.org>2017-06-21 20:20:02 +0000
commita9e193b5dcfb06e0be362ad88816e3100c71256c (patch)
treedee4c9bafb8baaf81b9dca24b523746becc6e60a
parent35c6fb3723b5597b000339679cf40a6d2235a793 (diff)
cosmetic: Add codec references to Speech Version Indication
Add the information which GSM Speech codec version coresponds to which bearer capability speech version. Change-Id: Ic9493fea139420a52c32b17d00ac7d0b2bf86967
-rw-r--r--include/osmocom/gsm/protocol/gsm_04_08.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/osmocom/gsm/protocol/gsm_04_08.h b/include/osmocom/gsm/protocol/gsm_04_08.h
index 124f8b7d..fef23d80 100644
--- a/include/osmocom/gsm/protocol/gsm_04_08.h
+++ b/include/osmocom/gsm/protocol/gsm_04_08.h
@@ -1620,13 +1620,13 @@ enum gsm48_bcap_modem_type {
GSM48_BCAP_MT_AUTO_1 = 8,
};
-/* GSM 04.08 Bearer Capability: Speech Version Indication */
+/*! \brief GSM 04.08 Bearer Capability: Speech Version Indication */
enum gsm48_bcap_speech_ver {
- GSM48_BCAP_SV_FR = 0,
- GSM48_BCAP_SV_HR = 1,
- GSM48_BCAP_SV_EFR = 2,
- GSM48_BCAP_SV_AMR_F = 4,
- GSM48_BCAP_SV_AMR_H = 5,
+ GSM48_BCAP_SV_FR = 0, /*!< GSM FR V1 (GSM FR) */
+ GSM48_BCAP_SV_HR = 1, /*!< GSM HR V1 (GSM HR) */
+ GSM48_BCAP_SV_EFR = 2, /*!< GSM FR V2 (GSM EFR) */
+ GSM48_BCAP_SV_AMR_F = 4, /*!< GSM FR V3 (FR AMR) */
+ GSM48_BCAP_SV_AMR_H = 5, /*!< GSM HR V3 (HR_AMR) */
};
#define GSM48_TMSI_LEN 5