nexmon – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 /* G711atable.h
2 * Exponent table for A-law G.711 codec
3 *
4 * Wireshark - Network traffic analyzer
5 * By Gerald Combs <gerald@wireshark.org>
6 * Copyright 1998 Gerald Combs
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version 2
11 * of the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 */
22  
23 gint16 alaw_exp_table[256] = {
24 -5504, -5248, -6016, -5760, -4480, -4224, -4992, -4736,
25 -7552, -7296, -8064, -7808, -6528, -6272, -7040, -6784,
26 -2752, -2624, -3008, -2880, -2240, -2112, -2496, -2368,
27 -3776, -3648, -4032, -3904, -3264, -3136, -3520, -3392,
28 -22016,-20992,-24064,-23040,-17920,-16896,-19968,-18944,
29 -30208,-29184,-32256,-31232,-26112,-25088,-28160,-27136,
30 -11008,-10496,-12032,-11520, -8960, -8448, -9984, -9472,
31 -15104,-14592,-16128,-15616,-13056,-12544,-14080,-13568,
32 -344, -328, -376, -360, -280, -264, -312, -296,
33 -472, -456, -504, -488, -408, -392, -440, -424,
34 -88, -72, -120, -104, -24, -8, -56, -40,
35 -216, -200, -248, -232, -152, -136, -184, -168,
36 -1376, -1312, -1504, -1440, -1120, -1056, -1248, -1184,
37 -1888, -1824, -2016, -1952, -1632, -1568, -1760, -1696,
38 -688, -656, -752, -720, -560, -528, -624, -592,
39 -944, -912, -1008, -976, -816, -784, -880, -848,
40 5504, 5248, 6016, 5760, 4480, 4224, 4992, 4736,
41 7552, 7296, 8064, 7808, 6528, 6272, 7040, 6784,
42 2752, 2624, 3008, 2880, 2240, 2112, 2496, 2368,
43 3776, 3648, 4032, 3904, 3264, 3136, 3520, 3392,
44 22016, 20992, 24064, 23040, 17920, 16896, 19968, 18944,
45 30208, 29184, 32256, 31232, 26112, 25088, 28160, 27136,
46 11008, 10496, 12032, 11520, 8960, 8448, 9984, 9472,
47 15104, 14592, 16128, 15616, 13056, 12544, 14080, 13568,
48 344, 328, 376, 360, 280, 264, 312, 296,
49 472, 456, 504, 488, 408, 392, 440, 424,
50 88, 72, 120, 104, 24, 8, 56, 40,
51 216, 200, 248, 232, 152, 136, 184, 168,
52 1376, 1312, 1504, 1440, 1120, 1056, 1248, 1184,
53 1888, 1824, 2016, 1952, 1632, 1568, 1760, 1696,
54 688, 656, 752, 720, 560, 528, 624, 592,
55 944, 912, 1008, 976, 816, 784, 880, 848};
56  
57  
58 /*
59 * Editor modelines - http://www.wireshark.org/tools/modelines.html
60 *
61 * Local variables:
62 * c-basic-offset: 4
63 * tab-width: 8
64 * indent-tabs-mode: nil
65 * End:
66 *
67 * vi: set shiftwidth=4 tabstop=8 expandtab:
68 * :indentSize=4:tabSize=8:noTabs=true:
69 */