4

我正在使用 PJSIP 库在 Android 上构建一个 VOIP 应用程序。

我试图启用 OPUS 编解码器,因为从 v2.5 开始,PJSIP 支持 OPUS。

我按照以下链接在 PJSIP 上配置 OPUS。

我插入#define PJMEDIA_HAS_OPUS_CODEC 1了 config_site_sample.h 文件以启用 OPUS 编解码器。

但是当我尝试构建 PJSIP 时,出现以下错误

../src/pjmedia-codec/opus.c:31:23: fatal error: opus/opus.h: No such file or directory
 #include <opus/opus.h>
                       ^
compilation terminated.

我做错什么了吗?在 PJSIP 中启用 OPUS 编解码器的实际过程是什么?

4

1 回答 1

2

你必须--with-opus=[absolute-path-to]/opus-dev-lib像这里描述的那样设置编译器标志:https ://trac.pjsip.org/repos/ticket/1904

不要更改源代码中的静态变量。

于 2016-07-21T10:17:32.263 回答