⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 g723_cod.h

📁 <Win2k系统编程>源码.次数为国人自编,内容丰富,还是不错的.
💻 H
字号:

//////////////////////////////////////////////////////////
//G723_cod.dll's interface functions,export them        //
////////////////////////////////////////////////////////// 

//////////////////////////////////////////////////////
//the stucture for the G723 coder/decoder parameters//
//////////////////////////////////////////////////////
typedef struct {
	int WorkRate;
}  PARAMETER ;


/////////////////////////////////////////////
// The interface functions                 //
/////////////////////////////////////////////

//used for the parameter settings for the coder and decoder
void __declspec(dllexport) Set_parameter(PARAMETER par);

//used for coder
void  __declspec(dllexport)Init_Coder(void);
int   __declspec(dllexport)Coder(FLOAT *DataBuff, char *Vout);

//used for decoder
void  __declspec(dllexport)Init_Decod(void);
int   __declspec(dllexport)Decod(FLOAT *DataBuff, char *Vinp, short int Crc);
 
//Used for Initilizing the VAD/CNG
void  __declspec(dllexport)Init_Dec_Cng(void);
void  __declspec(dllexport)Init_Cod_Cng(void);
void  __declspec(dllexport)Init_Vad(void);

⌨️ 快捷键说明

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