Tag: speex

Libtool问题,同时编译Liblinphone

我试图编译这个lib: https://github.com/BelledonneCommunications/linphone-iphone 在一代中,我得到这个: /linphone-iphone/submodules/build/..//externals/speex/libspeex/cb_search.c libtool: Version mismatch error. This is libtool 2.4.6, but the libtool: definition of this LT_INIT comes from libtool 2.4.2. libtool: You should recreate aclocal.m4 with macros from libtool 2.4.6 libtool: and run autoconf again. make[4]: *** [cb_search.lo] Error 63 make[3]: *** [all-recursive] Error 1 make[2]: *** [all] Error 2 make[1]: *** […]

编译ffmpeg以支持SPEEX解码

我正在编译ffmpeg来支持Speex解码。 我在shell脚本中使用了以下标志–enable-libspeex来启用speex解码。 我也编译了从这个链接下载的speex 1.2rc1。 编译完头文件后,可以在/ usr / local / include / speex这个path下使用。 按照上面的过程,当编译ffmpeg来产生对SPEEX解码的支持时,我得到错误libspeex not found。 谁能帮我这个? Config.log: BEGIN /var/folders/5p/cffcbsm954b632yfzq4jrbbw0000gn/T//ffconf.5U5MfgMb.c 1 #include <math.h> 2 float foo(float f, float g) { return roundf(f); } 3 int main(void){ return (int) foo; } END /var/folders/5p/cffcbsm954b632yfzq4jrbbw0000gn/T//ffconf.5U5MfgMb.c xcrun -sdk iphoneos clang -D_ISOC99_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE – DPIC -arch armv7s -mios-version-min=6.0 -mcpu= -std=c99 […]