Home | History | Annotate | Download | only in src

Lines Matching defs:threshold

123    middle (memoriless) threshold. The second column is the hysteresis
149 /* Threshold bit-rates for switching between mono and stereo */
153 /* Threshold bit-rate for switching between SILK/hybrid and CELT-only */
742 /* Compute threshold for using FEC at the current bandwidth setting */
1362 opus_int32 threshold;
1370 threshold = mode_music + ((voice_est*voice_est*(mode_voice-mode_music))>>14);
1373 threshold += 8000;
1375 /*printf("%f %d\n", stereo_width/(float)Q15ONE, threshold);*/
1378 threshold -= 4000;
1380 threshold += 4000;
1382 st->mode = (equiv_rate >= threshold) ? MODE_CELT_ONLY: MODE_SILK_ONLY;
1476 int threshold, hysteresis;
1477 threshold
1482 threshold -= hysteresis;
1484 threshold += hysteresis;
1486 if (equiv_rate >= threshold)