mirror of
https://github.com/vicliu624/trail-mate.git
synced 2026-09-27 06:07:58 +00:00
28 lines
437 B
C
28 lines
437 B
C
/*
|
|
FILE...: ldpc_codes.h
|
|
AUTHOR.: David Rowe
|
|
CREATED: July 2020
|
|
|
|
Array of LDPC codes used for various Codec2 waveforms.
|
|
*/
|
|
|
|
#ifndef __LDPC_CODES__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "mpdecode_core.h"
|
|
|
|
extern struct LDPC ldpc_codes[];
|
|
int ldpc_codes_num(void);
|
|
void ldpc_codes_list();
|
|
int ldpc_codes_find(char name[]);
|
|
void ldpc_codes_setup(struct LDPC *ldpc, char name[]);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|