appthreads.h

来自「g.726编解码源程序」· C头文件 代码 · 共 40 行

H
40
字号
/*
 *  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)" */
/*
 *  ======== appThreads.h ========
 *
 *  Threads-wide constants, global variables, macros, 
 *  buffers, and declaration of functions called from the rest of the app
 */
#ifndef APPTHREADS_
#define APPTHREADS_

#include "appResources.h"   /* application-wide common info */

#ifdef __cplusplus
extern "C" {
#endif

/* 
 *  Declaration of intermediate buffers used by threads' algorithms 
 */

/* this buffer is used by the Encode & decode threads as a temporary buffer */
extern Sample bufAudioproc[ FRAMELEN ];

/* function that initializes all the threads */
Void thrInit( Void );

#ifdef __cplusplus
}
#endif /* extern "C" */

#endif /* APPTHREADS_ */ 

⌨️ 快捷键说明

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