blob: afcaaa4277b7f3f7afe1d39ea3c28fa03d3f31a9 [file] [log] [blame]
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +02001#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
23#include <stdint.h>
Harald Welte6913b9a2020-05-07 23:11:50 +020024#include <osmocom/core/bits.h>
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +020025
Harald Welte2f69b892011-08-21 11:13:50 +020026/*! \defgroup trau_frame TRAU frame handling
27 * @{
28 *
29 * \file trau_frame.h
30 */
31
32/*! \brief Maximum number of C-bits in a TRAU frame:
33 * 21 for FR/EFR, 25 for AMR, 15 for OM, 15 for data, 13 for E-data, 21 idle */
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +020034#define MAX_C_BITS 25
Harald Welte2f69b892011-08-21 11:13:50 +020035/*! \brief Maximum number of D-bits in a TRAU frame:
36 * 260 for FR/EFR, 256 for AMR, 264 for OM, 288 for E-data */
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +020037#define MAX_D_BITS 288
Harald Welte2f69b892011-08-21 11:13:50 +020038/*! \brief Maximum number of T-bits in a TRAU frame for all speech frames */
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +020039#define MAX_T_BITS 4
Harald Welte2f69b892011-08-21 11:13:50 +020040/*! \brief Maximum number of S-bits in a TRAU frame for OM */
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +020041#define MAX_S_BITS 6
Harald Welte2f69b892011-08-21 11:13:50 +020042/*! \brief Maximum number of M-bits in a TRAU frame for E-data */
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +020043#define MAX_M_BITS 2
44
Harald Welte2f69b892011-08-21 11:13:50 +020045/*! \brief a decoded TRAU frame, extracted C/D/T/S/M bits */
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +020046struct decoded_trau_frame {
Harald Welte6913b9a2020-05-07 23:11:50 +020047 ubit_t c_bits[MAX_C_BITS];
48 ubit_t d_bits[MAX_D_BITS];
49 ubit_t t_bits[MAX_T_BITS];
50 ubit_t s_bits[MAX_S_BITS];
51 ubit_t m_bits[MAX_M_BITS];
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +020052};
53
54#define TRAU_FT_FR_UP 0x02 /* 0 0 0 1 0 - 3.5.1.1.1 */
55#define TRAU_FT_FR_DOWN 0x1c /* 1 1 1 0 0 - 3.5.1.1.1 */
56#define TRAU_FT_EFR 0x1a /* 1 1 0 1 0 - 3.5.1.1.1 */
57#define TRAU_FT_AMR 0x06 /* 0 0 1 1 0 - 3.5.1.2 */
Harald Welte2f182e42020-05-10 19:45:26 +020058#define TRAU_FT_OM_UP 0x05 /* 0 0 1 0 1 - 3.5.2 */
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +020059#define TRAU_FT_OM_DOWN 0x1b /* 1 1 0 1 1 - 3.5.2 */
60#define TRAU_FT_DATA_UP 0x08 /* 0 1 0 0 0 - 3.5.3 */
61#define TRAU_FT_DATA_DOWN 0x16 /* 1 0 1 1 0 - 3.5.3 */
62#define TRAU_FT_D145_SYNC 0x14 /* 1 0 1 0 0 - 3.5.3 */
63#define TRAU_FT_EDATA 0x1f /* 1 1 1 1 1 - 3.5.4 */
64#define TRAU_FT_IDLE_UP 0x10 /* 1 0 0 0 0 - 3.5.5 */
65#define TRAU_FT_IDLE_DOWN 0x0e /* 0 1 1 1 0 - 3.5.5 */
66
67
Harald Welte6913b9a2020-05-07 23:11:50 +020068int decode_trau_frame(struct decoded_trau_frame *fr, const ubit_t *trau_bits);
69int encode_trau_frame(ubit_t *trau_bits, const struct decoded_trau_frame *fr);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +020070int trau_frame_up2down(struct decoded_trau_frame *fr);
71
Harald Welte6913b9a2020-05-07 23:11:50 +020072ubit_t *trau_idle_frame(void);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +020073
Harald Welte2f69b892011-08-21 11:13:50 +020074/* }@ */
75
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +020076#endif /* _TRAU_FRAME_H */