1 Star 1 Fork 5

easy8in/mod_g729

forked from Eric Xiang/mod_g729 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
g729.h 605 Bytes
一键复制 编辑 原始数据 按行查看 历史
Eric Xiang 提交于 2016-10-22 00:36 . import mod_g729 source code.
#include <stdio.h>
#include <stdlib.h>
#define BUFFER_SAMPLES 8000
struct g72x_coder_pvt {
void *coder;
void *scratch_mem;
int16_t buf[BUFFER_SAMPLES]; /* 1 second */
};
#define dec_state g72x_coder_pvt
#define cod_state g72x_coder_pvt
#define PVT struct g72x_coder_pvt
void g729_init_lib();
void g729_init_coder(PVT *hEncoder, int);
void g729_release_coder(PVT *hEncoder);
void g729_init_decoder(PVT *hDecoder);
void g729_release_decoder(PVT *hDecoder);
void g729_coder(PVT *hEncoder, short *ddp, char *edp, int *plen);
void g729_decoder(PVT *hDecoder, short *ddp, char *edp, int cbret);
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/easy8in/mod_g729.git
git@gitee.com:easy8in/mod_g729.git
easy8in
mod_g729
mod_g729
master

搜索帮助

23e8dbc6 1850385 7e0993f3 1850385