obs-studio 二次封装(十)SDK 中添加降噪模块

目录

 

介绍

添加降噪模块


介绍

 在obs-studio封装(九)https://blog.csdn.net/lcalqf/article/details/111999838  ,分析了降噪实现过程,具体的细节见上篇。

本篇文章封装降噪部分,并集成到sdk中。

降噪模块

bool LiveModule::set_noise_suppression(int suppress_level)
{
	 
	obs_source_t* filter_source = obs_source_create("noise_suppress_filter", "noise_suppress", nullptr, nullptr);
	if (!filter_source||!m_AudioSource)
	{
		ret

猜你喜欢

转载自blog.csdn.net/lcalqf/article/details/112073429