diff options
Diffstat (limited to 'drivers/opus/mlp.h')
-rw-r--r-- | drivers/opus/mlp.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/drivers/opus/mlp.h b/drivers/opus/mlp.h index 3f9ca73bb0..2b4962625d 100644 --- a/drivers/opus/mlp.h +++ b/drivers/opus/mlp.h @@ -31,11 +31,13 @@ #include "opus/celt/arch.h" typedef struct { - int layers; - const int *topo; - const float *weights; + int layers; + const int *topo; + const float *weights; } MLP; +extern const MLP net; + void mlp_process(const MLP *m, const float *in, float *out); #endif /* _MLP_H_ */ |