aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-gsm_a_bssmap.c
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2018-03-21 19:42:46 +0100
committerPascal Quantin <pascal.quantin@gmail.com>2018-04-07 20:26:07 +0000
commit5b0c6f9e058bb07df970956f01f0e15d1ed15af6 (patch)
tree21c1f678483020b6e4b3faba9459f61dd09598f3 /epan/dissectors/packet-gsm_a_bssmap.c
parent5d1b5648fa900319fc4d212f2fd78562959716ba (diff)
BSSMAP: Fix definition of Speech Version Indication for EFR (FR2)
3GPP TS 48.008 Section 3.2.2.11 is quite clear on the definitions of the "permitted speech version indication". The Wireshark BSSMAP dissector so far got it wrong: * 0x11 is "Full Rate Version 2" (aka GSM-EFR) * the short version is not FR12 but FR2 Change-Id: I6835083389e465c791cea5a240ebc434f677b82c Reviewed-on: https://code.wireshark.org/review/26790 Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
Diffstat (limited to 'epan/dissectors/packet-gsm_a_bssmap.c')
-rw-r--r--epan/dissectors/packet-gsm_a_bssmap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-gsm_a_bssmap.c b/epan/dissectors/packet-gsm_a_bssmap.c
index 128fb2b181..d0a3d9cd8b 100644
--- a/epan/dissectors/packet-gsm_a_bssmap.c
+++ b/epan/dissectors/packet-gsm_a_bssmap.c
@@ -2651,7 +2651,7 @@ static const range_string speech_version_id_rvals[] = {
static const range_string speech_version_id_short_rvals[] = {
{ 0x01, 0x01, "FR1" },
{ 0x05, 0x05, "HR1" },
- { 0x11, 0x11, "FR12" },
+ { 0x11, 0x11, "FR2 (EFR)" },
{ 0x15, 0x15, "HR2" },
{ 0x21, 0x21, "FR3 (AMR)" },
{ 0x25, 0x25, "HR3 (AMR)" },