blob: c15e24b7f017ae83d8532cacc1cbf657fb2711ad [file] [log] [blame]
Jonathan Santos03fd8d02011-05-25 13:54:02 -04001#ifndef _TRAU_FRAME_H
2#define _TRAU_FRAME_H
3/* TRAU frame handling according to GSM TS 08.60 */
4
5/* (C) 2009 by Harald Welte <laforge@gnumonks.org>
6 * All Rights Reserved
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU Affero General Public License as published by
10 * the Free Software Foundation; either version 3 of the License, or
11 * (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 Affero General Public License for more details.
17 *
18 * You should have received a copy of the GNU Affero General Public License
19 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 *
21 */
22
Jonathan Santos5a45b152011-08-17 15:33:57 -040023#include <stdint.h>
Jonathan Santos03fd8d02011-05-25 13:54:02 -040024
25/* 21 for FR/EFR, 25 for AMR, 15 for OM, 15 for data, 13 for E-data, 21 idle */
26#define MAX_C_BITS 25
27/* 260 for FR/EFR, 256 for AMR, 264 for OM, 288 for E-data */
28#define MAX_D_BITS 288
29/* for all speech frames */
30#define MAX_T_BITS 4
31/* for OM */
32#define MAX_S_BITS 6
33/* for E-data */
34#define MAX_M_BITS 2
35
36struct decoded_trau_frame {
Jonathan Santos5a45b152011-08-17 15:33:57 -040037 uint8_t c_bits[MAX_C_BITS];
38 uint8_t d_bits[MAX_D_BITS];
39 uint8_t t_bits[MAX_T_BITS];
40 uint8_t s_bits[MAX_S_BITS];
41 uint8_t m_bits[MAX_M_BITS];
Jonathan Santos03fd8d02011-05-25 13:54:02 -040042};
43
44#define TRAU_FT_FR_UP 0x02 /* 0 0 0 1 0 - 3.5.1.1.1 */
45#define TRAU_FT_FR_DOWN 0x1c /* 1 1 1 0 0 - 3.5.1.1.1 */
46#define TRAU_FT_EFR 0x1a /* 1 1 0 1 0 - 3.5.1.1.1 */
47#define TRAU_FT_AMR 0x06 /* 0 0 1 1 0 - 3.5.1.2 */
48#define TRAU_FT_OM_UP 0x07 /* 0 0 1 0 1 - 3.5.2 */
49#define TRAU_FT_OM_DOWN 0x1b /* 1 1 0 1 1 - 3.5.2 */
50#define TRAU_FT_DATA_UP 0x08 /* 0 1 0 0 0 - 3.5.3 */
51#define TRAU_FT_DATA_DOWN 0x16 /* 1 0 1 1 0 - 3.5.3 */
52#define TRAU_FT_D145_SYNC 0x14 /* 1 0 1 0 0 - 3.5.3 */
53#define TRAU_FT_EDATA 0x1f /* 1 1 1 1 1 - 3.5.4 */
54#define TRAU_FT_IDLE_UP 0x10 /* 1 0 0 0 0 - 3.5.5 */
55#define TRAU_FT_IDLE_DOWN 0x0e /* 0 1 1 1 0 - 3.5.5 */
56
57
Jonathan Santos5a45b152011-08-17 15:33:57 -040058int decode_trau_frame(struct decoded_trau_frame *fr, const uint8_t *trau_bits);
59int encode_trau_frame(uint8_t *trau_bits, const struct decoded_trau_frame *fr);
Jonathan Santos03fd8d02011-05-25 13:54:02 -040060int trau_frame_up2down(struct decoded_trau_frame *fr);
Jonathan Santos5a45b152011-08-17 15:33:57 -040061uint8_t *trau_idle_frame(void);
Jonathan Santos03fd8d02011-05-25 13:54:02 -040062
63
64#endif /* _TRAU_FRAME_H */