search for: agc_frozen

Displaying 2 results from an estimated 2 matches for "agc_frozen".

Did you mean: a_frozen
2005 Jun 20
1
Speech detection in preprocessor with echo
...e modifications to the AGC to prevent it from 1) exceeding a specified level of amplification and 2) enable and disable adaptation, so I can freeze it at a certain level while speech is not detected. It's mostly just a matter of doing this at the end of speex_compute_agc(): if (!st->agc_frozen) { agc_gain = st->agc_level/st->loudness2; /*fprintf (stderr, "%f %f %f %f\n", active_bands, st->loudness, st->loudness2, agc_gain);*/ if (agc_gain>st->agc_max_gain) /* was 200 */ agc_gain = st->agc_max_gain; /* was 200*/ } else agc_gain...
2005 Jun 22
1
Speech detection in preprocessor with echo
...exceeding a specified level of amplification and 2) enable > > and disable adaptation, so I can freeze it at a certain level while > > speech is not detected. It's mostly just a matter of doing this at the > > end of speex_compute_agc(): > > > > if (!st->agc_frozen) > > { > > agc_gain = st->agc_level/st->loudness2; > > /*fprintf (stderr, "%f %f %f %f\n", active_bands, st->loudness, st->loudness2, agc_gain);*/ > > if (agc_gain>st->agc_max_gain) /* was 200 */ > > agc_gain = st->agc...