im726.h

来自「G.726带测试和在DM642实现的完整工程。测试程序可修改自行填入数据。实现部」· C头文件 代码 · 共 25 行

H
25
字号
#ifndef IM726_H
#define IM726_H

#ifdef __cplusplus
extern "C" {
#endif

typedef unsigned int G726HAND;

extern unsigned int G726_init(G726HAND *phG726);

extern unsigned int G726_Encode(G726HAND h, void* dst, int dstOffset, const void* src, unsigned srcSize);

extern unsigned int G726_Decode(G726HAND h, void* dst, const void* src, int srcOffset, unsigned srcSize);

extern unsigned int G726_Reset(G726HAND h);

extern unsigned int G726_Close(G726HAND h);


#ifdef __cplusplus
}
#endif

#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?