g723_cod.h

来自「<Win2k系统编程>源码.次数为国人自编,内容丰富,还是不错的.」· C头文件 代码 · 共 34 行

H
34
字号

//////////////////////////////////////////////////////////
//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 + =
减小字号Ctrl + -
显示快捷键?