Lines Matching defs:onset
143 int16_t onset; ///< detected onset level (0-2)
287 * Makes decision about onset in current subframe
291 * @return onset decision result for current subframe
303 * @param onset onset level
309 static int16_t g729d_voice_decision(int onset, int prev_voice_decision, const int16_t* past_gain_pitch)
325 if (low_gain_pitch_cnt > 2 && !onset)
328 if (!onset && voice_decision > prev_voice_decision + 1)
331 if (onset && voice_decision < DECISION_VOICE)
439 ctx->onset = 0;
661 ctx->onset = g729d_onset_decision(ctx->onset, ctx->past_gain_code);
662 ctx->voice_decision = g729d_voice_decision(ctx->onset, ctx->voice_decision, ctx->past_gain_pitch);