FreeCalypso > hg > themwi-system-sw
annotate mgw/g711_encode.c @ 134:2b03d2584f88
liboutrt: implement refresh
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Thu, 06 Oct 2022 23:31:37 -0800 |
parents | ca21fbf9d2ea |
children | d96eaf2d6900 |
rev | line source |
---|---|
101
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1 /* |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
2 * This module contains encoding tables for G.711 PCMU and PCMA, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
3 * lifted from the source from libgsm companion 'toast' utility, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
4 * along with functions for encoding a frame of 160 samples. |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
5 */ |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
6 |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
7 #include <stdint.h> |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
8 #include "../include/tmgw_const.h" |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
9 #include "int_defs.h" |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
10 |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
11 static uint8_t ulaw_enc_table[8192] = { |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
12 0377,0376,0375,0374,0373,0372,0371,0370,0367,0366,0365,0364,0363,0362,0361, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
13 0360,0357,0357,0356,0356,0355,0355,0354,0354,0353,0353,0352,0352,0351,0351, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
14 0350,0350,0347,0347,0346,0346,0345,0345,0344,0344,0343,0343,0342,0342,0341, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
15 0341,0340,0340,0337,0337,0337,0337,0336,0336,0336,0336,0335,0335,0335,0335, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
16 0334,0334,0334,0334,0333,0333,0333,0333,0332,0332,0332,0332,0331,0331,0331, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
17 0331,0330,0330,0330,0330,0327,0327,0327,0327,0326,0326,0326,0326,0325,0325, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
18 0325,0325,0324,0324,0324,0324,0323,0323,0323,0323,0322,0322,0322,0322,0321, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
19 0321,0321,0321,0320,0320,0320,0320,0317,0317,0317,0317,0317,0317,0317,0317, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
20 0316,0316,0316,0316,0316,0316,0316,0316,0315,0315,0315,0315,0315,0315,0315, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
21 0315,0314,0314,0314,0314,0314,0314,0314,0314,0313,0313,0313,0313,0313,0313, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
22 0313,0313,0312,0312,0312,0312,0312,0312,0312,0312,0311,0311,0311,0311,0311, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
23 0311,0311,0311,0310,0310,0310,0310,0310,0310,0310,0310,0307,0307,0307,0307, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
24 0307,0307,0307,0307,0306,0306,0306,0306,0306,0306,0306,0306,0305,0305,0305, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
25 0305,0305,0305,0305,0305,0304,0304,0304,0304,0304,0304,0304,0304,0303,0303, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
26 0303,0303,0303,0303,0303,0303,0303,0302,0302,0302,0302,0302,0302,0302,0302, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
27 0301,0301,0301,0301,0301,0301,0301,0301,0300,0300,0300,0300,0300,0300,0300, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
28 0300,0277,0277,0277,0277,0277,0277,0277,0277,0277,0277,0277,0277,0277,0277, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
29 0277,0277,0276,0276,0276,0276,0276,0276,0276,0276,0276,0276,0276,0276,0276, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
30 0276,0276,0276,0275,0275,0275,0275,0275,0275,0275,0275,0275,0275,0275,0275, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
31 0275,0275,0275,0275,0274,0274,0274,0274,0274,0274,0274,0274,0274,0274,0274, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
32 0274,0274,0274,0274,0274,0273,0273,0273,0273,0273,0273,0273,0273,0273,0273, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
33 0273,0273,0273,0273,0273,0273,0272,0272,0272,0272,0272,0272,0272,0272,0272, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
34 0272,0272,0272,0272,0272,0272,0272,0271,0271,0271,0271,0271,0271,0271,0271, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
35 0271,0271,0271,0271,0271,0271,0271,0271,0270,0270,0270,0270,0270,0270,0270, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
36 0270,0270,0270,0270,0270,0270,0270,0270,0270,0267,0267,0267,0267,0267,0267, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
37 0267,0267,0267,0267,0267,0267,0267,0267,0267,0267,0266,0266,0266,0266,0266, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
38 0266,0266,0266,0266,0266,0266,0266,0266,0266,0266,0266,0265,0265,0265,0265, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
39 0265,0265,0265,0265,0265,0265,0265,0265,0265,0265,0265,0265,0264,0264,0264, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
40 0264,0264,0264,0264,0264,0264,0264,0264,0264,0264,0264,0264,0264,0263,0263, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
41 0263,0263,0263,0263,0263,0263,0263,0263,0263,0263,0263,0263,0263,0263,0262, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
42 0262,0262,0262,0262,0262,0262,0262,0262,0262,0262,0262,0262,0262,0262,0262, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
43 0262,0261,0261,0261,0261,0261,0261,0261,0261,0261,0261,0261,0261,0261,0261, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
44 0261,0261,0260,0260,0260,0260,0260,0260,0260,0260,0260,0260,0260,0260,0260, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
45 0260,0260,0260,0257,0257,0257,0257,0257,0257,0257,0257,0257,0257,0257,0257, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
46 0257,0257,0257,0257,0257,0257,0257,0257,0257,0257,0257,0257,0257,0257,0257, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
47 0257,0257,0257,0257,0257,0256,0256,0256,0256,0256,0256,0256,0256,0256,0256, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
48 0256,0256,0256,0256,0256,0256,0256,0256,0256,0256,0256,0256,0256,0256,0256, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
49 0256,0256,0256,0256,0256,0256,0256,0255,0255,0255,0255,0255,0255,0255,0255, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
50 0255,0255,0255,0255,0255,0255,0255,0255,0255,0255,0255,0255,0255,0255,0255, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
51 0255,0255,0255,0255,0255,0255,0255,0255,0255,0254,0254,0254,0254,0254,0254, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
52 0254,0254,0254,0254,0254,0254,0254,0254,0254,0254,0254,0254,0254,0254,0254, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
53 0254,0254,0254,0254,0254,0254,0254,0254,0254,0254,0254,0253,0253,0253,0253, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
54 0253,0253,0253,0253,0253,0253,0253,0253,0253,0253,0253,0253,0253,0253,0253, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
55 0253,0253,0253,0253,0253,0253,0253,0253,0253,0253,0253,0253,0253,0252,0252, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
56 0252,0252,0252,0252,0252,0252,0252,0252,0252,0252,0252,0252,0252,0252,0252, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
57 0252,0252,0252,0252,0252,0252,0252,0252,0252,0252,0252,0252,0252,0252,0252, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
58 0251,0251,0251,0251,0251,0251,0251,0251,0251,0251,0251,0251,0251,0251,0251, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
59 0251,0251,0251,0251,0251,0251,0251,0251,0251,0251,0251,0251,0251,0251,0251, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
60 0251,0251,0251,0250,0250,0250,0250,0250,0250,0250,0250,0250,0250,0250,0250, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
61 0250,0250,0250,0250,0250,0250,0250,0250,0250,0250,0250,0250,0250,0250,0250, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
62 0250,0250,0250,0250,0250,0247,0247,0247,0247,0247,0247,0247,0247,0247,0247, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
63 0247,0247,0247,0247,0247,0247,0247,0247,0247,0247,0247,0247,0247,0247,0247, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
64 0247,0247,0247,0247,0247,0247,0247,0246,0246,0246,0246,0246,0246,0246,0246, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
65 0246,0246,0246,0246,0246,0246,0246,0246,0246,0246,0246,0246,0246,0246,0246, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
66 0246,0246,0246,0246,0246,0246,0246,0246,0246,0245,0245,0245,0245,0245,0245, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
67 0245,0245,0245,0245,0245,0245,0245,0245,0245,0245,0245,0245,0245,0245,0245, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
68 0245,0245,0245,0245,0245,0245,0245,0245,0245,0245,0245,0244,0244,0244,0244, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
69 0244,0244,0244,0244,0244,0244,0244,0244,0244,0244,0244,0244,0244,0244,0244, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
70 0244,0244,0244,0244,0244,0244,0244,0244,0244,0244,0244,0244,0244,0243,0243, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
71 0243,0243,0243,0243,0243,0243,0243,0243,0243,0243,0243,0243,0243,0243,0243, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
72 0243,0243,0243,0243,0243,0243,0243,0243,0243,0243,0243,0243,0243,0243,0243, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
73 0242,0242,0242,0242,0242,0242,0242,0242,0242,0242,0242,0242,0242,0242,0242, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
74 0242,0242,0242,0242,0242,0242,0242,0242,0242,0242,0242,0242,0242,0242,0242, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
75 0242,0242,0242,0241,0241,0241,0241,0241,0241,0241,0241,0241,0241,0241,0241, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
76 0241,0241,0241,0241,0241,0241,0241,0241,0241,0241,0241,0241,0241,0241,0241, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
77 0241,0241,0241,0241,0241,0240,0240,0240,0240,0240,0240,0240,0240,0240,0240, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
78 0240,0240,0240,0240,0240,0240,0240,0240,0240,0240,0240,0240,0240,0240,0240, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
79 0240,0240,0240,0240,0240,0240,0240,0237,0237,0237,0237,0237,0237,0237,0237, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
80 0237,0237,0237,0237,0237,0237,0237,0237,0237,0237,0237,0237,0237,0237,0237, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
81 0237,0237,0237,0237,0237,0237,0237,0237,0237,0237,0237,0237,0237,0237,0237, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
82 0237,0237,0237,0237,0237,0237,0237,0237,0237,0237,0237,0237,0237,0237,0237, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
83 0237,0237,0237,0237,0237,0237,0237,0237,0237,0237,0237,0236,0236,0236,0236, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
84 0236,0236,0236,0236,0236,0236,0236,0236,0236,0236,0236,0236,0236,0236,0236, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
85 0236,0236,0236,0236,0236,0236,0236,0236,0236,0236,0236,0236,0236,0236,0236, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
86 0236,0236,0236,0236,0236,0236,0236,0236,0236,0236,0236,0236,0236,0236,0236, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
87 0236,0236,0236,0236,0236,0236,0236,0236,0236,0236,0236,0236,0236,0236,0236, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
88 0235,0235,0235,0235,0235,0235,0235,0235,0235,0235,0235,0235,0235,0235,0235, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
89 0235,0235,0235,0235,0235,0235,0235,0235,0235,0235,0235,0235,0235,0235,0235, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
90 0235,0235,0235,0235,0235,0235,0235,0235,0235,0235,0235,0235,0235,0235,0235, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
91 0235,0235,0235,0235,0235,0235,0235,0235,0235,0235,0235,0235,0235,0235,0235, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
92 0235,0235,0235,0235,0235,0234,0234,0234,0234,0234,0234,0234,0234,0234,0234, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
93 0234,0234,0234,0234,0234,0234,0234,0234,0234,0234,0234,0234,0234,0234,0234, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
94 0234,0234,0234,0234,0234,0234,0234,0234,0234,0234,0234,0234,0234,0234,0234, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
95 0234,0234,0234,0234,0234,0234,0234,0234,0234,0234,0234,0234,0234,0234,0234, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
96 0234,0234,0234,0234,0234,0234,0234,0234,0234,0233,0233,0233,0233,0233,0233, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
97 0233,0233,0233,0233,0233,0233,0233,0233,0233,0233,0233,0233,0233,0233,0233, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
98 0233,0233,0233,0233,0233,0233,0233,0233,0233,0233,0233,0233,0233,0233,0233, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
99 0233,0233,0233,0233,0233,0233,0233,0233,0233,0233,0233,0233,0233,0233,0233, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
100 0233,0233,0233,0233,0233,0233,0233,0233,0233,0233,0233,0233,0233,0232,0232, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
101 0232,0232,0232,0232,0232,0232,0232,0232,0232,0232,0232,0232,0232,0232,0232, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
102 0232,0232,0232,0232,0232,0232,0232,0232,0232,0232,0232,0232,0232,0232,0232, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
103 0232,0232,0232,0232,0232,0232,0232,0232,0232,0232,0232,0232,0232,0232,0232, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
104 0232,0232,0232,0232,0232,0232,0232,0232,0232,0232,0232,0232,0232,0232,0232, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
105 0232,0232,0231,0231,0231,0231,0231,0231,0231,0231,0231,0231,0231,0231,0231, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
106 0231,0231,0231,0231,0231,0231,0231,0231,0231,0231,0231,0231,0231,0231,0231, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
107 0231,0231,0231,0231,0231,0231,0231,0231,0231,0231,0231,0231,0231,0231,0231, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
108 0231,0231,0231,0231,0231,0231,0231,0231,0231,0231,0231,0231,0231,0231,0231, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
109 0231,0231,0231,0231,0231,0231,0231,0230,0230,0230,0230,0230,0230,0230,0230, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
110 0230,0230,0230,0230,0230,0230,0230,0230,0230,0230,0230,0230,0230,0230,0230, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
111 0230,0230,0230,0230,0230,0230,0230,0230,0230,0230,0230,0230,0230,0230,0230, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
112 0230,0230,0230,0230,0230,0230,0230,0230,0230,0230,0230,0230,0230,0230,0230, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
113 0230,0230,0230,0230,0230,0230,0230,0230,0230,0230,0230,0227,0227,0227,0227, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
114 0227,0227,0227,0227,0227,0227,0227,0227,0227,0227,0227,0227,0227,0227,0227, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
115 0227,0227,0227,0227,0227,0227,0227,0227,0227,0227,0227,0227,0227,0227,0227, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
116 0227,0227,0227,0227,0227,0227,0227,0227,0227,0227,0227,0227,0227,0227,0227, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
117 0227,0227,0227,0227,0227,0227,0227,0227,0227,0227,0227,0227,0227,0227,0227, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
118 0226,0226,0226,0226,0226,0226,0226,0226,0226,0226,0226,0226,0226,0226,0226, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
119 0226,0226,0226,0226,0226,0226,0226,0226,0226,0226,0226,0226,0226,0226,0226, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
120 0226,0226,0226,0226,0226,0226,0226,0226,0226,0226,0226,0226,0226,0226,0226, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
121 0226,0226,0226,0226,0226,0226,0226,0226,0226,0226,0226,0226,0226,0226,0226, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
122 0226,0226,0226,0226,0225,0225,0225,0225,0225,0225,0225,0225,0225,0225,0225, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
123 0225,0225,0225,0225,0225,0225,0225,0225,0225,0225,0225,0225,0225,0225,0225, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
124 0225,0225,0225,0225,0225,0225,0225,0225,0225,0225,0225,0225,0225,0225,0225, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
125 0225,0225,0225,0225,0225,0225,0225,0225,0225,0225,0225,0225,0225,0225,0225, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
126 0225,0225,0225,0225,0225,0225,0225,0225,0225,0224,0224,0224,0224,0224,0224, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
127 0224,0224,0224,0224,0224,0224,0224,0224,0224,0224,0224,0224,0224,0224,0224, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
128 0224,0224,0224,0224,0224,0224,0224,0224,0224,0224,0224,0224,0224,0224,0224, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
129 0224,0224,0224,0224,0224,0224,0224,0224,0224,0224,0224,0224,0224,0224,0224, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
130 0224,0224,0224,0224,0224,0224,0224,0224,0224,0224,0224,0224,0224,0223,0223, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
131 0223,0223,0223,0223,0223,0223,0223,0223,0223,0223,0223,0223,0223,0223,0223, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
132 0223,0223,0223,0223,0223,0223,0223,0223,0223,0223,0223,0223,0223,0223,0223, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
133 0223,0223,0223,0223,0223,0223,0223,0223,0223,0223,0223,0223,0223,0223,0223, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
134 0223,0223,0223,0223,0223,0223,0223,0223,0223,0223,0223,0223,0223,0223,0223, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
135 0223,0223,0222,0222,0222,0222,0222,0222,0222,0222,0222,0222,0222,0222,0222, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
136 0222,0222,0222,0222,0222,0222,0222,0222,0222,0222,0222,0222,0222,0222,0222, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
137 0222,0222,0222,0222,0222,0222,0222,0222,0222,0222,0222,0222,0222,0222,0222, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
138 0222,0222,0222,0222,0222,0222,0222,0222,0222,0222,0222,0222,0222,0222,0222, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
139 0222,0222,0222,0222,0222,0222,0221,0221,0221,0221,0221,0221,0221,0221,0221, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
140 0221,0221,0221,0221,0221,0221,0221,0221,0221,0221,0221,0221,0221,0221,0221, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
141 0221,0221,0221,0221,0221,0221,0221,0221,0221,0221,0221,0221,0221,0221,0221, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
142 0221,0221,0221,0221,0221,0221,0221,0221,0221,0221,0221,0221,0221,0221,0221, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
143 0221,0221,0221,0221,0221,0221,0221,0221,0221,0221,0221,0220,0220,0220,0220, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
144 0220,0220,0220,0220,0220,0220,0220,0220,0220,0220,0220,0220,0220,0220,0220, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
145 0220,0220,0220,0220,0220,0220,0220,0220,0220,0220,0220,0220,0220,0220,0220, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
146 0220,0220,0220,0220,0220,0220,0220,0220,0220,0220,0220,0220,0220,0220,0220, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
147 0220,0220,0220,0220,0220,0220,0220,0220,0220,0220,0220,0220,0220,0220,0220, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
148 0217,0217,0217,0217,0217,0217,0217,0217,0217,0217,0217,0217,0217,0217,0217, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
149 0217,0217,0217,0217,0217,0217,0217,0217,0217,0217,0217,0217,0217,0217,0217, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
150 0217,0217,0217,0217,0217,0217,0217,0217,0217,0217,0217,0217,0217,0217,0217, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
151 0217,0217,0217,0217,0217,0217,0217,0217,0217,0217,0217,0217,0217,0217,0217, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
152 0217,0217,0217,0217,0217,0217,0217,0217,0217,0217,0217,0217,0217,0217,0217, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
153 0217,0217,0217,0217,0217,0217,0217,0217,0217,0217,0217,0217,0217,0217,0217, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
154 0217,0217,0217,0217,0217,0217,0217,0217,0217,0217,0217,0217,0217,0217,0217, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
155 0217,0217,0217,0217,0217,0217,0217,0217,0217,0217,0217,0217,0217,0217,0217, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
156 0217,0217,0217,0217,0217,0217,0217,0217,0217,0216,0216,0216,0216,0216,0216, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
157 0216,0216,0216,0216,0216,0216,0216,0216,0216,0216,0216,0216,0216,0216,0216, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
158 0216,0216,0216,0216,0216,0216,0216,0216,0216,0216,0216,0216,0216,0216,0216, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
159 0216,0216,0216,0216,0216,0216,0216,0216,0216,0216,0216,0216,0216,0216,0216, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
160 0216,0216,0216,0216,0216,0216,0216,0216,0216,0216,0216,0216,0216,0216,0216, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
161 0216,0216,0216,0216,0216,0216,0216,0216,0216,0216,0216,0216,0216,0216,0216, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
162 0216,0216,0216,0216,0216,0216,0216,0216,0216,0216,0216,0216,0216,0216,0216, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
163 0216,0216,0216,0216,0216,0216,0216,0216,0216,0216,0216,0216,0216,0216,0216, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
164 0216,0216,0216,0216,0216,0216,0216,0216,0216,0216,0216,0216,0216,0216,0216, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
165 0216,0216,0215,0215,0215,0215,0215,0215,0215,0215,0215,0215,0215,0215,0215, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
166 0215,0215,0215,0215,0215,0215,0215,0215,0215,0215,0215,0215,0215,0215,0215, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
167 0215,0215,0215,0215,0215,0215,0215,0215,0215,0215,0215,0215,0215,0215,0215, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
168 0215,0215,0215,0215,0215,0215,0215,0215,0215,0215,0215,0215,0215,0215,0215, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
169 0215,0215,0215,0215,0215,0215,0215,0215,0215,0215,0215,0215,0215,0215,0215, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
170 0215,0215,0215,0215,0215,0215,0215,0215,0215,0215,0215,0215,0215,0215,0215, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
171 0215,0215,0215,0215,0215,0215,0215,0215,0215,0215,0215,0215,0215,0215,0215, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
172 0215,0215,0215,0215,0215,0215,0215,0215,0215,0215,0215,0215,0215,0215,0215, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
173 0215,0215,0215,0215,0215,0215,0215,0215,0215,0215,0215,0214,0214,0214,0214, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
174 0214,0214,0214,0214,0214,0214,0214,0214,0214,0214,0214,0214,0214,0214,0214, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
175 0214,0214,0214,0214,0214,0214,0214,0214,0214,0214,0214,0214,0214,0214,0214, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
176 0214,0214,0214,0214,0214,0214,0214,0214,0214,0214,0214,0214,0214,0214,0214, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
177 0214,0214,0214,0214,0214,0214,0214,0214,0214,0214,0214,0214,0214,0214,0214, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
178 0214,0214,0214,0214,0214,0214,0214,0214,0214,0214,0214,0214,0214,0214,0214, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
179 0214,0214,0214,0214,0214,0214,0214,0214,0214,0214,0214,0214,0214,0214,0214, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
180 0214,0214,0214,0214,0214,0214,0214,0214,0214,0214,0214,0214,0214,0214,0214, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
181 0214,0214,0214,0214,0214,0214,0214,0214,0214,0214,0214,0214,0214,0214,0214, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
182 0214,0214,0214,0214,0213,0213,0213,0213,0213,0213,0213,0213,0213,0213,0213, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
183 0213,0213,0213,0213,0213,0213,0213,0213,0213,0213,0213,0213,0213,0213,0213, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
184 0213,0213,0213,0213,0213,0213,0213,0213,0213,0213,0213,0213,0213,0213,0213, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
185 0213,0213,0213,0213,0213,0213,0213,0213,0213,0213,0213,0213,0213,0213,0213, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
186 0213,0213,0213,0213,0213,0213,0213,0213,0213,0213,0213,0213,0213,0213,0213, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
187 0213,0213,0213,0213,0213,0213,0213,0213,0213,0213,0213,0213,0213,0213,0213, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
188 0213,0213,0213,0213,0213,0213,0213,0213,0213,0213,0213,0213,0213,0213,0213, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
189 0213,0213,0213,0213,0213,0213,0213,0213,0213,0213,0213,0213,0213,0213,0213, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
190 0213,0213,0213,0213,0213,0213,0213,0213,0213,0213,0213,0213,0213,0212,0212, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
191 0212,0212,0212,0212,0212,0212,0212,0212,0212,0212,0212,0212,0212,0212,0212, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
192 0212,0212,0212,0212,0212,0212,0212,0212,0212,0212,0212,0212,0212,0212,0212, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
193 0212,0212,0212,0212,0212,0212,0212,0212,0212,0212,0212,0212,0212,0212,0212, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
194 0212,0212,0212,0212,0212,0212,0212,0212,0212,0212,0212,0212,0212,0212,0212, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
195 0212,0212,0212,0212,0212,0212,0212,0212,0212,0212,0212,0212,0212,0212,0212, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
196 0212,0212,0212,0212,0212,0212,0212,0212,0212,0212,0212,0212,0212,0212,0212, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
197 0212,0212,0212,0212,0212,0212,0212,0212,0212,0212,0212,0212,0212,0212,0212, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
198 0212,0212,0212,0212,0212,0212,0212,0212,0212,0212,0212,0212,0212,0212,0212, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
199 0212,0212,0212,0212,0212,0212,0211,0211,0211,0211,0211,0211,0211,0211,0211, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
200 0211,0211,0211,0211,0211,0211,0211,0211,0211,0211,0211,0211,0211,0211,0211, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
201 0211,0211,0211,0211,0211,0211,0211,0211,0211,0211,0211,0211,0211,0211,0211, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
202 0211,0211,0211,0211,0211,0211,0211,0211,0211,0211,0211,0211,0211,0211,0211, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
203 0211,0211,0211,0211,0211,0211,0211,0211,0211,0211,0211,0211,0211,0211,0211, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
204 0211,0211,0211,0211,0211,0211,0211,0211,0211,0211,0211,0211,0211,0211,0211, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
205 0211,0211,0211,0211,0211,0211,0211,0211,0211,0211,0211,0211,0211,0211,0211, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
206 0211,0211,0211,0211,0211,0211,0211,0211,0211,0211,0211,0211,0211,0211,0211, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
207 0211,0211,0211,0211,0211,0211,0211,0211,0211,0211,0211,0211,0211,0211,0211, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
208 0210,0210,0210,0210,0210,0210,0210,0210,0210,0210,0210,0210,0210,0210,0210, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
209 0210,0210,0210,0210,0210,0210,0210,0210,0210,0210,0210,0210,0210,0210,0210, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
210 0210,0210,0210,0210,0210,0210,0210,0210,0210,0210,0210,0210,0210,0210,0210, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
211 0210,0210,0210,0210,0210,0210,0210,0210,0210,0210,0210,0210,0210,0210,0210, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
212 0210,0210,0210,0210,0210,0210,0210,0210,0210,0210,0210,0210,0210,0210,0210, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
213 0210,0210,0210,0210,0210,0210,0210,0210,0210,0210,0210,0210,0210,0210,0210, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
214 0210,0210,0210,0210,0210,0210,0210,0210,0210,0210,0210,0210,0210,0210,0210, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
215 0210,0210,0210,0210,0210,0210,0210,0210,0210,0210,0210,0210,0210,0210,0210, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
216 0210,0210,0210,0210,0210,0210,0210,0210,0207,0207,0207,0207,0207,0207,0207, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
217 0207,0207,0207,0207,0207,0207,0207,0207,0207,0207,0207,0207,0207,0207,0207, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
218 0207,0207,0207,0207,0207,0207,0207,0207,0207,0207,0207,0207,0207,0207,0207, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
219 0207,0207,0207,0207,0207,0207,0207,0207,0207,0207,0207,0207,0207,0207,0207, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
220 0207,0207,0207,0207,0207,0207,0207,0207,0207,0207,0207,0207,0207,0207,0207, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
221 0207,0207,0207,0207,0207,0207,0207,0207,0207,0207,0207,0207,0207,0207,0207, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
222 0207,0207,0207,0207,0207,0207,0207,0207,0207,0207,0207,0207,0207,0207,0207, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
223 0207,0207,0207,0207,0207,0207,0207,0207,0207,0207,0207,0207,0207,0207,0207, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
224 0207,0207,0207,0207,0207,0207,0207,0207,0207,0207,0207,0207,0207,0207,0207, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
225 0207,0207,0206,0206,0206,0206,0206,0206,0206,0206,0206,0206,0206,0206,0206, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
226 0206,0206,0206,0206,0206,0206,0206,0206,0206,0206,0206,0206,0206,0206,0206, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
227 0206,0206,0206,0206,0206,0206,0206,0206,0206,0206,0206,0206,0206,0206,0206, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
228 0206,0206,0206,0206,0206,0206,0206,0206,0206,0206,0206,0206,0206,0206,0206, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
229 0206,0206,0206,0206,0206,0206,0206,0206,0206,0206,0206,0206,0206,0206,0206, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
230 0206,0206,0206,0206,0206,0206,0206,0206,0206,0206,0206,0206,0206,0206,0206, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
231 0206,0206,0206,0206,0206,0206,0206,0206,0206,0206,0206,0206,0206,0206,0206, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
232 0206,0206,0206,0206,0206,0206,0206,0206,0206,0206,0206,0206,0206,0206,0206, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
233 0206,0206,0206,0206,0206,0206,0206,0206,0206,0206,0205,0205,0205,0205,0205, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
234 0205,0205,0205,0205,0205,0205,0205,0205,0205,0205,0205,0205,0205,0205,0205, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
235 0205,0205,0205,0205,0205,0205,0205,0205,0205,0205,0205,0205,0205,0205,0205, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
236 0205,0205,0205,0205,0205,0205,0205,0205,0205,0205,0205,0205,0205,0205,0205, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
237 0205,0205,0205,0205,0205,0205,0205,0205,0205,0205,0205,0205,0205,0205,0205, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
238 0205,0205,0205,0205,0205,0205,0205,0205,0205,0205,0205,0205,0205,0205,0205, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
239 0205,0205,0205,0205,0205,0205,0205,0205,0205,0205,0205,0205,0205,0205,0205, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
240 0205,0205,0205,0205,0205,0205,0205,0205,0205,0205,0205,0205,0205,0205,0205, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
241 0205,0205,0205,0205,0205,0205,0205,0205,0205,0205,0205,0205,0205,0205,0205, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
242 0205,0205,0205,0205,0204,0204,0204,0204,0204,0204,0204,0204,0204,0204,0204, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
243 0204,0204,0204,0204,0204,0204,0204,0204,0204,0204,0204,0204,0204,0204,0204, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
244 0204,0204,0204,0204,0204,0204,0204,0204,0204,0204,0204,0204,0204,0204,0204, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
245 0204,0204,0204,0204,0204,0204,0204,0204,0204,0204,0204,0204,0204,0204,0204, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
246 0204,0204,0204,0204,0204,0204,0204,0204,0204,0204,0204,0204,0204,0204,0204, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
247 0204,0204,0204,0204,0204,0204,0204,0204,0204,0204,0204,0204,0204,0204,0204, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
248 0204,0204,0204,0204,0204,0204,0204,0204,0204,0204,0204,0204,0204,0204,0204, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
249 0204,0204,0204,0204,0204,0204,0204,0204,0204,0204,0204,0204,0204,0204,0204, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
250 0204,0204,0204,0204,0204,0204,0204,0204,0204,0204,0204,0204,0203,0203,0203, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
251 0203,0203,0203,0203,0203,0203,0203,0203,0203,0203,0203,0203,0203,0203,0203, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
252 0203,0203,0203,0203,0203,0203,0203,0203,0203,0203,0203,0203,0203,0203,0203, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
253 0203,0203,0203,0203,0203,0203,0203,0203,0203,0203,0203,0203,0203,0203,0203, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
254 0203,0203,0203,0203,0203,0203,0203,0203,0203,0203,0203,0203,0203,0203,0203, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
255 0203,0203,0203,0203,0203,0203,0203,0203,0203,0203,0203,0203,0203,0203,0203, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
256 0203,0203,0203,0203,0203,0203,0203,0203,0203,0203,0203,0203,0203,0203,0203, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
257 0203,0203,0203,0203,0203,0203,0203,0203,0203,0203,0203,0203,0203,0203,0203, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
258 0203,0203,0203,0203,0203,0203,0203,0203,0203,0203,0203,0203,0203,0203,0203, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
259 0203,0203,0203,0203,0203,0203,0202,0202,0202,0202,0202,0202,0202,0202,0202, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
260 0202,0202,0202,0202,0202,0202,0202,0202,0202,0202,0202,0202,0202,0202,0202, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
261 0202,0202,0202,0202,0202,0202,0202,0202,0202,0202,0202,0202,0202,0202,0202, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
262 0202,0202,0202,0202,0202,0202,0202,0202,0202,0202,0202,0202,0202,0202,0202, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
263 0202,0202,0202,0202,0202,0202,0202,0202,0202,0202,0202,0202,0202,0202,0202, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
264 0202,0202,0202,0202,0202,0202,0202,0202,0202,0202,0202,0202,0202,0202,0202, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
265 0202,0202,0202,0202,0202,0202,0202,0202,0202,0202,0202,0202,0202,0202,0202, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
266 0202,0202,0202,0202,0202,0202,0202,0202,0202,0202,0202,0202,0202,0202,0202, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
267 0202,0202,0202,0202,0202,0202,0202,0202,0202,0202,0202,0202,0202,0202,0201, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
268 0201,0201,0201,0201,0201,0201,0201,0201,0201,0201,0201,0201,0201,0201,0201, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
269 0201,0201,0201,0201,0201,0201,0201,0201,0201,0201,0201,0201,0201,0201,0201, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
270 0201,0201,0201,0201,0201,0201,0201,0201,0201,0201,0201,0201,0201,0201,0201, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
271 0201,0201,0201,0201,0201,0201,0201,0201,0201,0201,0201,0201,0201,0201,0201, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
272 0201,0201,0201,0201,0201,0201,0201,0201,0201,0201,0201,0201,0201,0201,0201, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
273 0201,0201,0201,0201,0201,0201,0201,0201,0201,0201,0201,0201,0201,0201,0201, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
274 0201,0201,0201,0201,0201,0201,0201,0201,0201,0201,0201,0201,0201,0201,0201, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
275 0201,0201,0201,0201,0201,0201,0201,0201,0201,0201,0201,0201,0201,0201,0201, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
276 0201,0201,0201,0201,0201,0201,0201,0201,0200,0200,0200,0200,0200,0200,0200, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
277 0200,0200,0200,0200,0200,0200,0200,0200,0200,0200,0200,0200,0200,0200,0200, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
278 0200,0200,0200,0200,0200,0200,0200,0200,0200,0200,0200,0200,0200,0200,0200, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
279 0200,0200,0200,0200,0200,0200,0200,0200,0200,0200,0200,0200,0200,0200,0200, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
280 0200,0200,0200,0200,0200,0200,0200,0200,0200,0200,0200,0200,0200,0200,0200, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
281 0200,0200,0200,0200,0200,0200,0200,0200,0200,0200,0200,0200,0200,0200,0200, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
282 0200,0200,0200,0200,0200,0200,0200,0200,0200,0200,0200,0200,0200,0200,0200, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
283 0200,0200,0200,0200,0200,0200,0200,0200,0200,0200,0200,0200,0200,0200,0200, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
284 0200,0200,0200,0200,0200,0200,0200,0200,0200,0200,0200,0200,0200,0200,0200, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
285 0200,0000,0000,0000,0000,0000,0000,0000,0000,0000,0000,0000,0000,0000,0000, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
286 0000,0000,0000,0000,0000,0000,0000,0000,0000,0000,0000,0000,0000,0000,0000, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
287 0000,0000,0000,0000,0000,0000,0000,0000,0000,0000,0000,0000,0000,0000,0000, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
288 0000,0000,0000,0000,0000,0000,0000,0000,0000,0000,0000,0000,0000,0000,0000, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
289 0000,0000,0000,0000,0000,0000,0000,0000,0000,0000,0000,0000,0000,0000,0000, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
290 0000,0000,0000,0000,0000,0000,0000,0000,0000,0000,0000,0000,0000,0000,0000, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
291 0000,0000,0000,0000,0000,0000,0000,0000,0000,0000,0000,0000,0000,0000,0000, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
292 0000,0000,0000,0000,0000,0000,0000,0000,0000,0000,0000,0000,0000,0000,0000, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
293 0000,0000,0000,0000,0000,0000,0000,0000,0000,0001,0001,0001,0001,0001,0001, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
294 0001,0001,0001,0001,0001,0001,0001,0001,0001,0001,0001,0001,0001,0001,0001, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
295 0001,0001,0001,0001,0001,0001,0001,0001,0001,0001,0001,0001,0001,0001,0001, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
296 0001,0001,0001,0001,0001,0001,0001,0001,0001,0001,0001,0001,0001,0001,0001, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
297 0001,0001,0001,0001,0001,0001,0001,0001,0001,0001,0001,0001,0001,0001,0001, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
298 0001,0001,0001,0001,0001,0001,0001,0001,0001,0001,0001,0001,0001,0001,0001, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
299 0001,0001,0001,0001,0001,0001,0001,0001,0001,0001,0001,0001,0001,0001,0001, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
300 0001,0001,0001,0001,0001,0001,0001,0001,0001,0001,0001,0001,0001,0001,0001, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
301 0001,0001,0001,0001,0001,0001,0001,0001,0001,0001,0001,0001,0001,0001,0001, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
302 0001,0001,0001,0002,0002,0002,0002,0002,0002,0002,0002,0002,0002,0002,0002, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
303 0002,0002,0002,0002,0002,0002,0002,0002,0002,0002,0002,0002,0002,0002,0002, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
304 0002,0002,0002,0002,0002,0002,0002,0002,0002,0002,0002,0002,0002,0002,0002, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
305 0002,0002,0002,0002,0002,0002,0002,0002,0002,0002,0002,0002,0002,0002,0002, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
306 0002,0002,0002,0002,0002,0002,0002,0002,0002,0002,0002,0002,0002,0002,0002, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
307 0002,0002,0002,0002,0002,0002,0002,0002,0002,0002,0002,0002,0002,0002,0002, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
308 0002,0002,0002,0002,0002,0002,0002,0002,0002,0002,0002,0002,0002,0002,0002, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
309 0002,0002,0002,0002,0002,0002,0002,0002,0002,0002,0002,0002,0002,0002,0002, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
310 0002,0002,0002,0002,0002,0002,0002,0002,0002,0002,0002,0003,0003,0003,0003, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
311 0003,0003,0003,0003,0003,0003,0003,0003,0003,0003,0003,0003,0003,0003,0003, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
312 0003,0003,0003,0003,0003,0003,0003,0003,0003,0003,0003,0003,0003,0003,0003, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
313 0003,0003,0003,0003,0003,0003,0003,0003,0003,0003,0003,0003,0003,0003,0003, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
314 0003,0003,0003,0003,0003,0003,0003,0003,0003,0003,0003,0003,0003,0003,0003, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
315 0003,0003,0003,0003,0003,0003,0003,0003,0003,0003,0003,0003,0003,0003,0003, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
316 0003,0003,0003,0003,0003,0003,0003,0003,0003,0003,0003,0003,0003,0003,0003, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
317 0003,0003,0003,0003,0003,0003,0003,0003,0003,0003,0003,0003,0003,0003,0003, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
318 0003,0003,0003,0003,0003,0003,0003,0003,0003,0003,0003,0003,0003,0003,0003, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
319 0003,0003,0003,0003,0003,0004,0004,0004,0004,0004,0004,0004,0004,0004,0004, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
320 0004,0004,0004,0004,0004,0004,0004,0004,0004,0004,0004,0004,0004,0004,0004, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
321 0004,0004,0004,0004,0004,0004,0004,0004,0004,0004,0004,0004,0004,0004,0004, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
322 0004,0004,0004,0004,0004,0004,0004,0004,0004,0004,0004,0004,0004,0004,0004, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
323 0004,0004,0004,0004,0004,0004,0004,0004,0004,0004,0004,0004,0004,0004,0004, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
324 0004,0004,0004,0004,0004,0004,0004,0004,0004,0004,0004,0004,0004,0004,0004, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
325 0004,0004,0004,0004,0004,0004,0004,0004,0004,0004,0004,0004,0004,0004,0004, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
326 0004,0004,0004,0004,0004,0004,0004,0004,0004,0004,0004,0004,0004,0004,0004, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
327 0004,0004,0004,0004,0004,0004,0004,0004,0004,0004,0004,0004,0004,0005,0005, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
328 0005,0005,0005,0005,0005,0005,0005,0005,0005,0005,0005,0005,0005,0005,0005, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
329 0005,0005,0005,0005,0005,0005,0005,0005,0005,0005,0005,0005,0005,0005,0005, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
330 0005,0005,0005,0005,0005,0005,0005,0005,0005,0005,0005,0005,0005,0005,0005, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
331 0005,0005,0005,0005,0005,0005,0005,0005,0005,0005,0005,0005,0005,0005,0005, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
332 0005,0005,0005,0005,0005,0005,0005,0005,0005,0005,0005,0005,0005,0005,0005, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
333 0005,0005,0005,0005,0005,0005,0005,0005,0005,0005,0005,0005,0005,0005,0005, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
334 0005,0005,0005,0005,0005,0005,0005,0005,0005,0005,0005,0005,0005,0005,0005, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
335 0005,0005,0005,0005,0005,0005,0005,0005,0005,0005,0005,0005,0005,0005,0005, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
336 0005,0005,0005,0005,0005,0005,0005,0006,0006,0006,0006,0006,0006,0006,0006, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
337 0006,0006,0006,0006,0006,0006,0006,0006,0006,0006,0006,0006,0006,0006,0006, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
338 0006,0006,0006,0006,0006,0006,0006,0006,0006,0006,0006,0006,0006,0006,0006, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
339 0006,0006,0006,0006,0006,0006,0006,0006,0006,0006,0006,0006,0006,0006,0006, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
340 0006,0006,0006,0006,0006,0006,0006,0006,0006,0006,0006,0006,0006,0006,0006, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
341 0006,0006,0006,0006,0006,0006,0006,0006,0006,0006,0006,0006,0006,0006,0006, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
342 0006,0006,0006,0006,0006,0006,0006,0006,0006,0006,0006,0006,0006,0006,0006, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
343 0006,0006,0006,0006,0006,0006,0006,0006,0006,0006,0006,0006,0006,0006,0006, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
344 0006,0006,0006,0006,0006,0006,0006,0006,0006,0006,0006,0006,0006,0006,0006, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
345 0007,0007,0007,0007,0007,0007,0007,0007,0007,0007,0007,0007,0007,0007,0007, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
346 0007,0007,0007,0007,0007,0007,0007,0007,0007,0007,0007,0007,0007,0007,0007, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
347 0007,0007,0007,0007,0007,0007,0007,0007,0007,0007,0007,0007,0007,0007,0007, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
348 0007,0007,0007,0007,0007,0007,0007,0007,0007,0007,0007,0007,0007,0007,0007, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
349 0007,0007,0007,0007,0007,0007,0007,0007,0007,0007,0007,0007,0007,0007,0007, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
350 0007,0007,0007,0007,0007,0007,0007,0007,0007,0007,0007,0007,0007,0007,0007, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
351 0007,0007,0007,0007,0007,0007,0007,0007,0007,0007,0007,0007,0007,0007,0007, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
352 0007,0007,0007,0007,0007,0007,0007,0007,0007,0007,0007,0007,0007,0007,0007, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
353 0007,0007,0007,0007,0007,0007,0007,0007,0007,0010,0010,0010,0010,0010,0010, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
354 0010,0010,0010,0010,0010,0010,0010,0010,0010,0010,0010,0010,0010,0010,0010, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
355 0010,0010,0010,0010,0010,0010,0010,0010,0010,0010,0010,0010,0010,0010,0010, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
356 0010,0010,0010,0010,0010,0010,0010,0010,0010,0010,0010,0010,0010,0010,0010, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
357 0010,0010,0010,0010,0010,0010,0010,0010,0010,0010,0010,0010,0010,0010,0010, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
358 0010,0010,0010,0010,0010,0010,0010,0010,0010,0010,0010,0010,0010,0010,0010, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
359 0010,0010,0010,0010,0010,0010,0010,0010,0010,0010,0010,0010,0010,0010,0010, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
360 0010,0010,0010,0010,0010,0010,0010,0010,0010,0010,0010,0010,0010,0010,0010, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
361 0010,0010,0010,0010,0010,0010,0010,0010,0010,0010,0010,0010,0010,0010,0010, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
362 0010,0010,0010,0011,0011,0011,0011,0011,0011,0011,0011,0011,0011,0011,0011, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
363 0011,0011,0011,0011,0011,0011,0011,0011,0011,0011,0011,0011,0011,0011,0011, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
364 0011,0011,0011,0011,0011,0011,0011,0011,0011,0011,0011,0011,0011,0011,0011, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
365 0011,0011,0011,0011,0011,0011,0011,0011,0011,0011,0011,0011,0011,0011,0011, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
366 0011,0011,0011,0011,0011,0011,0011,0011,0011,0011,0011,0011,0011,0011,0011, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
367 0011,0011,0011,0011,0011,0011,0011,0011,0011,0011,0011,0011,0011,0011,0011, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
368 0011,0011,0011,0011,0011,0011,0011,0011,0011,0011,0011,0011,0011,0011,0011, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
369 0011,0011,0011,0011,0011,0011,0011,0011,0011,0011,0011,0011,0011,0011,0011, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
370 0011,0011,0011,0011,0011,0011,0011,0011,0011,0011,0011,0012,0012,0012,0012, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
371 0012,0012,0012,0012,0012,0012,0012,0012,0012,0012,0012,0012,0012,0012,0012, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
372 0012,0012,0012,0012,0012,0012,0012,0012,0012,0012,0012,0012,0012,0012,0012, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
373 0012,0012,0012,0012,0012,0012,0012,0012,0012,0012,0012,0012,0012,0012,0012, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
374 0012,0012,0012,0012,0012,0012,0012,0012,0012,0012,0012,0012,0012,0012,0012, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
375 0012,0012,0012,0012,0012,0012,0012,0012,0012,0012,0012,0012,0012,0012,0012, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
376 0012,0012,0012,0012,0012,0012,0012,0012,0012,0012,0012,0012,0012,0012,0012, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
377 0012,0012,0012,0012,0012,0012,0012,0012,0012,0012,0012,0012,0012,0012,0012, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
378 0012,0012,0012,0012,0012,0012,0012,0012,0012,0012,0012,0012,0012,0012,0012, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
379 0012,0012,0012,0012,0012,0013,0013,0013,0013,0013,0013,0013,0013,0013,0013, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
380 0013,0013,0013,0013,0013,0013,0013,0013,0013,0013,0013,0013,0013,0013,0013, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
381 0013,0013,0013,0013,0013,0013,0013,0013,0013,0013,0013,0013,0013,0013,0013, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
382 0013,0013,0013,0013,0013,0013,0013,0013,0013,0013,0013,0013,0013,0013,0013, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
383 0013,0013,0013,0013,0013,0013,0013,0013,0013,0013,0013,0013,0013,0013,0013, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
384 0013,0013,0013,0013,0013,0013,0013,0013,0013,0013,0013,0013,0013,0013,0013, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
385 0013,0013,0013,0013,0013,0013,0013,0013,0013,0013,0013,0013,0013,0013,0013, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
386 0013,0013,0013,0013,0013,0013,0013,0013,0013,0013,0013,0013,0013,0013,0013, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
387 0013,0013,0013,0013,0013,0013,0013,0013,0013,0013,0013,0013,0013,0014,0014, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
388 0014,0014,0014,0014,0014,0014,0014,0014,0014,0014,0014,0014,0014,0014,0014, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
389 0014,0014,0014,0014,0014,0014,0014,0014,0014,0014,0014,0014,0014,0014,0014, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
390 0014,0014,0014,0014,0014,0014,0014,0014,0014,0014,0014,0014,0014,0014,0014, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
391 0014,0014,0014,0014,0014,0014,0014,0014,0014,0014,0014,0014,0014,0014,0014, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
392 0014,0014,0014,0014,0014,0014,0014,0014,0014,0014,0014,0014,0014,0014,0014, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
393 0014,0014,0014,0014,0014,0014,0014,0014,0014,0014,0014,0014,0014,0014,0014, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
394 0014,0014,0014,0014,0014,0014,0014,0014,0014,0014,0014,0014,0014,0014,0014, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
395 0014,0014,0014,0014,0014,0014,0014,0014,0014,0014,0014,0014,0014,0014,0014, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
396 0014,0014,0014,0014,0014,0014,0014,0015,0015,0015,0015,0015,0015,0015,0015, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
397 0015,0015,0015,0015,0015,0015,0015,0015,0015,0015,0015,0015,0015,0015,0015, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
398 0015,0015,0015,0015,0015,0015,0015,0015,0015,0015,0015,0015,0015,0015,0015, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
399 0015,0015,0015,0015,0015,0015,0015,0015,0015,0015,0015,0015,0015,0015,0015, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
400 0015,0015,0015,0015,0015,0015,0015,0015,0015,0015,0015,0015,0015,0015,0015, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
401 0015,0015,0015,0015,0015,0015,0015,0015,0015,0015,0015,0015,0015,0015,0015, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
402 0015,0015,0015,0015,0015,0015,0015,0015,0015,0015,0015,0015,0015,0015,0015, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
403 0015,0015,0015,0015,0015,0015,0015,0015,0015,0015,0015,0015,0015,0015,0015, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
404 0015,0015,0015,0015,0015,0015,0015,0015,0015,0015,0015,0015,0015,0015,0015, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
405 0016,0016,0016,0016,0016,0016,0016,0016,0016,0016,0016,0016,0016,0016,0016, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
406 0016,0016,0016,0016,0016,0016,0016,0016,0016,0016,0016,0016,0016,0016,0016, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
407 0016,0016,0016,0016,0016,0016,0016,0016,0016,0016,0016,0016,0016,0016,0016, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
408 0016,0016,0016,0016,0016,0016,0016,0016,0016,0016,0016,0016,0016,0016,0016, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
409 0016,0016,0016,0016,0016,0016,0016,0016,0016,0016,0016,0016,0016,0016,0016, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
410 0016,0016,0016,0016,0016,0016,0016,0016,0016,0016,0016,0016,0016,0016,0016, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
411 0016,0016,0016,0016,0016,0016,0016,0016,0016,0016,0016,0016,0016,0016,0016, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
412 0016,0016,0016,0016,0016,0016,0016,0016,0016,0016,0016,0016,0016,0016,0016, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
413 0016,0016,0016,0016,0016,0016,0016,0016,0016,0017,0017,0017,0017,0017,0017, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
414 0017,0017,0017,0017,0017,0017,0017,0017,0017,0017,0017,0017,0017,0017,0017, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
415 0017,0017,0017,0017,0017,0017,0017,0017,0017,0017,0017,0017,0017,0017,0017, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
416 0017,0017,0017,0017,0017,0017,0017,0017,0017,0017,0017,0017,0017,0017,0017, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
417 0017,0017,0017,0017,0017,0017,0017,0017,0017,0017,0017,0017,0017,0017,0017, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
418 0017,0017,0017,0017,0017,0017,0017,0017,0017,0017,0017,0017,0017,0017,0017, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
419 0017,0017,0017,0017,0017,0017,0017,0017,0017,0017,0017,0017,0017,0017,0017, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
420 0017,0017,0017,0017,0017,0017,0017,0017,0017,0017,0017,0017,0017,0017,0017, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
421 0017,0017,0017,0017,0017,0017,0017,0017,0017,0017,0017,0017,0017,0017,0017, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
422 0017,0017,0020,0020,0020,0020,0020,0020,0020,0020,0020,0020,0020,0020,0020, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
423 0020,0020,0020,0020,0020,0020,0020,0020,0020,0020,0020,0020,0020,0020,0020, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
424 0020,0020,0020,0020,0020,0020,0020,0020,0020,0020,0020,0020,0020,0020,0020, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
425 0020,0020,0020,0020,0020,0020,0020,0020,0020,0020,0020,0020,0020,0020,0020, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
426 0020,0020,0020,0020,0020,0020,0021,0021,0021,0021,0021,0021,0021,0021,0021, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
427 0021,0021,0021,0021,0021,0021,0021,0021,0021,0021,0021,0021,0021,0021,0021, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
428 0021,0021,0021,0021,0021,0021,0021,0021,0021,0021,0021,0021,0021,0021,0021, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
429 0021,0021,0021,0021,0021,0021,0021,0021,0021,0021,0021,0021,0021,0021,0021, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
430 0021,0021,0021,0021,0021,0021,0021,0021,0021,0021,0021,0022,0022,0022,0022, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
431 0022,0022,0022,0022,0022,0022,0022,0022,0022,0022,0022,0022,0022,0022,0022, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
432 0022,0022,0022,0022,0022,0022,0022,0022,0022,0022,0022,0022,0022,0022,0022, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
433 0022,0022,0022,0022,0022,0022,0022,0022,0022,0022,0022,0022,0022,0022,0022, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
434 0022,0022,0022,0022,0022,0022,0022,0022,0022,0022,0022,0022,0022,0022,0022, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
435 0023,0023,0023,0023,0023,0023,0023,0023,0023,0023,0023,0023,0023,0023,0023, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
436 0023,0023,0023,0023,0023,0023,0023,0023,0023,0023,0023,0023,0023,0023,0023, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
437 0023,0023,0023,0023,0023,0023,0023,0023,0023,0023,0023,0023,0023,0023,0023, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
438 0023,0023,0023,0023,0023,0023,0023,0023,0023,0023,0023,0023,0023,0023,0023, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
439 0023,0023,0023,0023,0024,0024,0024,0024,0024,0024,0024,0024,0024,0024,0024, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
440 0024,0024,0024,0024,0024,0024,0024,0024,0024,0024,0024,0024,0024,0024,0024, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
441 0024,0024,0024,0024,0024,0024,0024,0024,0024,0024,0024,0024,0024,0024,0024, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
442 0024,0024,0024,0024,0024,0024,0024,0024,0024,0024,0024,0024,0024,0024,0024, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
443 0024,0024,0024,0024,0024,0024,0024,0024,0024,0025,0025,0025,0025,0025,0025, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
444 0025,0025,0025,0025,0025,0025,0025,0025,0025,0025,0025,0025,0025,0025,0025, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
445 0025,0025,0025,0025,0025,0025,0025,0025,0025,0025,0025,0025,0025,0025,0025, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
446 0025,0025,0025,0025,0025,0025,0025,0025,0025,0025,0025,0025,0025,0025,0025, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
447 0025,0025,0025,0025,0025,0025,0025,0025,0025,0025,0025,0025,0025,0026,0026, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
448 0026,0026,0026,0026,0026,0026,0026,0026,0026,0026,0026,0026,0026,0026,0026, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
449 0026,0026,0026,0026,0026,0026,0026,0026,0026,0026,0026,0026,0026,0026,0026, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
450 0026,0026,0026,0026,0026,0026,0026,0026,0026,0026,0026,0026,0026,0026,0026, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
451 0026,0026,0026,0026,0026,0026,0026,0026,0026,0026,0026,0026,0026,0026,0026, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
452 0026,0026,0027,0027,0027,0027,0027,0027,0027,0027,0027,0027,0027,0027,0027, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
453 0027,0027,0027,0027,0027,0027,0027,0027,0027,0027,0027,0027,0027,0027,0027, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
454 0027,0027,0027,0027,0027,0027,0027,0027,0027,0027,0027,0027,0027,0027,0027, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
455 0027,0027,0027,0027,0027,0027,0027,0027,0027,0027,0027,0027,0027,0027,0027, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
456 0027,0027,0027,0027,0027,0027,0030,0030,0030,0030,0030,0030,0030,0030,0030, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
457 0030,0030,0030,0030,0030,0030,0030,0030,0030,0030,0030,0030,0030,0030,0030, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
458 0030,0030,0030,0030,0030,0030,0030,0030,0030,0030,0030,0030,0030,0030,0030, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
459 0030,0030,0030,0030,0030,0030,0030,0030,0030,0030,0030,0030,0030,0030,0030, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
460 0030,0030,0030,0030,0030,0030,0030,0030,0030,0030,0030,0031,0031,0031,0031, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
461 0031,0031,0031,0031,0031,0031,0031,0031,0031,0031,0031,0031,0031,0031,0031, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
462 0031,0031,0031,0031,0031,0031,0031,0031,0031,0031,0031,0031,0031,0031,0031, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
463 0031,0031,0031,0031,0031,0031,0031,0031,0031,0031,0031,0031,0031,0031,0031, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
464 0031,0031,0031,0031,0031,0031,0031,0031,0031,0031,0031,0031,0031,0031,0031, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
465 0032,0032,0032,0032,0032,0032,0032,0032,0032,0032,0032,0032,0032,0032,0032, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
466 0032,0032,0032,0032,0032,0032,0032,0032,0032,0032,0032,0032,0032,0032,0032, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
467 0032,0032,0032,0032,0032,0032,0032,0032,0032,0032,0032,0032,0032,0032,0032, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
468 0032,0032,0032,0032,0032,0032,0032,0032,0032,0032,0032,0032,0032,0032,0032, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
469 0032,0032,0032,0032,0033,0033,0033,0033,0033,0033,0033,0033,0033,0033,0033, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
470 0033,0033,0033,0033,0033,0033,0033,0033,0033,0033,0033,0033,0033,0033,0033, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
471 0033,0033,0033,0033,0033,0033,0033,0033,0033,0033,0033,0033,0033,0033,0033, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
472 0033,0033,0033,0033,0033,0033,0033,0033,0033,0033,0033,0033,0033,0033,0033, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
473 0033,0033,0033,0033,0033,0033,0033,0033,0034,0034,0034,0034,0034,0034,0034, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
474 0034,0034,0034,0034,0034,0034,0034,0034,0034,0034,0034,0034,0034,0034,0034, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
475 0034,0034,0034,0034,0034,0034,0034,0034,0034,0034,0034,0034,0034,0034,0034, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
476 0034,0034,0034,0034,0034,0034,0034,0034,0034,0034,0034,0034,0034,0034,0034, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
477 0034,0034,0034,0034,0034,0034,0034,0034,0034,0034,0034,0034,0034,0035,0035, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
478 0035,0035,0035,0035,0035,0035,0035,0035,0035,0035,0035,0035,0035,0035,0035, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
479 0035,0035,0035,0035,0035,0035,0035,0035,0035,0035,0035,0035,0035,0035,0035, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
480 0035,0035,0035,0035,0035,0035,0035,0035,0035,0035,0035,0035,0035,0035,0035, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
481 0035,0035,0035,0035,0035,0035,0035,0035,0035,0035,0035,0035,0035,0035,0035, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
482 0035,0035,0036,0036,0036,0036,0036,0036,0036,0036,0036,0036,0036,0036,0036, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
483 0036,0036,0036,0036,0036,0036,0036,0036,0036,0036,0036,0036,0036,0036,0036, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
484 0036,0036,0036,0036,0036,0036,0036,0036,0036,0036,0036,0036,0036,0036,0036, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
485 0036,0036,0036,0036,0036,0036,0036,0036,0036,0036,0036,0036,0036,0036,0036, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
486 0036,0036,0036,0036,0036,0036,0037,0037,0037,0037,0037,0037,0037,0037,0037, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
487 0037,0037,0037,0037,0037,0037,0037,0037,0037,0037,0037,0037,0037,0037,0037, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
488 0037,0037,0037,0037,0037,0037,0037,0037,0037,0037,0037,0037,0037,0037,0037, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
489 0037,0037,0037,0037,0037,0037,0037,0037,0037,0037,0037,0037,0037,0037,0037, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
490 0037,0037,0037,0037,0037,0037,0037,0037,0037,0037,0040,0040,0040,0040,0040, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
491 0040,0040,0040,0040,0040,0040,0040,0040,0040,0040,0040,0040,0040,0040,0040, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
492 0040,0040,0040,0040,0040,0040,0040,0040,0040,0040,0040,0040,0040,0041,0041, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
493 0041,0041,0041,0041,0041,0041,0041,0041,0041,0041,0041,0041,0041,0041,0041, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
494 0041,0041,0041,0041,0041,0041,0041,0041,0041,0041,0041,0041,0041,0041,0041, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
495 0042,0042,0042,0042,0042,0042,0042,0042,0042,0042,0042,0042,0042,0042,0042, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
496 0042,0042,0042,0042,0042,0042,0042,0042,0042,0042,0042,0042,0042,0042,0042, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
497 0042,0042,0043,0043,0043,0043,0043,0043,0043,0043,0043,0043,0043,0043,0043, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
498 0043,0043,0043,0043,0043,0043,0043,0043,0043,0043,0043,0043,0043,0043,0043, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
499 0043,0043,0043,0043,0044,0044,0044,0044,0044,0044,0044,0044,0044,0044,0044, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
500 0044,0044,0044,0044,0044,0044,0044,0044,0044,0044,0044,0044,0044,0044,0044, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
501 0044,0044,0044,0044,0044,0044,0045,0045,0045,0045,0045,0045,0045,0045,0045, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
502 0045,0045,0045,0045,0045,0045,0045,0045,0045,0045,0045,0045,0045,0045,0045, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
503 0045,0045,0045,0045,0045,0045,0045,0045,0046,0046,0046,0046,0046,0046,0046, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
504 0046,0046,0046,0046,0046,0046,0046,0046,0046,0046,0046,0046,0046,0046,0046, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
505 0046,0046,0046,0046,0046,0046,0046,0046,0046,0046,0047,0047,0047,0047,0047, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
506 0047,0047,0047,0047,0047,0047,0047,0047,0047,0047,0047,0047,0047,0047,0047, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
507 0047,0047,0047,0047,0047,0047,0047,0047,0047,0047,0047,0047,0047,0050,0050, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
508 0050,0050,0050,0050,0050,0050,0050,0050,0050,0050,0050,0050,0050,0050,0050, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
509 0050,0050,0050,0050,0050,0050,0050,0050,0050,0050,0050,0050,0050,0050,0050, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
510 0051,0051,0051,0051,0051,0051,0051,0051,0051,0051,0051,0051,0051,0051,0051, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
511 0051,0051,0051,0051,0051,0051,0051,0051,0051,0051,0051,0051,0051,0051,0051, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
512 0051,0051,0052,0052,0052,0052,0052,0052,0052,0052,0052,0052,0052,0052,0052, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
513 0052,0052,0052,0052,0052,0052,0052,0052,0052,0052,0052,0052,0052,0052,0052, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
514 0052,0052,0052,0052,0053,0053,0053,0053,0053,0053,0053,0053,0053,0053,0053, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
515 0053,0053,0053,0053,0053,0053,0053,0053,0053,0053,0053,0053,0053,0053,0053, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
516 0053,0053,0053,0053,0053,0053,0054,0054,0054,0054,0054,0054,0054,0054,0054, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
517 0054,0054,0054,0054,0054,0054,0054,0054,0054,0054,0054,0054,0054,0054,0054, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
518 0054,0054,0054,0054,0054,0054,0054,0054,0055,0055,0055,0055,0055,0055,0055, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
519 0055,0055,0055,0055,0055,0055,0055,0055,0055,0055,0055,0055,0055,0055,0055, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
520 0055,0055,0055,0055,0055,0055,0055,0055,0055,0055,0056,0056,0056,0056,0056, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
521 0056,0056,0056,0056,0056,0056,0056,0056,0056,0056,0056,0056,0056,0056,0056, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
522 0056,0056,0056,0056,0056,0056,0056,0056,0056,0056,0056,0056,0057,0057,0057, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
523 0057,0057,0057,0057,0057,0057,0057,0057,0057,0057,0057,0057,0057,0057,0057, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
524 0057,0057,0057,0057,0057,0057,0057,0057,0057,0057,0057,0057,0057,0057,0057, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
525 0060,0060,0060,0060,0060,0060,0060,0060,0060,0060,0060,0060,0060,0060,0060, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
526 0060,0061,0061,0061,0061,0061,0061,0061,0061,0061,0061,0061,0061,0061,0061, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
527 0061,0061,0062,0062,0062,0062,0062,0062,0062,0062,0062,0062,0062,0062,0062, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
528 0062,0062,0062,0063,0063,0063,0063,0063,0063,0063,0063,0063,0063,0063,0063, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
529 0063,0063,0063,0063,0064,0064,0064,0064,0064,0064,0064,0064,0064,0064,0064, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
530 0064,0064,0064,0064,0064,0065,0065,0065,0065,0065,0065,0065,0065,0065,0065, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
531 0065,0065,0065,0065,0065,0065,0066,0066,0066,0066,0066,0066,0066,0066,0066, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
532 0066,0066,0066,0066,0066,0066,0066,0067,0067,0067,0067,0067,0067,0067,0067, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
533 0067,0067,0067,0067,0067,0067,0067,0067,0070,0070,0070,0070,0070,0070,0070, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
534 0070,0070,0070,0070,0070,0070,0070,0070,0070,0071,0071,0071,0071,0071,0071, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
535 0071,0071,0071,0071,0071,0071,0071,0071,0071,0071,0072,0072,0072,0072,0072, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
536 0072,0072,0072,0072,0072,0072,0072,0072,0072,0072,0072,0073,0073,0073,0073, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
537 0073,0073,0073,0073,0073,0073,0073,0073,0073,0073,0073,0073,0074,0074,0074, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
538 0074,0074,0074,0074,0074,0074,0074,0074,0074,0074,0074,0074,0074,0075,0075, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
539 0075,0075,0075,0075,0075,0075,0075,0075,0075,0075,0075,0075,0075,0075,0075, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
540 0076,0076,0076,0076,0076,0076,0076,0076,0076,0076,0076,0076,0076,0076,0076, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
541 0076,0077,0077,0077,0077,0077,0077,0077,0077,0077,0077,0077,0077,0077,0077, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
542 0077,0077,0100,0100,0100,0100,0100,0100,0100,0100,0101,0101,0101,0101,0101, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
543 0101,0101,0101,0102,0102,0102,0102,0102,0102,0102,0102,0103,0103,0103,0103, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
544 0103,0103,0103,0103,0104,0104,0104,0104,0104,0104,0104,0104,0105,0105,0105, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
545 0105,0105,0105,0105,0105,0106,0106,0106,0106,0106,0106,0106,0106,0107,0107, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
546 0107,0107,0107,0107,0107,0107,0110,0110,0110,0110,0110,0110,0110,0110,0111, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
547 0111,0111,0111,0111,0111,0111,0111,0112,0112,0112,0112,0112,0112,0112,0112, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
548 0113,0113,0113,0113,0113,0113,0113,0113,0114,0114,0114,0114,0114,0114,0114, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
549 0114,0115,0115,0115,0115,0115,0115,0115,0115,0116,0116,0116,0116,0116,0116, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
550 0116,0116,0117,0117,0117,0117,0117,0117,0117,0117,0120,0120,0120,0120,0121, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
551 0121,0121,0121,0122,0122,0122,0122,0123,0123,0123,0123,0124,0124,0124,0124, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
552 0125,0125,0125,0125,0126,0126,0126,0126,0127,0127,0127,0127,0130,0130,0130, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
553 0130,0131,0131,0131,0131,0132,0132,0132,0132,0133,0133,0133,0133,0134,0134, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
554 0134,0134,0135,0135,0135,0135,0136,0136,0136,0136,0137,0137,0137,0137,0140, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
555 0140,0141,0141,0142,0142,0143,0143,0144,0144,0145,0145,0146,0146,0147,0147, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
556 0150,0150,0150,0151,0151,0152,0152,0153,0153,0154,0154,0155,0155,0156,0156, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
557 0157,0157,0160,0161,0162,0163,0164,0165,0166,0167,0170,0171,0172,0173,0174, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
558 0175,0176 |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
559 }; |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
560 |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
561 static uint8_t alaw_enc_table[4096] = { |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
562 213,212,215,214,209,208,211,210,221,220,223,222,217,216,219,218, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
563 197,196,199,198,193,192,195,194,205,204,207,206,201,200,203,202, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
564 245,245,244,244,247,247,246,246,241,241,240,240,243,243,242,242, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
565 253,253,252,252,255,255,254,254,249,249,248,248,251,251,250,250, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
566 229,229,229,229,228,228,228,228,231,231,231,231,230,230,230,230, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
567 225,225,225,225,224,224,224,224,227,227,227,227,226,226,226,226, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
568 237,237,237,237,236,236,236,236,239,239,239,239,238,238,238,238, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
569 233,233,233,233,232,232,232,232,235,235,235,235,234,234,234,234, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
570 149,149,149,149,149,149,149,149,148,148,148,148,148,148,148,148, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
571 151,151,151,151,151,151,151,151,150,150,150,150,150,150,150,150, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
572 145,145,145,145,145,145,145,145,144,144,144,144,144,144,144,144, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
573 147,147,147,147,147,147,147,147,146,146,146,146,146,146,146,146, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
574 157,157,157,157,157,157,157,157,156,156,156,156,156,156,156,156, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
575 159,159,159,159,159,159,159,159,158,158,158,158,158,158,158,158, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
576 153,153,153,153,153,153,153,153,152,152,152,152,152,152,152,152, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
577 155,155,155,155,155,155,155,155,154,154,154,154,154,154,154,154, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
578 133,133,133,133,133,133,133,133,133,133,133,133,133,133,133,133, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
579 132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
580 135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
581 134,134,134,134,134,134,134,134,134,134,134,134,134,134,134,134, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
582 129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
583 128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
584 131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
585 130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
586 141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
587 140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
588 143,143,143,143,143,143,143,143,143,143,143,143,143,143,143,143, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
589 142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
590 137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
591 136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
592 139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
593 138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
594 181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
595 181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
596 180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
597 180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
598 183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
599 183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
600 182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
601 182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
602 177,177,177,177,177,177,177,177,177,177,177,177,177,177,177,177, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
603 177,177,177,177,177,177,177,177,177,177,177,177,177,177,177,177, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
604 176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
605 176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
606 179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
607 179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
608 178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
609 178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
610 189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
611 189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
612 188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
613 188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
614 191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
615 191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
616 190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
617 190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
618 185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
619 185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
620 184,184,184,184,184,184,184,184,184,184,184,184,184,184,184,184, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
621 184,184,184,184,184,184,184,184,184,184,184,184,184,184,184,184, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
622 187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
623 187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
624 186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
625 186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
626 165,165,165,165,165,165,165,165,165,165,165,165,165,165,165,165, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
627 165,165,165,165,165,165,165,165,165,165,165,165,165,165,165,165, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
628 165,165,165,165,165,165,165,165,165,165,165,165,165,165,165,165, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
629 165,165,165,165,165,165,165,165,165,165,165,165,165,165,165,165, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
630 164,164,164,164,164,164,164,164,164,164,164,164,164,164,164,164, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
631 164,164,164,164,164,164,164,164,164,164,164,164,164,164,164,164, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
632 164,164,164,164,164,164,164,164,164,164,164,164,164,164,164,164, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
633 164,164,164,164,164,164,164,164,164,164,164,164,164,164,164,164, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
634 167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
635 167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
636 167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
637 167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
638 166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
639 166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
640 166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
641 166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
642 161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
643 161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
644 161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
645 161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
646 160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
647 160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
648 160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
649 160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
650 163,163,163,163,163,163,163,163,163,163,163,163,163,163,163,163, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
651 163,163,163,163,163,163,163,163,163,163,163,163,163,163,163,163, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
652 163,163,163,163,163,163,163,163,163,163,163,163,163,163,163,163, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
653 163,163,163,163,163,163,163,163,163,163,163,163,163,163,163,163, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
654 162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
655 162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
656 162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
657 162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
658 173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
659 173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
660 173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
661 173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
662 172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
663 172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
664 172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
665 172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
666 175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
667 175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
668 175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
669 175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
670 174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
671 174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
672 174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
673 174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
674 169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
675 169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
676 169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
677 169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
678 168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
679 168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
680 168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
681 168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
682 171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
683 171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
684 171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
685 171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
686 170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
687 170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
688 170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
689 170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
690 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
691 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
692 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
693 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
694 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
695 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
696 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
697 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
698 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
699 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
700 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
701 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
702 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
703 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
704 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
705 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
706 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
707 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
708 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
709 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
710 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
711 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
712 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
713 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
714 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
715 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
716 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
717 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
718 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
719 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
720 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
721 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
722 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
723 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
724 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
725 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
726 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
727 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
728 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
729 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
730 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
731 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
732 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
733 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
734 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
735 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
736 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
737 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
738 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
739 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
740 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
741 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
742 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
743 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
744 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
745 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
746 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
747 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
748 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
749 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
750 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
751 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
752 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
753 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
754 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
755 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
756 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
757 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
758 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
759 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
760 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
761 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
762 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
763 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
764 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
765 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
766 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
767 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
768 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
769 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
770 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
771 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
772 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
773 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
774 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
775 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
776 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
777 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
778 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
779 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
780 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
781 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
782 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
783 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
784 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
785 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
786 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
787 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
788 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
789 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
790 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
791 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
792 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
793 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
794 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
795 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
796 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
797 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
798 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
799 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
800 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
801 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
802 26, 26, 26, 26, 26, 26, 26, 26, 27, 27, 27, 27, 27, 27, 27, 27, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
803 24, 24, 24, 24, 24, 24, 24, 24, 25, 25, 25, 25, 25, 25, 25, 25, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
804 30, 30, 30, 30, 30, 30, 30, 30, 31, 31, 31, 31, 31, 31, 31, 31, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
805 28, 28, 28, 28, 28, 28, 28, 28, 29, 29, 29, 29, 29, 29, 29, 29, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
806 18, 18, 18, 18, 18, 18, 18, 18, 19, 19, 19, 19, 19, 19, 19, 19, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
807 16, 16, 16, 16, 16, 16, 16, 16, 17, 17, 17, 17, 17, 17, 17, 17, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
808 22, 22, 22, 22, 22, 22, 22, 22, 23, 23, 23, 23, 23, 23, 23, 23, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
809 20, 20, 20, 20, 20, 20, 20, 20, 21, 21, 21, 21, 21, 21, 21, 21, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
810 106,106,106,106,107,107,107,107,104,104,104,104,105,105,105,105, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
811 110,110,110,110,111,111,111,111,108,108,108,108,109,109,109,109, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
812 98, 98, 98, 98, 99, 99, 99, 99, 96, 96, 96, 96, 97, 97, 97, 97, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
813 102,102,102,102,103,103,103,103,100,100,100,100,101,101,101,101, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
814 122,122,123,123,120,120,121,121,126,126,127,127,124,124,125,125, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
815 114,114,115,115,112,112,113,113,118,118,119,119,116,116,117,117, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
816 74, 75, 72, 73, 78, 79, 76, 77, 66, 67, 64, 65, 70, 71, 68, 69, |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
817 90, 91, 88, 89, 94, 95, 92, 93, 82, 83, 80, 81, 86, 87, 84, 85 |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
818 }; |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
819 |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
820 void |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
821 g711_encode_frame_pcmu(src, dest) |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
822 uint16_t *src; |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
823 uint8_t *dest; |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
824 { |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
825 unsigned n; |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
826 |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
827 for (n = 0; n < SAMPLES_PER_FRAME; n++) |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
828 dest[n] = ulaw_enc_table[src[n] >> 3]; |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
829 } |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
830 |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
831 void |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
832 g711_encode_frame_pcma(src, dest) |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
833 uint16_t *src; |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
834 uint8_t *dest; |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
835 { |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
836 unsigned n; |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
837 |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
838 for (n = 0; n < SAMPLES_PER_FRAME; n++) |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
839 dest[n] = alaw_enc_table[src[n] >> 4]; |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
840 } |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
841 |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
842 void |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
843 g711_encode_frame(src, dest, mode) |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
844 uint16_t *src; |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
845 uint8_t *dest; |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
846 { |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
847 switch (mode) { |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
848 case PSTN_CODEC_PCMU: |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
849 g711_encode_frame_pcmu(src, dest); |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
850 return; |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
851 case PSTN_CODEC_PCMA: |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
852 g711_encode_frame_pcma(src, dest); |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
853 return; |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
854 } |
ca21fbf9d2ea
mgw: implement G.711 encoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
855 } |