first attempt of C implementation of fec encoder (not tested yet due to NEON/DOT_PROD not being separable)

This commit is contained in:
Jan Buethe 2022-10-18 19:30:23 +02:00
parent 9629ea6a70
commit c1b357ed47
8 changed files with 417 additions and 2 deletions

View file

@ -33,7 +33,12 @@
#ifndef DISABLE_DOT_PROD
#define DOT_PROD
#endif
#ifdef DOT_PROD
typedef signed char qweight;
#else
typedef float qweight;
#endif
#ifndef LPCNET_TEST