ispeech1_pcm.h

来自「TI Algorithm Soft Kit 5.10 仅包括实例及其原代码」· C头文件 代码 · 共 61 行

H
61
字号
/*  *  Copyright 2006 *  Texas Instruments Incorporated * *  All rights reserved.  Property of Texas Instruments Incorporated *  Restricted rights to use, duplicate or disclose this code are *  granted through contract. *  *//** *  @file       ti/xdais/dm/ispeech1_pcm.h * *  @brief      This header defines all types, constants, enums, and functions *              that are common across all G.711/PCM speech codecs. *//** *  @defgroup   ti_xdais_dm_ISPEECH1_PCM  xDM 1.0 Speech/Voice Interface (PCM) * *  This is the xDM 1.0 speech/voice interface shared between the various PCM *  codecs. */#ifndef ti_xdais_dm_ISPEECH1_PCM_#define ti_xdais_dm_ISPEECH1_PCM_#include "ispeech1.h"#ifdef __cplusplusextern "C" {#endif/** @ingroup    ti_xdais_dm_ISPEECH1_PCM *//*@{*//** *  @brief      Companding law of encoder input and decoder output samples. */typedef enum {    ISPEECH1_PCM_COMPAND_LINEAR = 0,       /**< Linear */    ISPEECH1_PCM_COMPAND_ALAW = 1,         /**< A-law */    ISPEECH1_PCM_COMPAND_ULAW = 2,         /**< Mu-law */    /** Default setting. */    ISPEECH1_PCM_COMPAND_DEFAULT = ISPEECH1_PCM_COMPAND_LINEAR} ISPEECH1_PCM_CompandingLaw;/*@}*/#ifdef __cplusplus}#endif#endif  /* ti_xdais_dm_ISPEECH1_PCM_ *//* *  @(#) ti.xdais.dm; 1, 0, 1, 0,46; 10-18-2006 19:11:35; /db/wtree/library/trees/dais-g07x/src/ */

⌨️ 快捷键说明

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