mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-03-13 12:40:17 +00:00
FS-3046 --resolve
This commit is contained in:
parent
a405b779c9
commit
dc028b3648
@ -750,34 +750,6 @@ SWITCH_DECLARE(switch_status_t) switch_ivr_park(switch_core_session_t *session,
|
|||||||
unsigned char *abuf = NULL;
|
unsigned char *abuf = NULL;
|
||||||
switch_codec_implementation_t imp = { 0 };
|
switch_codec_implementation_t imp = { 0 };
|
||||||
|
|
||||||
if ((var = switch_channel_get_variable(channel, SWITCH_SEND_SILENCE_WHEN_IDLE_VARIABLE)) && (sval = atoi(var))) {
|
|
||||||
switch_core_session_get_read_impl(session, &imp);
|
|
||||||
|
|
||||||
if (switch_core_codec_init(&codec,
|
|
||||||
"L16",
|
|
||||||
NULL,
|
|
||||||
imp.samples_per_second,
|
|
||||||
imp.microseconds_per_packet / 1000,
|
|
||||||
imp.number_of_channels,
|
|
||||||
SWITCH_CODEC_FLAG_ENCODE | SWITCH_CODEC_FLAG_DECODE, NULL,
|
|
||||||
switch_core_session_get_pool(session)) != SWITCH_STATUS_SUCCESS) {
|
|
||||||
switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_ERROR, "Codec Error L16@%uhz %u channels %dms\n",
|
|
||||||
imp.samples_per_second, imp.number_of_channels, imp.microseconds_per_packet / 1000);
|
|
||||||
return SWITCH_STATUS_FALSE;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_DEBUG, "Codec Activated L16@%uhz %u channels %dms\n",
|
|
||||||
imp.samples_per_second, imp.number_of_channels, imp.microseconds_per_packet / 1000);
|
|
||||||
|
|
||||||
write_frame.codec = &codec;
|
|
||||||
switch_zmalloc(abuf, SWITCH_RECOMMENDED_BUFFER_SIZE);
|
|
||||||
write_frame.data = abuf;
|
|
||||||
write_frame.buflen = SWITCH_RECOMMENDED_BUFFER_SIZE;
|
|
||||||
write_frame.datalen = imp.decoded_bytes_per_packet;
|
|
||||||
write_frame.samples = write_frame.datalen / sizeof(int16_t);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (switch_channel_test_flag(channel, CF_RECOVERED) && switch_channel_test_flag(channel, CF_CONTROLLED)) {
|
if (switch_channel_test_flag(channel, CF_RECOVERED) && switch_channel_test_flag(channel, CF_CONTROLLED)) {
|
||||||
switch_channel_clear_flag(channel, CF_CONTROLLED);
|
switch_channel_clear_flag(channel, CF_CONTROLLED);
|
||||||
}
|
}
|
||||||
@ -821,6 +793,34 @@ SWITCH_DECLARE(switch_status_t) switch_ivr_park(switch_core_session_t *session,
|
|||||||
switch_core_session_get_read_impl(session, &read_impl);
|
switch_core_session_get_read_impl(session, &read_impl);
|
||||||
rate = read_impl.actual_samples_per_second;
|
rate = read_impl.actual_samples_per_second;
|
||||||
bpf = read_impl.decoded_bytes_per_packet;
|
bpf = read_impl.decoded_bytes_per_packet;
|
||||||
|
|
||||||
|
if ((var = switch_channel_get_variable(channel, SWITCH_SEND_SILENCE_WHEN_IDLE_VARIABLE)) && (sval = atoi(var))) {
|
||||||
|
switch_core_session_get_read_impl(session, &imp);
|
||||||
|
|
||||||
|
if (switch_core_codec_init(&codec,
|
||||||
|
"L16",
|
||||||
|
NULL,
|
||||||
|
imp.samples_per_second,
|
||||||
|
imp.microseconds_per_packet / 1000,
|
||||||
|
imp.number_of_channels,
|
||||||
|
SWITCH_CODEC_FLAG_ENCODE | SWITCH_CODEC_FLAG_DECODE, NULL,
|
||||||
|
switch_core_session_get_pool(session)) != SWITCH_STATUS_SUCCESS) {
|
||||||
|
switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_ERROR, "Codec Error L16@%uhz %u channels %dms\n",
|
||||||
|
imp.samples_per_second, imp.number_of_channels, imp.microseconds_per_packet / 1000);
|
||||||
|
return SWITCH_STATUS_FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_DEBUG, "Codec Activated L16@%uhz %u channels %dms\n",
|
||||||
|
imp.samples_per_second, imp.number_of_channels, imp.microseconds_per_packet / 1000);
|
||||||
|
|
||||||
|
write_frame.codec = &codec;
|
||||||
|
switch_zmalloc(abuf, SWITCH_RECOMMENDED_BUFFER_SIZE);
|
||||||
|
write_frame.data = abuf;
|
||||||
|
write_frame.buflen = SWITCH_RECOMMENDED_BUFFER_SIZE;
|
||||||
|
write_frame.datalen = imp.decoded_bytes_per_packet;
|
||||||
|
write_frame.samples = write_frame.datalen / sizeof(int16_t);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (rate) {
|
if (rate) {
|
||||||
@ -845,7 +845,7 @@ SWITCH_DECLARE(switch_status_t) switch_ivr_park(switch_core_session_t *session,
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (write_frame.data) {
|
if (rate && write_frame.data && sval) {
|
||||||
switch_generate_sln_silence((int16_t *) write_frame.data, write_frame.samples, sval);
|
switch_generate_sln_silence((int16_t *) write_frame.data, write_frame.samples, sval);
|
||||||
switch_core_session_write_frame(session, &write_frame, SWITCH_IO_FLAG_NONE, 0);
|
switch_core_session_write_frame(session, &write_frame, SWITCH_IO_FLAG_NONE, 0);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user