g722.h

来自「G722语音压缩算法」· C头文件 代码 · 共 28 行

H
28
字号
#ifndef _H_G722
#define _H_G722
typedef unsigned short UINT16;
typedef unsigned int UINT32;
typedef  short INT16;
	typedef struct{

         int    ilowr,
                dlowt,
                rlow;
         int    slow;
         int    detlow;
         int    ihigh,
                dhigh,
                rhigh;
         int    shigh;
         int    dethigh;
	}	G722_Handle, *pG722_Handle;

int decoder_block4l(int);
int decoder_block4h(int);
int encoder_block4l(int);
int encoder_block4h(int);
//int g722_init_state(pG722_Handle);
//int g722_encoder(pG722_Handle ,short *, UINT16 *,int);
//int g722_decoder(pG722_Handle ,UINT16 *,short *,int);
#endif

⌨️ 快捷键说明

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