ig723.h

来自「MSP430与DSP接口技术3 编辑环境C语言,未试过,仅供参考」· C头文件 代码 · 共 38 行

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