mirror of https://github.com/pvnis/srsRAN_4G.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
2.6 KiB
C
73 lines
2.6 KiB
C
5 years ago
|
/*
|
||
|
* Copyright 2013-2020 Software Radio Systems Limited
|
||
|
*
|
||
|
* This file is part of srsLTE.
|
||
|
*
|
||
|
* srsLTE is free software: you can redistribute it and/or modify
|
||
|
* it under the terms of the GNU Affero General Public License as
|
||
|
* published by the Free Software Foundation, either version 3 of
|
||
|
* the License, or (at your option) any later version.
|
||
|
*
|
||
|
* srsLTE is distributed in the hope that it will be useful,
|
||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
* GNU Affero General Public License for more details.
|
||
|
*
|
||
|
* A copy of the GNU Affero General Public License can be found in
|
||
|
* the LICENSE file in the top-level directory of this distribution
|
||
|
* and at http://www.gnu.org/licenses/.
|
||
|
*
|
||
11 years ago
|
*/
|
||
|
|
||
10 years ago
|
/**********************************************************************************************
|
||
|
* File: turbocoder.h
|
||
|
*
|
||
|
* Description: Turbo coder.
|
||
|
* Parallel Concatenated Convolutional Code (PCCC) with two 8-state constituent
|
||
|
* encoders and one turbo code internal interleaver. The coding rate of turbo
|
||
|
* encoder is 1/3.
|
||
|
*
|
||
|
* Reference: 3GPP TS 36.212 version 10.0.0 Release 10 Sec. 5.1.3.2
|
||
|
*********************************************************************************************/
|
||
|
|
||
7 years ago
|
#ifndef SRSLTE_TURBOCODER_H
|
||
|
#define SRSLTE_TURBOCODER_H
|
||
11 years ago
|
|
||
10 years ago
|
#include "srslte/config.h"
|
||
6 years ago
|
#include "srslte/phy/fec/crc.h"
|
||
5 years ago
|
#include "srslte/phy/fec/tc_interl.h"
|
||
11 years ago
|
|
||
5 years ago
|
#define SRSLTE_TCOD_MAX_LEN_CB_BYTES (6144 / 8)
|
||
11 years ago
|
|
||
10 years ago
|
#ifndef SRSLTE_TX_NULL
|
||
|
#define SRSLTE_TX_NULL 100
|
||
10 years ago
|
#endif
|
||
|
|
||
10 years ago
|
typedef struct SRSLTE_API {
|
||
10 years ago
|
uint32_t max_long_cb;
|
||
5 years ago
|
uint8_t* temp;
|
||
10 years ago
|
} srslte_tcod_t;
|
||
|
|
||
5 years ago
|
/* This structure is used as an output for the LUT version of the encoder.
|
||
9 years ago
|
* The encoder produces parity bits only and rate matching will interleave them
|
||
|
* with the systematic bits
|
||
|
*/
|
||
|
|
||
5 years ago
|
SRSLTE_API int srslte_tcod_init(srslte_tcod_t* h, uint32_t max_long_cb);
|
||
10 years ago
|
|
||
5 years ago
|
SRSLTE_API void srslte_tcod_free(srslte_tcod_t* h);
|
||
11 years ago
|
|
||
5 years ago
|
SRSLTE_API int srslte_tcod_encode(srslte_tcod_t* h, uint8_t* input, uint8_t* output, uint32_t long_cb);
|
||
11 years ago
|
|
||
5 years ago
|
SRSLTE_API int srslte_tcod_encode_lut(srslte_tcod_t* h,
|
||
|
srslte_crc_t* crc_tb,
|
||
|
srslte_crc_t* crc_cb,
|
||
|
uint8_t* input,
|
||
|
uint8_t* parity,
|
||
|
uint32_t cblen_idx,
|
||
|
bool last_cb);
|
||
9 years ago
|
|
||
5 years ago
|
SRSLTE_API void srslte_tcod_gentable();
|
||
9 years ago
|
|
||
7 years ago
|
#endif // SRSLTE_TURBOCODER_H
|