#include <jni.h>
#include <stdlib.h>
#include "speex/speex_echo.h"
static struct SpeexEchoState *m_pState;
static int isInit(){
return m_pState != NULL ? 1 : 0;
}
本文详细介绍了如何使用C++语言结合Speex Echo库实现回声消除功能,包括初始化状态、判断是否已初始化及核心算法实现过程。
#include <jni.h>
#include <stdlib.h>
#include "speex/speex_echo.h"
static struct SpeexEchoState *m_pState;
static int isInit(){
return m_pState != NULL ? 1 : 0;
}
转载于:https://my.oschina.net/u/164249/blog/60227
2156

被折叠的 条评论
为什么被折叠?