mirror of
https://github.com/xiph/opus.git
synced 2025-05-22 19:38:30 +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
|
@ -98,6 +98,8 @@ void compute_activation(float *output, const float *input, int N, int activation
|
|||
|
||||
void _lpcnet_compute_dense(const DenseLayer *layer, float *output, const float *input);
|
||||
|
||||
void compute_dense(const DenseLayer *layer, float *output, const float *input);
|
||||
|
||||
void compute_mdense(const MDenseLayer *layer, float *output, const float *input);
|
||||
|
||||
int sample_mdense(const MDenseLayer *layer, const float *input, const float *sampling_logit_table, kiss99_ctx *rng);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue