105 lines
2.8 KiB
C
105 lines
2.8 KiB
C
/*
|
|
FILE...: mpdecode_core.h
|
|
AUTHOR.: David Rowe
|
|
CREATED: Sep 2016
|
|
|
|
C-callable core functions for MpDecode, so they can be used for
|
|
Octave and C programs. Also some convenience functions to help use
|
|
the C-callable LDPC decoder in C programs.
|
|
*/
|
|
|
|
#ifndef __MPDECODE_CORE__
|
|
#define __MPDECODE_CORE__
|
|
|
|
#include "comp.h"
|
|
|
|
struct LDPC {
|
|
int max_iter;
|
|
int dec_type;
|
|
int q_scale_factor;
|
|
int r_scale_factor;
|
|
int CodeLength;
|
|
int NumberParityBits;
|
|
int NumberRowsHcols;
|
|
int max_row_weight;
|
|
int max_col_weight;
|
|
int data_bits_per_frame;
|
|
int coded_bits_per_frame;
|
|
int coded_syms_per_frame;
|
|
double *H_rows;
|
|
double *H_cols;
|
|
};
|
|
|
|
void encode(struct LDPC *ldpc, unsigned char ibits[], unsigned char pbits[]);
|
|
|
|
int run_ldpc_decoder(struct LDPC *ldpc, char out_char[], double input[], int *parityCheckCount);
|
|
|
|
void sd_to_llr(double llr[], double sd[], int n);
|
|
|
|
void Demod2D(double symbol_likelihood[], COMP r[], COMP S_matrix[], float EsNo, float fading[], float mean_amp, int number_symbols);
|
|
void Somap(double bit_likelihood[], double symbol_likelihood[], int number_symbols);
|
|
void symbols_to_llrs(double llr[], COMP rx_qpsk_symbols[], float rx_amps[], float EsNo, float mean_amp, int nsyms);
|
|
|
|
struct v_node {
|
|
int degree;
|
|
float initial_value;
|
|
int *index; /* the index of a c_node it is connected to */
|
|
int *socket; /* socket number at the c_node */
|
|
float *message;
|
|
int *sign;
|
|
};
|
|
|
|
struct c_node {
|
|
int degree;
|
|
int *index;
|
|
float *message;
|
|
int *socket; /* socket number at the v_node */
|
|
};
|
|
|
|
void init_c_v_nodes(struct c_node *c_nodes,
|
|
int shift,
|
|
int NumberParityBits,
|
|
int max_row_weight,
|
|
double *H_rows,
|
|
int H1,
|
|
int CodeLength,
|
|
struct v_node *v_nodes,
|
|
int NumberRowsHcols,
|
|
double *H_cols,
|
|
int max_col_weight,
|
|
int dec_type,
|
|
double *input);
|
|
|
|
void ApproximateMinStar( int BitErrors[],
|
|
int DecodedBits[],
|
|
struct c_node c_nodes[],
|
|
struct v_node v_nodes[],
|
|
int CodeLength,
|
|
int NumberParityBits,
|
|
int max_iter );
|
|
|
|
void MinSum( int BitErrors[],
|
|
int DecodedBits[],
|
|
struct c_node c_nodes[],
|
|
struct v_node v_nodes[],
|
|
int CodeLength,
|
|
int NumberParityBits,
|
|
int max_iter,
|
|
float r_scale_factor,
|
|
float q_scale_factor,
|
|
int data[] );
|
|
|
|
|
|
void SumProduct( int BitErrors[],
|
|
int DecodedBits[],
|
|
struct c_node c_nodes[],
|
|
struct v_node v_nodes[],
|
|
int CodeLength,
|
|
int NumberParityBits,
|
|
int max_iter,
|
|
float r_scale_factor,
|
|
float q_scale_factor,
|
|
int data[]);
|
|
|
|
#endif
|