Lines Matching defs:agc_level
230 float agc_level;
500 st->agc_level = 8000;
511 /*st->loudness = pow(AMP_SCALE*st->agc_level,LOUDNESS_EXP);*/
591 target_gain = AMP_SCALE*st->agc_level*pow(st->loudness/(1e-4+st->loudness_accum), -1.0f/LOUDNESS_EXP);
1066 st->agc_level = (*(float*)ptr);
1067 if (st->agc_level<1)
1068 st->agc_level=1;
1069 if (st->agc_level>32768)
1070 st->agc_level=32768;
1073 (*(float*)ptr) = st->agc_level;
1195 st->agc_level = (*(spx_int32_t*)ptr);
1196 if (st->agc_level<1)
1197 st->agc_level=1;
1198 if (st->agc_level>32768)
1199 st->agc_level=32768;
1202 (*(spx_int32_t*)ptr) = st->agc_level;