appio.h
来自「g.726编解码源程序」· C头文件 代码 · 共 45 行
H
45 行
/*
* 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)" */
/*
* ======== appIO.h ========
*
* Apllication IO initialization and priming
*/
#ifndef APPIO_
#define APPIO_
#include <plio.h> /* PLIO adapter declarations */
#include "appResources.h" /* application-wide common info (and CDB) */
/*
* Declaration of PLIO objects used for transfer of data to/from codec,
* and to/from the UART in case they are ever needed by the application
* outside of appIO.c.
* plioRxCodec & plioTxUart are only used by the Encoder and
* plioRxUart & plioTxCodec are only used by the Decoder
*/
extern PLIO_Obj plioRxCodec, plioTxCodec;
extern PLIO_Obj plioRxUart, plioTxUart;
/*
* ======== appIOInit ========
* Initialize LIO and other (non-streaming) IO components, if any
*/
extern Void appIOInit();
/*
* ======== appIOPrime ========
* Prime the input/output data stream pipes
*/
extern Void appIOPrime();
#endif /* APPIO_ */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?