在Android上的PJSIP 2.5.1上启用和配置OPUS编解码器

时间:2016-06-09 17:14:38

标签: android sip voip pjsip opus

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

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

我已按照以下link在PJSIP上配置OPUS。

我在config_site_sample.h文件中插入#define PJMEDIA_HAS_OPUS_CODEC 1以启用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编解码器的实际过程是什么?

1 个答案:

答案 0 :(得分:2)

你必须设置编译器标志struct S { int T = 0; template<class> struct T{}; // error! using T = int; // error! }; ,如下所述:https://trac.pjsip.org/repos/ticket/1904

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