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.
39 lines
1.1 KiB
C
39 lines
1.1 KiB
C
4 years ago
|
/**
|
||
11 years ago
|
*
|
||
4 years ago
|
* \section COPYRIGHT
|
||
11 years ago
|
*
|
||
4 years ago
|
* Copyright 2013-2021 Software Radio Systems Limited
|
||
11 years ago
|
*
|
||
4 years ago
|
* By using this file, you agree to the terms and conditions set
|
||
|
* forth in the LICENSE file which can be found at the top level of
|
||
|
* the distribution.
|
||
11 years ago
|
*
|
||
11 years ago
|
*/
|
||
|
|
||
10 years ago
|
/**********************************************************************************************
|
||
|
* File: convcoder.h
|
||
|
*
|
||
|
* Description: Convolutional encoder.
|
||
|
* LTE uses a tail biting convolutional code with constraint length 7
|
||
|
* and coding rate 1/3.
|
||
|
*
|
||
|
* Reference: 3GPP TS 36.212 version 10.0.0 Release 10 Sec. 5.1.3.1
|
||
|
*********************************************************************************************/
|
||
11 years ago
|
|
||
4 years ago
|
#ifndef SRSRAN_CONVCODER_H
|
||
|
#define SRSRAN_CONVCODER_H
|
||
11 years ago
|
|
||
4 years ago
|
#include "srsran/config.h"
|
||
4 years ago
|
#include <stdbool.h>
|
||
11 years ago
|
|
||
4 years ago
|
typedef struct SRSRAN_API {
|
||
10 years ago
|
uint32_t R;
|
||
|
uint32_t K;
|
||
5 years ago
|
int poly[3];
|
||
|
bool tail_biting;
|
||
4 years ago
|
} srsran_convcoder_t;
|
||
11 years ago
|
|
||
4 years ago
|
SRSRAN_API int srsran_convcoder_encode(srsran_convcoder_t* q, uint8_t* input, uint8_t* output, uint32_t frame_length);
|
||
11 years ago
|
|
||
4 years ago
|
#endif // SRSRAN_CONVCODER_H
|