FreeCalypso > hg > themwi-system-sw
annotate mgw/g711_decode.c @ 268:d6630a2d6e80
doc: beginning of numbering plan documentation
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Mon, 13 Nov 2023 18:20:57 -0800 |
parents | e80f158333c5 |
children |
rev | line source |
---|---|
95
f280328e7e2e
themwi-mgw: initial implementation of PSTN to GSM forwarding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1 /* |
209
e80f158333c5
mgw: correct PCMU decoding table
Mychaela Falconia <falcon@freecalypso.org>
parents:
95
diff
changeset
|
2 * This module contains decoding tables for G.711 PCMU and PCMA; these tables |
e80f158333c5
mgw: correct PCMU decoding table
Mychaela Falconia <falcon@freecalypso.org>
parents:
95
diff
changeset
|
3 * were originally lifted from the source for libgsm companion 'toast' utility, |
e80f158333c5
mgw: correct PCMU decoding table
Mychaela Falconia <falcon@freecalypso.org>
parents:
95
diff
changeset
|
4 * but the PCMU decoding table has now been replaced with a corrected version |
e80f158333c5
mgw: correct PCMU decoding table
Mychaela Falconia <falcon@freecalypso.org>
parents:
95
diff
changeset
|
5 * generated in Themyscira gsm-codec-lib project. |
95
f280328e7e2e
themwi-mgw: initial implementation of PSTN to GSM forwarding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
6 */ |
f280328e7e2e
themwi-mgw: initial implementation of PSTN to GSM forwarding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
7 |
f280328e7e2e
themwi-mgw: initial implementation of PSTN to GSM forwarding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
8 #include <stdint.h> |
f280328e7e2e
themwi-mgw: initial implementation of PSTN to GSM forwarding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
9 |
f280328e7e2e
themwi-mgw: initial implementation of PSTN to GSM forwarding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
10 uint16_t pcmu_decode_table[256] = { |
209
e80f158333c5
mgw: correct PCMU decoding table
Mychaela Falconia <falcon@freecalypso.org>
parents:
95
diff
changeset
|
11 33412, 34436, 35460, 36484, 37508, 38532, 39556, 40580, |
e80f158333c5
mgw: correct PCMU decoding table
Mychaela Falconia <falcon@freecalypso.org>
parents:
95
diff
changeset
|
12 41604, 42628, 43652, 44676, 45700, 46724, 47748, 48772, |
e80f158333c5
mgw: correct PCMU decoding table
Mychaela Falconia <falcon@freecalypso.org>
parents:
95
diff
changeset
|
13 49540, 50052, 50564, 51076, 51588, 52100, 52612, 53124, |
e80f158333c5
mgw: correct PCMU decoding table
Mychaela Falconia <falcon@freecalypso.org>
parents:
95
diff
changeset
|
14 53636, 54148, 54660, 55172, 55684, 56196, 56708, 57220, |
e80f158333c5
mgw: correct PCMU decoding table
Mychaela Falconia <falcon@freecalypso.org>
parents:
95
diff
changeset
|
15 57604, 57860, 58116, 58372, 58628, 58884, 59140, 59396, |
e80f158333c5
mgw: correct PCMU decoding table
Mychaela Falconia <falcon@freecalypso.org>
parents:
95
diff
changeset
|
16 59652, 59908, 60164, 60420, 60676, 60932, 61188, 61444, |
e80f158333c5
mgw: correct PCMU decoding table
Mychaela Falconia <falcon@freecalypso.org>
parents:
95
diff
changeset
|
17 61636, 61764, 61892, 62020, 62148, 62276, 62404, 62532, |
e80f158333c5
mgw: correct PCMU decoding table
Mychaela Falconia <falcon@freecalypso.org>
parents:
95
diff
changeset
|
18 62660, 62788, 62916, 63044, 63172, 63300, 63428, 63556, |
e80f158333c5
mgw: correct PCMU decoding table
Mychaela Falconia <falcon@freecalypso.org>
parents:
95
diff
changeset
|
19 63652, 63716, 63780, 63844, 63908, 63972, 64036, 64100, |
e80f158333c5
mgw: correct PCMU decoding table
Mychaela Falconia <falcon@freecalypso.org>
parents:
95
diff
changeset
|
20 64164, 64228, 64292, 64356, 64420, 64484, 64548, 64612, |
e80f158333c5
mgw: correct PCMU decoding table
Mychaela Falconia <falcon@freecalypso.org>
parents:
95
diff
changeset
|
21 64660, 64692, 64724, 64756, 64788, 64820, 64852, 64884, |
e80f158333c5
mgw: correct PCMU decoding table
Mychaela Falconia <falcon@freecalypso.org>
parents:
95
diff
changeset
|
22 64916, 64948, 64980, 65012, 65044, 65076, 65108, 65140, |
e80f158333c5
mgw: correct PCMU decoding table
Mychaela Falconia <falcon@freecalypso.org>
parents:
95
diff
changeset
|
23 65164, 65180, 65196, 65212, 65228, 65244, 65260, 65276, |
e80f158333c5
mgw: correct PCMU decoding table
Mychaela Falconia <falcon@freecalypso.org>
parents:
95
diff
changeset
|
24 65292, 65308, 65324, 65340, 65356, 65372, 65388, 65404, |
95
f280328e7e2e
themwi-mgw: initial implementation of PSTN to GSM forwarding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
25 65416, 65424, 65432, 65440, 65448, 65456, 65464, 65472, |
f280328e7e2e
themwi-mgw: initial implementation of PSTN to GSM forwarding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
26 65480, 65488, 65496, 65504, 65512, 65520, 65528, 0, |
209
e80f158333c5
mgw: correct PCMU decoding table
Mychaela Falconia <falcon@freecalypso.org>
parents:
95
diff
changeset
|
27 32124, 31100, 30076, 29052, 28028, 27004, 25980, 24956, |
e80f158333c5
mgw: correct PCMU decoding table
Mychaela Falconia <falcon@freecalypso.org>
parents:
95
diff
changeset
|
28 23932, 22908, 21884, 20860, 19836, 18812, 17788, 16764, |
e80f158333c5
mgw: correct PCMU decoding table
Mychaela Falconia <falcon@freecalypso.org>
parents:
95
diff
changeset
|
29 15996, 15484, 14972, 14460, 13948, 13436, 12924, 12412, |
e80f158333c5
mgw: correct PCMU decoding table
Mychaela Falconia <falcon@freecalypso.org>
parents:
95
diff
changeset
|
30 11900, 11388, 10876, 10364, 9852, 9340, 8828, 8316, |
e80f158333c5
mgw: correct PCMU decoding table
Mychaela Falconia <falcon@freecalypso.org>
parents:
95
diff
changeset
|
31 7932, 7676, 7420, 7164, 6908, 6652, 6396, 6140, |
e80f158333c5
mgw: correct PCMU decoding table
Mychaela Falconia <falcon@freecalypso.org>
parents:
95
diff
changeset
|
32 5884, 5628, 5372, 5116, 4860, 4604, 4348, 4092, |
e80f158333c5
mgw: correct PCMU decoding table
Mychaela Falconia <falcon@freecalypso.org>
parents:
95
diff
changeset
|
33 3900, 3772, 3644, 3516, 3388, 3260, 3132, 3004, |
e80f158333c5
mgw: correct PCMU decoding table
Mychaela Falconia <falcon@freecalypso.org>
parents:
95
diff
changeset
|
34 2876, 2748, 2620, 2492, 2364, 2236, 2108, 1980, |
e80f158333c5
mgw: correct PCMU decoding table
Mychaela Falconia <falcon@freecalypso.org>
parents:
95
diff
changeset
|
35 1884, 1820, 1756, 1692, 1628, 1564, 1500, 1436, |
e80f158333c5
mgw: correct PCMU decoding table
Mychaela Falconia <falcon@freecalypso.org>
parents:
95
diff
changeset
|
36 1372, 1308, 1244, 1180, 1116, 1052, 988, 924, |
e80f158333c5
mgw: correct PCMU decoding table
Mychaela Falconia <falcon@freecalypso.org>
parents:
95
diff
changeset
|
37 876, 844, 812, 780, 748, 716, 684, 652, |
e80f158333c5
mgw: correct PCMU decoding table
Mychaela Falconia <falcon@freecalypso.org>
parents:
95
diff
changeset
|
38 620, 588, 556, 524, 492, 460, 428, 396, |
e80f158333c5
mgw: correct PCMU decoding table
Mychaela Falconia <falcon@freecalypso.org>
parents:
95
diff
changeset
|
39 372, 356, 340, 324, 308, 292, 276, 260, |
e80f158333c5
mgw: correct PCMU decoding table
Mychaela Falconia <falcon@freecalypso.org>
parents:
95
diff
changeset
|
40 244, 228, 212, 196, 180, 164, 148, 132, |
95
f280328e7e2e
themwi-mgw: initial implementation of PSTN to GSM forwarding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
41 120, 112, 104, 96, 88, 80, 72, 64, |
209
e80f158333c5
mgw: correct PCMU decoding table
Mychaela Falconia <falcon@freecalypso.org>
parents:
95
diff
changeset
|
42 56, 48, 40, 32, 24, 16, 8, 0 |
95
f280328e7e2e
themwi-mgw: initial implementation of PSTN to GSM forwarding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
43 }; |
f280328e7e2e
themwi-mgw: initial implementation of PSTN to GSM forwarding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
44 |
f280328e7e2e
themwi-mgw: initial implementation of PSTN to GSM forwarding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
45 uint16_t pcma_decode_table[256] = { |
209
e80f158333c5
mgw: correct PCMU decoding table
Mychaela Falconia <falcon@freecalypso.org>
parents:
95
diff
changeset
|
46 60032, 60288, 59520, 59776, 61056, 61312, 60544, 60800, |
e80f158333c5
mgw: correct PCMU decoding table
Mychaela Falconia <falcon@freecalypso.org>
parents:
95
diff
changeset
|
47 57984, 58240, 57472, 57728, 59008, 59264, 58496, 58752, |
e80f158333c5
mgw: correct PCMU decoding table
Mychaela Falconia <falcon@freecalypso.org>
parents:
95
diff
changeset
|
48 62784, 62912, 62528, 62656, 63296, 63424, 63040, 63168, |
e80f158333c5
mgw: correct PCMU decoding table
Mychaela Falconia <falcon@freecalypso.org>
parents:
95
diff
changeset
|
49 61760, 61888, 61504, 61632, 62272, 62400, 62016, 62144, |
e80f158333c5
mgw: correct PCMU decoding table
Mychaela Falconia <falcon@freecalypso.org>
parents:
95
diff
changeset
|
50 43520, 44544, 41472, 42496, 47616, 48640, 45568, 46592, |
e80f158333c5
mgw: correct PCMU decoding table
Mychaela Falconia <falcon@freecalypso.org>
parents:
95
diff
changeset
|
51 35328, 36352, 33280, 34304, 39424, 40448, 37376, 38400, |
e80f158333c5
mgw: correct PCMU decoding table
Mychaela Falconia <falcon@freecalypso.org>
parents:
95
diff
changeset
|
52 54528, 55040, 53504, 54016, 56576, 57088, 55552, 56064, |
e80f158333c5
mgw: correct PCMU decoding table
Mychaela Falconia <falcon@freecalypso.org>
parents:
95
diff
changeset
|
53 50432, 50944, 49408, 49920, 52480, 52992, 51456, 51968, |
e80f158333c5
mgw: correct PCMU decoding table
Mychaela Falconia <falcon@freecalypso.org>
parents:
95
diff
changeset
|
54 65192, 65208, 65160, 65176, 65256, 65272, 65224, 65240, |
e80f158333c5
mgw: correct PCMU decoding table
Mychaela Falconia <falcon@freecalypso.org>
parents:
95
diff
changeset
|
55 65064, 65080, 65032, 65048, 65128, 65144, 65096, 65112, |
e80f158333c5
mgw: correct PCMU decoding table
Mychaela Falconia <falcon@freecalypso.org>
parents:
95
diff
changeset
|
56 65448, 65464, 65416, 65432, 65512, 65528, 65480, 65496, |
e80f158333c5
mgw: correct PCMU decoding table
Mychaela Falconia <falcon@freecalypso.org>
parents:
95
diff
changeset
|
57 65320, 65336, 65288, 65304, 65384, 65400, 65352, 65368, |
e80f158333c5
mgw: correct PCMU decoding table
Mychaela Falconia <falcon@freecalypso.org>
parents:
95
diff
changeset
|
58 64160, 64224, 64032, 64096, 64416, 64480, 64288, 64352, |
e80f158333c5
mgw: correct PCMU decoding table
Mychaela Falconia <falcon@freecalypso.org>
parents:
95
diff
changeset
|
59 63648, 63712, 63520, 63584, 63904, 63968, 63776, 63840, |
e80f158333c5
mgw: correct PCMU decoding table
Mychaela Falconia <falcon@freecalypso.org>
parents:
95
diff
changeset
|
60 64848, 64880, 64784, 64816, 64976, 65008, 64912, 64944, |
e80f158333c5
mgw: correct PCMU decoding table
Mychaela Falconia <falcon@freecalypso.org>
parents:
95
diff
changeset
|
61 64592, 64624, 64528, 64560, 64720, 64752, 64656, 64688, |
e80f158333c5
mgw: correct PCMU decoding table
Mychaela Falconia <falcon@freecalypso.org>
parents:
95
diff
changeset
|
62 5504, 5248, 6016, 5760, 4480, 4224, 4992, 4736, |
e80f158333c5
mgw: correct PCMU decoding table
Mychaela Falconia <falcon@freecalypso.org>
parents:
95
diff
changeset
|
63 7552, 7296, 8064, 7808, 6528, 6272, 7040, 6784, |
e80f158333c5
mgw: correct PCMU decoding table
Mychaela Falconia <falcon@freecalypso.org>
parents:
95
diff
changeset
|
64 2752, 2624, 3008, 2880, 2240, 2112, 2496, 2368, |
e80f158333c5
mgw: correct PCMU decoding table
Mychaela Falconia <falcon@freecalypso.org>
parents:
95
diff
changeset
|
65 3776, 3648, 4032, 3904, 3264, 3136, 3520, 3392, |
e80f158333c5
mgw: correct PCMU decoding table
Mychaela Falconia <falcon@freecalypso.org>
parents:
95
diff
changeset
|
66 22016, 20992, 24064, 23040, 17920, 16896, 19968, 18944, |
e80f158333c5
mgw: correct PCMU decoding table
Mychaela Falconia <falcon@freecalypso.org>
parents:
95
diff
changeset
|
67 30208, 29184, 32256, 31232, 26112, 25088, 28160, 27136, |
e80f158333c5
mgw: correct PCMU decoding table
Mychaela Falconia <falcon@freecalypso.org>
parents:
95
diff
changeset
|
68 11008, 10496, 12032, 11520, 8960, 8448, 9984, 9472, |
e80f158333c5
mgw: correct PCMU decoding table
Mychaela Falconia <falcon@freecalypso.org>
parents:
95
diff
changeset
|
69 15104, 14592, 16128, 15616, 13056, 12544, 14080, 13568, |
e80f158333c5
mgw: correct PCMU decoding table
Mychaela Falconia <falcon@freecalypso.org>
parents:
95
diff
changeset
|
70 344, 328, 376, 360, 280, 264, 312, 296, |
e80f158333c5
mgw: correct PCMU decoding table
Mychaela Falconia <falcon@freecalypso.org>
parents:
95
diff
changeset
|
71 472, 456, 504, 488, 408, 392, 440, 424, |
e80f158333c5
mgw: correct PCMU decoding table
Mychaela Falconia <falcon@freecalypso.org>
parents:
95
diff
changeset
|
72 88, 72, 120, 104, 24, 8, 56, 40, |
e80f158333c5
mgw: correct PCMU decoding table
Mychaela Falconia <falcon@freecalypso.org>
parents:
95
diff
changeset
|
73 216, 200, 248, 232, 152, 136, 184, 168, |
e80f158333c5
mgw: correct PCMU decoding table
Mychaela Falconia <falcon@freecalypso.org>
parents:
95
diff
changeset
|
74 1376, 1312, 1504, 1440, 1120, 1056, 1248, 1184, |
e80f158333c5
mgw: correct PCMU decoding table
Mychaela Falconia <falcon@freecalypso.org>
parents:
95
diff
changeset
|
75 1888, 1824, 2016, 1952, 1632, 1568, 1760, 1696, |
e80f158333c5
mgw: correct PCMU decoding table
Mychaela Falconia <falcon@freecalypso.org>
parents:
95
diff
changeset
|
76 688, 656, 752, 720, 560, 528, 624, 592, |
e80f158333c5
mgw: correct PCMU decoding table
Mychaela Falconia <falcon@freecalypso.org>
parents:
95
diff
changeset
|
77 944, 912, 1008, 976, 816, 784, 880, 848 |
95
f280328e7e2e
themwi-mgw: initial implementation of PSTN to GSM forwarding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
78 }; |