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

📄 ig723.h

📁 MSP430与DSP接口技术3 编辑环境C语言,未试过,仅供参考
💻 H
字号:
/*
 *  Copyright 2001 by Texas Instruments Incorporated.
 *  All rights reserved. Property of Texas Instruments Incorporated.
 *  Restricted rights to use, duplicate or disclose this code are
 *  granted through contract.
 *  
 */
/* "@(#) XDAS 2.2.1 12-07-01 (__imports)" */
/*
 *  ======== ig723.h ========
 *  This header defines all types and constants common to all G723
 *  encoder and decoder modules.
 */
#ifndef IG723_
#define IG723_

/*
 *  ======== IG723_Cmd ========
 *  This structure defines the control commands for the G723 encoder
 *  and decoder instance objects.
 */
typedef enum IG723_Cmd {
    IG723_GETSTATUS,
    IG723_SETSTATUS
} IG723_Cmd;

/*
 *  ======== IG723_Rate ========
 *  This structure defines the possible working rates for G723 encoder
 *  and decoder instance objects. 
 */
typedef enum IG723_Rate {
    IG723_5300BPS = 0,    /* 5.3k bits per second */
    IG723_6300BPS = 1     /* 6.3k bits per second */
} IG723_Rate;

#endif  /* IG723_ */

⌨️ 快捷键说明

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