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

/**
*
* \section COPYRIGHT
*
* Copyright 2013-2021 Software Radio Systems Limited
11 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
*/
/**********************************************************************************************
* 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
*********************************************************************************************/
#ifndef SRSRAN_CONVCODER_H
#define SRSRAN_CONVCODER_H
11 years ago
#include "srsran/config.h"
#include <stdbool.h>
11 years ago
typedef struct SRSRAN_API {
uint32_t R;
uint32_t K;
int poly[3];
bool tail_biting;
} srsran_convcoder_t;
SRSRAN_API int srsran_convcoder_encode(srsran_convcoder_t* q, uint8_t* input, uint8_t* output, uint32_t frame_length);
#endif // SRSRAN_CONVCODER_H