Lines Matching full:agc_level
234 float agc_level;
504 st->agc_level = 8000;
515 /*st->loudness = pow(AMP_SCALE*st->agc_level,LOUDNESS_EXP);*/
595 target_gain = AMP_SCALE*st->agc_level*pow(st->loudness/(1e-4+st->loudness_accum), -1.0f/LOUDNESS_EXP);
1070 st->agc_level = (*(float*)ptr);
1071 if (st->agc_level<1)
1072 st->agc_level=1;
1073 if (st->agc_level>32768)
1074 st->agc_level=32768;
1077 (*(float*)ptr) = st->agc_level;
1200 st->agc_level = (*(spx_int32_t*)ptr);
1201 if (st->agc_level<1)
1202 st->agc_level=1;
1203 if (st->agc_level>32768)
1204 st->agc_level=32768;
1207 (*(spx_int32_t*)ptr) = st->agc_level;