Displaying 2 results from an estimated 2 matches for "mlp_process".
Did you mean:
md5_process
2013 Jul 18
2
Help building OPUS library using FIXED_POINT option
...is:jni/src/libopus/src/ana
lysis.c:636: error: undefined reference to 'optimize_framesize'
[exec] C:/android/android-ndk-r8e/toolchains/x86-4.6/prebuilt/windows/bin/.
./lib/gcc/i686-linux-android/4.6/../../../../i686-linux-android/bin/ld.exe: ./ob
j/local/x86/lib0.a(mlp.o): in function mlp_process:jni/src/libopus/src/mlp.c:60:
error: undefined reference to 'MULT16_16_Q11'
[exec] C:/android/android-ndk-r8e/toolchains/x86-4.6/prebuilt/windows/bin/.
./lib/gcc/i686-linux-android/4.6/../../../../i686-linux-android/bin/ld.exe: ./ob
j/local/x86/lib0.a(mlp.o): in function mlp_process:jn...
2015 Aug 07
0
[PATCH] Fix const struct to work with C++ compilation
...quot;stack_alloc.h"
-extern const MLP net;
-
#ifndef M_PI
#define M_PI 3.141592653
#endif
diff --git a/src/mlp.h b/src/mlp.h
index 053b23b..618e246 100644
--- a/src/mlp.h
+++ b/src/mlp.h
@@ -36,6 +36,8 @@ typedef struct {
const float *weights;
} MLP;
+extern const MLP net;
+
void mlp_process(const MLP *m, const float *in, float *out);
#endif /* _MLP_H_ */
--
2.4.5