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

📄 g723adec.h

📁 The combined demo is dedicated for S1C33L05, so DMT33L05 should be used to load and run the demo. F
💻 H
字号:
/*
 * g723adec.h
 *  
 * Ver0.10 2001/01/11 N.Komatsu  Start
 *
 */

#ifndef G723ADEC_H
#define G723ADEC_H

/*
 *  G723.1 data format
 * 
 * <-G723A_HEADER_SIZE->
 *   +-------+-----+        +------------+
 *   |FILE_ID|size |        |G723.1  code|
 *   +-------+-----+        +------------+
 *     1byte    4   <------> 
 *
 *
 */

#define G723A_FILE_ID     (0x23)
#define G723A_HEADER_SIZE (0x5)

/* Coder rate */
enum  Crate    { Rate63, Rate53 } ;

/* Coder global constants */
#define  FRAME       240

unsigned char *g723aSpeak(char *, int);

unsigned char *pcmPlay(short *, int, int);

extern void  g723aInitDecode( char PostFilter );
extern char  g723aDecode( short *DataBuff, char *Vinp, short Crc );
extern void  g723aInitDecCng(void);

extern void g723aDecodeCopy(void);


#endif  /* G723ADEC_H */




⌨️ 快捷键说明

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