Lines Matching refs:threshold
111 middle (memoriless) threshold. The second column is the hysteresis
137 /* Threshold bit-rates for switching between mono and stereo */
141 /* Threshold bit-rate for switching between SILK/hybrid and CELT-only */
1131 opus_int32 threshold;
1139 threshold = mode_music + ((voice_est*voice_est*(mode_voice-mode_music))>>14);
1142 threshold += 8000;
1144 /*printf("%f %d\n", stereo_width/(float)Q15ONE, threshold);*/
1147 threshold -= 4000;
1149 threshold += 4000;
1151 st->mode = (equiv_rate >= threshold) ? MODE_CELT_ONLY: MODE_SILK_ONLY;
1237 /* Adjust the threshold +/- 10% depending on complexity */
1258 int threshold, hysteresis;
1259 threshold = bandwidth_thresholds[2*(bandwidth-OPUS_BANDWIDTH_MEDIUMBAND)];
1264 threshold -= hysteresis;
1266 threshold += hysteresis;
1268 if (equiv_rate2 >= threshold)