comparison efrtest/tidsp.c @ 140:5efc377326da

gsmefr-dlcap-gsmx: EFR counterpart to gsmfr-cvt-dlcap
author Mychaela Falconia <falcon@freecalypso.org>
date Tue, 13 Dec 2022 07:14:41 +0000
parents
children
comparison
equal deleted inserted replaced
139:be57e06bed84 140:5efc377326da
1 /*
2 * The utility function implemented in this module extracts a 244-bit EFR
3 * codec frame from a 33-byte readout of Calypso DSP buffer, and presents
4 * this frame in the RTP encoding format of ETSI TS 101 318.
5 */
6
7 #include <stdint.h>
8
9 static const uint16_t efr_to_tidsp_table[244] = {
10 50, 24, 25, 37, 38, 43, 44, 26, 42, 27, 39, 40,
11 45, 51, 52, 41, 46, 28, 29, 47, 53, 77, 78, 30,
12 54, 55, 79, 56, 80, 109, 110, 111, 112, 113, 114, 115,
13 180, 181, 0, 1, 2, 3, 4, 5, 20, 31, 32, 16,
14 73, 105, 157, 81, 118, 138, 165, 82, 119, 139, 166, 83,
15 120, 140, 167, 84, 121, 141, 168, 85, 122, 186, 200, 204,
16 224, 244, 205, 225, 245, 206, 226, 246, 207, 227, 247, 208,
17 228, 248, 17, 61, 101, 153, 161, 12, 13, 22, 35, 48,
18 116, 18, 74, 106, 158, 86, 123, 142, 169, 87, 124, 143,
19 170, 88, 125, 144, 171, 89, 126, 145, 172, 90, 127, 189,
20 201, 209, 229, 249, 210, 230, 250, 211, 231, 251, 212, 232,
21 252, 213, 233, 253, 19, 62, 102, 154, 162, 6, 7, 8,
22 9, 10, 11, 21, 33, 34, 57, 75, 107, 159, 91, 128,
23 146, 173, 92, 129, 147, 174, 93, 130, 148, 175, 94, 131,
24 149, 176, 95, 132, 192, 202, 214, 234, 254, 215, 235, 255,
25 216, 236, 256, 217, 237, 257, 218, 238, 258, 59, 63, 103,
26 155, 163, 14, 15, 23, 36, 49, 117, 58, 76, 108, 160,
27 96, 133, 150, 177, 97, 134, 198, 199, 98, 135, 151, 178,
28 99, 136, 152, 179, 100, 137, 195, 203, 219, 239, 259, 220,
29 240, 260, 221, 241, 261, 222, 242, 262, 223, 243, 263, 60,
30 64, 104, 156, 164
31 };
32
33 static int
34 msb_get_bit(buf, bn)
35 uint8_t *buf;
36 {
37 int pos_byte = bn >> 3;
38 int pos_bit = 7 - (bn & 7);
39
40 return (buf[pos_byte] >> pos_bit) & 1;
41 }
42
43 static void
44 msb_set_bit(buf, bn, bit)
45 uint8_t *buf;
46 {
47 int pos_byte = bn >> 3;
48 int pos_bit = 7 - (bn & 7);
49
50 if (bit)
51 buf[pos_byte] |= (1 << pos_bit);
52 else
53 buf[pos_byte] &= ~(1 << pos_bit);
54 }
55
56 void
57 efr_tidsp_to_std(inbytes, outbytes)
58 uint8_t *inbytes, *outbytes;
59 {
60 int i, si;
61
62 outbytes[0] = 0xC0;
63 for (i = 0; i < 244; i++) {
64 si = efr_to_tidsp_table[i];
65 msb_set_bit(outbytes, i + 4, msb_get_bit(inbytes, si));
66 }
67 }