NoiseReduction.c
371 字节
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <string.h>
#include "JZsdkLib.h"
T_JZsdkReturnCode PcmNoiseReduction(unsigned char *data, int len, int threshold)
{
for (int i = 0; i < len; i++)
{
if (abs(data) >= 0xFF)
{
data[i] = 0;
}
}
return JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS;
}