EVS: Fix CNG schema for SID payload

In 3GPP 26.449 Codec for Enhanced Voice Services (EVS); Comfort Noise Generation
(CNG) aspects, Computational details and bit allocation:
For the EVS primary modes, the SID payload consists of 48 bits. The first bit of
the payload determines the CNG scheme, where 0 stands for the LP-CNG and 1 for
the FD-CNG.
This commit is contained in:
Nan Xiao 2021-10-19 14:46:38 +08:00 committed by Wireshark GitLab Utility
parent 95092e6582
commit 9a8feb8abd
1 changed files with 2 additions and 2 deletions

View File

@ -338,8 +338,8 @@ static const value_string evs_tcx_or_hq_mdct_core_values[] = {
};
static const value_string evs_sid_cng_values[] = {
{ 0x0, "FD-CNG" },
{ 0x1, "LP-CNG SID" },
{ 0x0, "LP-CNG SID" },
{ 0x1, "FD-CNG" },
{ 0, NULL }
};