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.
54 lines
1.3 KiB
C
54 lines
1.3 KiB
C
/**
|
|
*
|
|
* \section COPYRIGHT
|
|
*
|
|
* Copyright 2013-2021 Software Radio Systems Limited
|
|
*
|
|
* 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.
|
|
*
|
|
*/
|
|
|
|
#ifndef SRSRAN_TURBODECODER_IMPL_H
|
|
#define SRSRAN_TURBODECODER_IMPL_H
|
|
|
|
#include "srsran/config.h"
|
|
|
|
/* Interface for internal decoder implementation */
|
|
typedef enum SRSRAN_API {
|
|
SRSRAN_TDEC_AUTO = 0,
|
|
SRSRAN_TDEC_GENERIC,
|
|
SRSRAN_TDEC_SSE,
|
|
SRSRAN_TDEC_SSE_WINDOW,
|
|
SRSRAN_TDEC_NEON_WINDOW,
|
|
SRSRAN_TDEC_AVX_WINDOW,
|
|
SRSRAN_TDEC_SSE8_WINDOW,
|
|
SRSRAN_TDEC_AVX8_WINDOW,
|
|
SRSRAN_TDEC_NOF_IMP
|
|
} srsran_tdec_impl_type_t;
|
|
|
|
#endif
|
|
|
|
#ifdef LLR_IS_8BIT
|
|
#define llr_t int8_t
|
|
#define type_name srsran_tdec_8bit_impl_t
|
|
#else
|
|
#ifdef LLR_IS_16BIT
|
|
#define llr_t int16_t
|
|
#define type_name srsran_tdec_16bit_impl_t
|
|
#else
|
|
#error "Unsupported LLR mode"
|
|
#endif
|
|
#endif
|
|
|
|
typedef struct SRSRAN_API {
|
|
int (*tdec_init)(void** h, uint32_t max_long_cb);
|
|
void (*tdec_free)(void* h);
|
|
void (*tdec_dec)(void* h, llr_t* input, llr_t* app, llr_t* parity, llr_t* output, uint32_t long_cb);
|
|
void (*tdec_extract_input)(llr_t* input, llr_t* syst, llr_t* parity0, llr_t* parity1, llr_t* app2, uint32_t long_cb);
|
|
void (*tdec_decision_byte)(llr_t* app1, uint8_t* output, uint32_t long_cb);
|
|
} type_name;
|
|
|
|
#undef llr_t
|
|
#undef type_name |