ig726dec.c

来自「g.726编解码源程序」· C语言 代码 · 共 39 行

C
39
字号
/*
 *  Copyright 2002 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.
 *  
 */
/* "@(#) RF3_UART_G726 1.00.00 07-18-02 (swat-c03)" */
/*
 *  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)" */
/*
 *  ======== ig726dec.c ========
 *  Default creation parameters for all implementations of the G726DEC
 *  module abstract interface. 
 */
#include <std.h>

#include <xdas.h>
#include <ig726dec.h>

/*
 *  ======== IG726DEC_PARAMS ========
 *  This static initialization defines the default parameters used to
 *  create an instances of a G726DEC object.
 */
const IG726DEC_Params IG726DEC_PARAMS = {
    sizeof(IG726DEC_PARAMS),   /* Size of this structure */
    1,                         /* Sample by sample processing */
    IG726_ALAW,                /* Out buffer is A-law */
    IG726_16KBPS,              /* Working rate is 16kbps */
};

⌨️ 快捷键说明

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