我想做的事:
我发现了一个C library which computes an audio stream’s pitch,并希望在Android中使用它.
我认为不是移植它我也可以在NDK的帮助下使用它,对吧?
这是如何运作的?我当然要安装NDK然后呢?我可以在Android中正常调用此C库的函数吗?
C中我想要“导入”的库:
#include "second_c_file.h" #include <math.h> #include <stdlib.h> #include <string.h> #ifndef max #define max(x,y) ((x) > (y)) ? (x) : (y) #endif #ifndef min #define min(x,y) ((x) < (y)) ? (x) : (y) #endif int _power2p(int value) { ... } typedef struct _minmax { int index; struct _minmax *next; } minmax; double _test_calculate(double * var1,int var2,int var3) { ... }
文件“second_c_file.h”显然是我需要导入的另一个文件.
谢谢你的帮助!