view globdefs.c @ 3:a6db7d8d6df4

change compile-time quiet control to runtime, and suppress all noisy output
author Mychaela Falconia <falcon@freecalypso.org>
date Sat, 15 Jun 2024 00:09:40 +0000
parents 9008dbc8ca74
children
line wrap: on
line source

/***************************************************************************
 *
 *   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;