FS-5701 --resolve
This commit is contained in:
parent
129a509cfb
commit
624189be16
|
@ -2907,6 +2907,12 @@ SWITCH_DECLARE(void) switch_ivr_delay_echo(switch_core_session_t *session, uint3
|
|||
interval = read_impl.microseconds_per_packet / 1000;
|
||||
//samples = switch_samples_per_packet(read_impl.samples_per_second, interval);
|
||||
|
||||
if (delay_ms < interval * 2) {
|
||||
delay_ms = interval * 2;
|
||||
switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_WARNING, "Minimum possible delay for this codec (%d) has been chosen\n", delay_ms);
|
||||
}
|
||||
|
||||
|
||||
qlen = delay_ms / (interval) / 2;
|
||||
switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_DEBUG, "Setting delay to %dms (%d frames)\n", delay_ms, qlen);
|
||||
jb = stfu_n_init(qlen, qlen, read_impl.samples_per_packet, read_impl.samples_per_second, 0);
|
||||
|
|
Loading…
Reference in New Issue