mirror of
https://github.com/xiph/opus.git
synced 2025-05-28 14:19:13 +00:00
first attempt of C implementation of fec encoder (not tested yet due to NEON/DOT_PROD not being separable)
This commit is contained in:
parent
9629ea6a70
commit
c1b357ed47
8 changed files with 417 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue