echo.h
来自「《DSP集成开发环境-CCS及DSP/BIOS的原理与应用》」· C头文件 代码 · 共 24 行
H
24 行
/*
* 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.
*
*/
/* "@(#) DSP/BIOS 4.60.22 12-07-01 (barracuda-j15)" */
/*
* ======== echo.h ========
*/
#ifndef ECHO_
#define ECHO_
#define ECHOFRAMELEN 20 /* 2.5 ms @ 8000 Hz */
#define AUDIOFRAMELEN 9 * ECHOFRAMELEN /* 22.5 ms @ 8000 Hz */
#define CODEFRAMELEN AUDIOFRAMELEN / 2 /* 2:1 compression */
#define CODEBUFLEN 2 * CODEFRAMELEN /* double buffer input/output */
#define AUDIOBUFLEN 2 * AUDIOFRAMELEN /* double buffer input/output */
#endif /* ECHO_ */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?