g722_interface.~h

来自「G722语音压缩算法」· ~H 代码 · 共 21 行

~H
21
字号
//---------------------------------------------------------------------------

#ifndef G722_INTerfaceH
#define G722_INTerfaceH
//---------------------------------------------------------------------------
#include "g722.h"
//---------------------------------------------------------------------------

//---------------------------------------------------------------------------

INT32 G722_EncodeInit( pG722_Handle handle );       //      Encode
INT32 G722_Encode( pG722_Handle handle,  short pcmIn[],UINT16 code[], INT32 n );
//      no need colse;

INT32 G722_DecodeInit( pG722_Handle handle );       //      Decode;
INT32 G722_Decode( pG722_Handle handle,UINT16 code[], short  pcmOut[], INT32 n );
//      no need close;

//---------------------------------------------------------------------------
#endif

⌨️ 快捷键说明

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