加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
resample.h 332 Bytes
一键复制 编辑 原始数据 按行查看 历史
王小彬同学 提交于 2021-07-27 22:11 . conf: format
#ifndef _RESAMPLE_H_
#define _RESAMPLE_H_
#ifdef __cplusplus
extern "C"
{
#endif
#include <stdint.h>
int resample_16k_to_8k(int16_t *ibuf, int16_t *obuf, uint32_t ilen, uint32_t *polen);
int resample_8k_to_16k(int16_t *ibuf, int16_t *obuf, uint32_t ilen, uint32_t *polen);
#ifdef __cplusplus
}
#endif
#endif /* _RESAMPLE_H_ */
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化