globdefs.c
来自「GSM半数率源代码(VSELP) GSM半数率源代码(VSELP)」· C语言 代码 · 共 25 行
C
25 行
/***************************************************************************
*
* File Name: globdefs.c
*
* Purpose: Defines global frame count, subframe count,
* and DTX on/off switch variables.
*
**************************************************************************/
/*
Storage of global variables (definition)
to reference (declaration) these you must include "typeDefs.h"
*/
int giFrmCnt; /* Frame count: 0,1,2,3,4,... */
int giSfrmCnt = 0; /* Subframe count: 0,1,2,3 */
/*
Global flag which indicates: DTX mode switched on/off
1 - DTX mode switched on (speech encoder)
0 - DTX mode switched off (speech encoder)
*/
int giDTXon = 1;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?