unsigned char *abuf = NULL;
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)) {
switch_channel_clear_flag(channel, CF_CONTROLLED);
}
switch_core_session_get_read_impl(session, &read_impl);
rate = read_impl.actual_samples_per_second;
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) {
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_core_session_write_frame(session, &write_frame, SWITCH_IO_FLAG_NONE, 0);
}