2012-07-19 00:17:26 +00:00
|
|
|
/*
|
2010-05-31 06:04:12 -04:00
|
|
|
* FreeSWITCH Modular Media Switching Software Library / Soft-Switch Application
|
2012-04-18 11:51:48 -05:00
|
|
|
* Copyright (C) 2005-2012, Anthony Minessale II <anthm@freeswitch.org>
|
2010-05-31 06:04:12 -04:00
|
|
|
*
|
|
|
|
* Version: MPL 1.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is FreeSWITCH mod_spandsp.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Massimo Cetra <devel@navynet.it>
|
|
|
|
*
|
|
|
|
* Portions created by the Initial Developer are Copyright (C)
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
* Brian West <brian@freeswitch.org>
|
|
|
|
* Anthony Minessale II <anthm@freeswitch.org>
|
|
|
|
* Steve Underwood <steveu@coppice.org>
|
|
|
|
* Antonio Gallo <agx@linux.it>
|
2012-06-11 13:05:29 +00:00
|
|
|
* Christopher M. Rienzo <chris@rienzo.com>
|
2010-05-31 06:04:12 -04:00
|
|
|
* mod_spandsp_dsp.c -- dsp applications provided by SpanDSP
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "mod_spandsp.h"
|
|
|
|
|
2012-06-23 18:48:20 -05:00
|
|
|
#define TDD_LEAD 10
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
switch_core_session_t *session;
|
|
|
|
v18_state_t *tdd_state;
|
2012-07-19 00:03:47 +00:00
|
|
|
int head_lead;
|
|
|
|
int tail_lead;
|
2012-06-23 18:48:20 -05:00
|
|
|
} switch_tdd_t;
|
|
|
|
|
|
|
|
static switch_bool_t tdd_encode_callback(switch_media_bug_t *bug, void *user_data, switch_abc_type_t type)
|
|
|
|
{
|
|
|
|
switch_tdd_t *pvt = (switch_tdd_t *) user_data;
|
|
|
|
switch_frame_t *frame = NULL;
|
|
|
|
switch_bool_t r = SWITCH_TRUE;
|
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
case SWITCH_ABC_TYPE_INIT: {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case SWITCH_ABC_TYPE_CLOSE:
|
|
|
|
if (pvt->tdd_state) {
|
|
|
|
v18_free(pvt->tdd_state);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case SWITCH_ABC_TYPE_WRITE_REPLACE:
|
|
|
|
if ((frame = switch_core_media_bug_get_write_replace_frame(bug))) {
|
|
|
|
int len;
|
|
|
|
|
2012-07-19 00:03:47 +00:00
|
|
|
if (pvt->tail_lead) {
|
|
|
|
if (!--pvt->tail_lead) {
|
|
|
|
r = SWITCH_FALSE;
|
|
|
|
}
|
|
|
|
memset(frame->data, 0, frame->datalen);
|
|
|
|
|
|
|
|
} else if (pvt->head_lead) {
|
|
|
|
pvt->head_lead--;
|
|
|
|
memset(frame->data, 0, frame->datalen);
|
|
|
|
} else {
|
|
|
|
len = v18_tx(pvt->tdd_state, frame->data, frame->samples);
|
|
|
|
|
|
|
|
if (!len) {
|
|
|
|
pvt->tail_lead = TDD_LEAD;
|
|
|
|
}
|
|
|
|
}
|
2012-06-23 18:48:20 -05:00
|
|
|
|
|
|
|
switch_core_media_bug_set_write_replace_frame(bug, frame);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case SWITCH_ABC_TYPE_WRITE:
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch_status_t spandsp_stop_tdd_encode_session(switch_core_session_t *session)
|
|
|
|
{
|
|
|
|
switch_media_bug_t *bug;
|
|
|
|
switch_channel_t *channel = switch_core_session_get_channel(session);
|
|
|
|
|
|
|
|
if ((bug = switch_channel_get_private(channel, "tdd_encode"))) {
|
|
|
|
switch_channel_set_private(channel, "tdd_encode", NULL);
|
|
|
|
switch_core_media_bug_remove(session, &bug);
|
|
|
|
return SWITCH_STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
return SWITCH_STATUS_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void put_text_msg(void *user_data, const uint8_t *msg, int len)
|
|
|
|
{
|
2012-07-19 00:03:47 +00:00
|
|
|
switch_tdd_t *pvt = (switch_tdd_t *) user_data;
|
|
|
|
switch_event_t *event, *clone;
|
|
|
|
switch_channel_t *channel = switch_core_session_get_channel(pvt->session);
|
|
|
|
switch_core_session_t *other_session;
|
|
|
|
|
2012-06-23 18:48:20 -05:00
|
|
|
|
2012-07-19 00:03:47 +00:00
|
|
|
switch_channel_add_variable_var_check(channel, "tdd_messages", (char *)msg, SWITCH_FALSE, SWITCH_STACK_PUSH);
|
2012-06-23 18:48:20 -05:00
|
|
|
|
|
|
|
|
2012-07-19 00:03:47 +00:00
|
|
|
if (switch_event_create_subclass(&event, SWITCH_EVENT_CUSTOM, MY_EVENT_TDD_RECV_MESSAGE) == SWITCH_STATUS_SUCCESS) {
|
2012-06-23 18:48:20 -05:00
|
|
|
|
2012-07-19 00:03:47 +00:00
|
|
|
switch_event_add_header_string(event, SWITCH_STACK_BOTTOM, "login", "mod_spandsp");
|
|
|
|
switch_event_add_header_string(event, SWITCH_STACK_BOTTOM, "proto", "tdd");
|
|
|
|
switch_event_add_header_string(event, SWITCH_STACK_BOTTOM, "subject", "TDD MESSAGE");
|
|
|
|
switch_event_add_header_string(event, SWITCH_STACK_BOTTOM, "TDD-Data", (char *)msg);
|
|
|
|
switch_event_add_header_string(event, SWITCH_STACK_BOTTOM, "Unique-ID", switch_core_session_get_uuid(pvt->session));
|
|
|
|
switch_event_add_body(event, "%s\n\n", (char *)msg);
|
|
|
|
|
|
|
|
if (switch_core_session_get_partner(pvt->session, &other_session) == SWITCH_STATUS_SUCCESS) {
|
|
|
|
|
|
|
|
if (switch_event_dup(&clone, event) == SWITCH_STATUS_SUCCESS) {
|
|
|
|
switch_core_session_receive_event(other_session, &clone);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (switch_event_dup(&clone, event) == SWITCH_STATUS_SUCCESS) {
|
|
|
|
switch_core_session_queue_event(other_session, &clone);
|
|
|
|
}
|
2012-06-23 18:48:20 -05:00
|
|
|
|
2012-07-19 00:03:47 +00:00
|
|
|
switch_core_session_rwunlock(other_session);
|
|
|
|
}
|
2012-06-23 18:48:20 -05:00
|
|
|
|
2012-07-19 00:03:47 +00:00
|
|
|
switch_event_fire(&event);
|
2012-06-23 18:48:20 -05:00
|
|
|
|
|
|
|
|
2012-07-19 00:03:47 +00:00
|
|
|
}
|
2012-06-23 18:48:20 -05:00
|
|
|
|
2012-07-19 00:03:47 +00:00
|
|
|
switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(pvt->session), SWITCH_LOG_DEBUG, "%s got TDD Message [%s]\n", switch_channel_get_name(channel), (char *)msg);
|
2012-06-23 18:48:20 -05:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-07-03 13:35:08 -05:00
|
|
|
static int get_v18_mode(switch_core_session_t *session)
|
|
|
|
{
|
2012-07-19 00:03:47 +00:00
|
|
|
switch_channel_t *channel = switch_core_session_get_channel(session);
|
|
|
|
const char *var;
|
|
|
|
int r = V18_MODE_5BIT_45;
|
|
|
|
|
|
|
|
if ((var = switch_channel_get_variable(channel, "v18_mode"))) {
|
|
|
|
if (!strcasecmp(var, "5BIT_45") || !strcasecmp(var, "baudot")) {
|
|
|
|
r = V18_MODE_5BIT_45;
|
|
|
|
} else if (!strcasecmp(var, "5BIT_50")) {
|
|
|
|
r = V18_MODE_5BIT_50;
|
|
|
|
} else if (!strcasecmp(var, "DTMF")) {
|
|
|
|
r = V18_MODE_DTMF;
|
|
|
|
} else if (!strcasecmp(var, "EDT")) {
|
|
|
|
r = V18_MODE_EDT;
|
|
|
|
} else if (!strcasecmp(var, "BELL103") || !strcasecmp(var, "ascii")) {
|
|
|
|
r = V18_MODE_BELL103;
|
|
|
|
} else if (!strcasecmp(var, "V23VIDEOTEX")) {
|
|
|
|
r = V18_MODE_V23VIDEOTEX;
|
|
|
|
} else if (!strcasecmp(var, "V21TEXTPHONE")) {
|
|
|
|
r = V18_MODE_V21TEXTPHONE;
|
|
|
|
} else if (!strcasecmp(var, "V18TEXTPHONE")) {
|
|
|
|
r = V18_MODE_V18TEXTPHONE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return r;
|
2012-07-03 13:35:08 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-06-23 18:48:20 -05:00
|
|
|
switch_status_t spandsp_tdd_send_session(switch_core_session_t *session, const char *text)
|
|
|
|
{
|
2012-07-19 00:03:47 +00:00
|
|
|
v18_state_t *tdd_state;
|
|
|
|
switch_frame_t *read_frame, write_frame = { 0 };
|
|
|
|
uint8_t write_buf[SWITCH_RECOMMENDED_BUFFER_SIZE];
|
2012-06-23 18:48:20 -05:00
|
|
|
switch_codec_implementation_t read_impl = { 0 };
|
|
|
|
switch_codec_t write_codec = { 0 };
|
2012-07-19 00:03:47 +00:00
|
|
|
switch_channel_t *channel = switch_core_session_get_channel(session);
|
|
|
|
switch_status_t status;
|
2012-06-23 18:48:20 -05:00
|
|
|
|
|
|
|
switch_core_session_get_read_impl(session, &read_impl);
|
2012-07-19 00:03:47 +00:00
|
|
|
|
|
|
|
if (switch_core_codec_init(&write_codec,
|
|
|
|
"L16",
|
|
|
|
NULL,
|
|
|
|
read_impl.actual_samples_per_second,
|
|
|
|
read_impl.microseconds_per_packet / 1000,
|
|
|
|
read_impl.number_of_channels,
|
|
|
|
SWITCH_CODEC_FLAG_ENCODE | SWITCH_CODEC_FLAG_DECODE, NULL,
|
|
|
|
switch_core_session_get_pool(session)) == SWITCH_STATUS_SUCCESS) {
|
|
|
|
write_frame.data = write_buf;
|
|
|
|
write_frame.buflen = sizeof(write_buf);
|
|
|
|
write_frame.datalen = read_impl.decoded_bytes_per_packet;
|
|
|
|
write_frame.samples = write_frame.datalen / 2;
|
|
|
|
write_frame.codec = &write_codec;
|
|
|
|
switch_core_session_set_read_codec(session, &write_codec);
|
|
|
|
} else {
|
|
|
|
return SWITCH_STATUS_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
tdd_state = v18_init(NULL, TRUE, get_v18_mode(session), put_text_msg, NULL);
|
|
|
|
|
|
|
|
|
2012-06-23 18:48:20 -05:00
|
|
|
v18_put(tdd_state, text, -1);
|
|
|
|
|
2012-07-19 00:03:47 +00:00
|
|
|
while(switch_channel_ready(channel)) {
|
2012-06-23 18:48:20 -05:00
|
|
|
status = switch_core_session_read_frame(session, &read_frame, SWITCH_IO_FLAG_NONE, 0);
|
|
|
|
|
|
|
|
if (!SWITCH_READ_ACCEPTABLE(status)) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-07-19 00:03:47 +00:00
|
|
|
if (!v18_tx(tdd_state, (void *)write_buf, write_frame.samples)) {
|
|
|
|
break;
|
|
|
|
}
|
2012-06-23 18:48:20 -05:00
|
|
|
|
2012-07-19 00:03:47 +00:00
|
|
|
if (switch_core_session_write_frame(session, &write_frame, SWITCH_IO_FLAG_NONE, 0) != SWITCH_STATUS_SUCCESS) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2012-06-23 18:48:20 -05:00
|
|
|
|
2012-07-19 00:03:47 +00:00
|
|
|
switch_core_codec_destroy(&write_codec);
|
|
|
|
switch_core_session_set_read_codec(session, NULL);
|
2012-06-23 18:48:20 -05:00
|
|
|
|
2012-07-19 00:03:47 +00:00
|
|
|
v18_free(tdd_state);
|
2012-06-23 18:48:20 -05:00
|
|
|
|
2012-07-19 00:03:47 +00:00
|
|
|
return SWITCH_STATUS_SUCCESS;
|
2012-06-23 18:48:20 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
switch_status_t spandsp_tdd_encode_session(switch_core_session_t *session, const char *text)
|
|
|
|
{
|
|
|
|
switch_channel_t *channel = switch_core_session_get_channel(session);
|
|
|
|
switch_media_bug_t *bug;
|
|
|
|
switch_status_t status;
|
|
|
|
switch_tdd_t *pvt;
|
|
|
|
//switch_codec_implementation_t read_impl = { 0 };
|
|
|
|
|
|
|
|
//switch_core_session_get_read_impl(session, &read_impl);
|
|
|
|
|
|
|
|
if (!(pvt = switch_core_session_alloc(session, sizeof(*pvt)))) {
|
|
|
|
return SWITCH_STATUS_MEMERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
pvt->session = session;
|
2012-07-03 13:35:08 -05:00
|
|
|
pvt->tdd_state = v18_init(NULL, TRUE, get_v18_mode(session), put_text_msg, NULL);
|
2012-07-19 00:03:47 +00:00
|
|
|
pvt->head_lead = TDD_LEAD;
|
2012-06-23 18:48:20 -05:00
|
|
|
|
|
|
|
v18_put(pvt->tdd_state, text, -1);
|
|
|
|
|
|
|
|
if ((status = switch_core_media_bug_add(session, "spandsp_tdd_encode", NULL,
|
2012-07-19 00:03:47 +00:00
|
|
|
tdd_encode_callback, pvt, 0, SMBF_WRITE_REPLACE | SMBF_NO_PAUSE, &bug)) != SWITCH_STATUS_SUCCESS) {
|
2012-06-23 18:48:20 -05:00
|
|
|
v18_free(pvt->tdd_state);
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch_channel_set_private(channel, "tdd_encode", bug);
|
|
|
|
|
|
|
|
return SWITCH_STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
///XXX
|
|
|
|
static switch_bool_t tdd_decode_callback(switch_media_bug_t *bug, void *user_data, switch_abc_type_t type)
|
|
|
|
{
|
|
|
|
switch_tdd_t *pvt = (switch_tdd_t *) user_data;
|
|
|
|
switch_frame_t *frame = NULL;
|
|
|
|
switch_bool_t r = SWITCH_TRUE;
|
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
case SWITCH_ABC_TYPE_INIT: {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case SWITCH_ABC_TYPE_CLOSE:
|
|
|
|
if (pvt->tdd_state) {
|
|
|
|
v18_free(pvt->tdd_state);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case SWITCH_ABC_TYPE_READ_REPLACE:
|
|
|
|
if ((frame = switch_core_media_bug_get_read_replace_frame(bug))) {
|
|
|
|
|
2012-07-19 00:03:47 +00:00
|
|
|
v18_rx(pvt->tdd_state, frame->data, frame->samples);
|
2012-06-23 18:48:20 -05:00
|
|
|
|
|
|
|
switch_core_media_bug_set_read_replace_frame(bug, frame);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case SWITCH_ABC_TYPE_WRITE:
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch_status_t spandsp_stop_tdd_decode_session(switch_core_session_t *session)
|
|
|
|
{
|
|
|
|
switch_media_bug_t *bug;
|
|
|
|
switch_channel_t *channel = switch_core_session_get_channel(session);
|
|
|
|
|
|
|
|
if ((bug = switch_channel_get_private(channel, "tdd_decode"))) {
|
|
|
|
switch_channel_set_private(channel, "tdd_decode", NULL);
|
|
|
|
switch_core_media_bug_remove(session, &bug);
|
|
|
|
return SWITCH_STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
return SWITCH_STATUS_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch_status_t spandsp_tdd_decode_session(switch_core_session_t *session)
|
|
|
|
{
|
|
|
|
switch_channel_t *channel = switch_core_session_get_channel(session);
|
|
|
|
switch_media_bug_t *bug;
|
|
|
|
switch_status_t status;
|
|
|
|
switch_tdd_t *pvt;
|
|
|
|
//switch_codec_implementation_t read_impl = { 0 };
|
|
|
|
|
|
|
|
//switch_core_session_get_read_impl(session, &read_impl);
|
|
|
|
|
|
|
|
if (!(pvt = switch_core_session_alloc(session, sizeof(*pvt)))) {
|
|
|
|
return SWITCH_STATUS_MEMERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
pvt->session = session;
|
2012-07-03 13:35:08 -05:00
|
|
|
pvt->tdd_state = v18_init(NULL, FALSE, get_v18_mode(session), put_text_msg, pvt);
|
2012-06-23 18:48:20 -05:00
|
|
|
|
|
|
|
if ((status = switch_core_media_bug_add(session, "spandsp_tdd_decode", NULL,
|
2012-07-19 00:03:47 +00:00
|
|
|
tdd_decode_callback, pvt, 0, SMBF_READ_REPLACE | SMBF_NO_PAUSE, &bug)) != SWITCH_STATUS_SUCCESS) {
|
2012-06-23 18:48:20 -05:00
|
|
|
v18_free(pvt->tdd_state);
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch_channel_set_private(channel, "tdd_decode", bug);
|
|
|
|
|
|
|
|
return SWITCH_STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
///XXX
|
|
|
|
|
2010-05-31 06:04:12 -04:00
|
|
|
typedef struct {
|
|
|
|
switch_core_session_t *session;
|
2010-05-31 07:34:23 -04:00
|
|
|
dtmf_rx_state_t *dtmf_detect;
|
|
|
|
char last_digit;
|
|
|
|
uint32_t samples;
|
|
|
|
uint32_t last_digit_end;
|
|
|
|
uint32_t digit_begin;
|
|
|
|
uint32_t min_dup_digit_spacing;
|
2012-04-12 10:00:37 -05:00
|
|
|
int twist;
|
|
|
|
int reverse_twist;
|
|
|
|
int filter_dialtone;
|
|
|
|
int threshold;
|
2010-05-31 06:04:12 -04:00
|
|
|
} switch_inband_dtmf_t;
|
|
|
|
|
2012-04-13 08:57:34 -05:00
|
|
|
static void spandsp_dtmf_rx_realtime_callback(void *user_data, int code, int level, int duration)
|
2010-05-31 07:34:23 -04:00
|
|
|
{
|
|
|
|
switch_inband_dtmf_t *pvt = (switch_inband_dtmf_t *)user_data;
|
|
|
|
char digit = (char)code;
|
2012-04-13 08:57:34 -05:00
|
|
|
pvt->samples += duration;
|
2010-05-31 07:34:23 -04:00
|
|
|
if (digit) {
|
|
|
|
/* prevent duplicate DTMF */
|
|
|
|
if (digit != pvt->last_digit || (pvt->samples - pvt->last_digit_end) > pvt->min_dup_digit_spacing) {
|
2011-09-08 08:12:07 -05:00
|
|
|
switch_dtmf_t dtmf = {0};
|
2010-05-31 07:34:23 -04:00
|
|
|
switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(pvt->session), SWITCH_LOG_DEBUG, "DTMF BEGIN DETECTED: [%c]\n", digit);
|
|
|
|
pvt->last_digit = digit;
|
|
|
|
dtmf.digit = digit;
|
|
|
|
dtmf.duration = switch_core_default_dtmf_duration(0);
|
2011-08-25 09:27:39 -05:00
|
|
|
dtmf.source = SWITCH_DTMF_INBAND_AUDIO;
|
2010-05-31 07:34:23 -04:00
|
|
|
switch_channel_queue_dtmf(switch_core_session_get_channel(pvt->session), &dtmf);
|
|
|
|
pvt->digit_begin = pvt->samples;
|
|
|
|
} else {
|
|
|
|
switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(pvt->session), SWITCH_LOG_DEBUG, "DUP DTMF DETECTED: [%c]\n", digit);
|
|
|
|
pvt->last_digit_end = pvt->samples;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(pvt->session), SWITCH_LOG_DEBUG, "DTMF END DETECTED: [%c], duration = %u ms\n", pvt->last_digit, (pvt->samples - pvt->digit_begin) / 8);
|
|
|
|
pvt->last_digit_end = pvt->samples;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-05-31 06:04:12 -04:00
|
|
|
static switch_bool_t inband_dtmf_callback(switch_media_bug_t *bug, void *user_data, switch_abc_type_t type)
|
|
|
|
{
|
|
|
|
switch_inband_dtmf_t *pvt = (switch_inband_dtmf_t *) user_data;
|
|
|
|
switch_frame_t *frame = NULL;
|
|
|
|
|
|
|
|
switch (type) {
|
2010-05-31 07:34:23 -04:00
|
|
|
case SWITCH_ABC_TYPE_INIT: {
|
|
|
|
pvt->dtmf_detect = dtmf_rx_init(NULL, NULL, NULL);
|
2012-04-12 10:00:37 -05:00
|
|
|
dtmf_rx_parms(pvt->dtmf_detect, pvt->filter_dialtone, pvt->twist, pvt->reverse_twist, pvt->threshold);
|
2010-05-31 07:34:23 -04:00
|
|
|
dtmf_rx_set_realtime_callback(pvt->dtmf_detect, spandsp_dtmf_rx_realtime_callback, pvt);
|
2010-05-31 06:04:12 -04:00
|
|
|
break;
|
2010-05-31 07:34:23 -04:00
|
|
|
}
|
2010-05-31 06:04:12 -04:00
|
|
|
case SWITCH_ABC_TYPE_CLOSE:
|
2010-05-31 07:34:23 -04:00
|
|
|
if (pvt->dtmf_detect) {
|
|
|
|
dtmf_rx_free(pvt->dtmf_detect);
|
|
|
|
}
|
2010-05-31 06:04:12 -04:00
|
|
|
break;
|
|
|
|
case SWITCH_ABC_TYPE_READ_REPLACE:
|
|
|
|
if ((frame = switch_core_media_bug_get_read_replace_frame(bug))) {
|
|
|
|
dtmf_rx(pvt->dtmf_detect, frame->data, frame->samples);
|
|
|
|
switch_core_media_bug_set_read_replace_frame(bug, frame);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case SWITCH_ABC_TYPE_WRITE:
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return SWITCH_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch_status_t spandsp_stop_inband_dtmf_session(switch_core_session_t *session)
|
|
|
|
{
|
|
|
|
switch_media_bug_t *bug;
|
|
|
|
switch_channel_t *channel = switch_core_session_get_channel(session);
|
|
|
|
|
|
|
|
if ((bug = switch_channel_get_private(channel, "dtmf"))) {
|
|
|
|
switch_channel_set_private(channel, "dtmf", NULL);
|
|
|
|
switch_core_media_bug_remove(session, &bug);
|
|
|
|
return SWITCH_STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
return SWITCH_STATUS_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch_status_t spandsp_inband_dtmf_session(switch_core_session_t *session)
|
|
|
|
{
|
|
|
|
switch_channel_t *channel = switch_core_session_get_channel(session);
|
|
|
|
switch_media_bug_t *bug;
|
|
|
|
switch_status_t status;
|
|
|
|
switch_inband_dtmf_t *pvt;
|
|
|
|
switch_codec_implementation_t read_impl = { 0 };
|
2012-04-12 10:00:37 -05:00
|
|
|
const char *value;
|
2010-05-31 06:04:12 -04:00
|
|
|
|
|
|
|
switch_core_session_get_read_impl(session, &read_impl);
|
|
|
|
|
|
|
|
if (!(pvt = switch_core_session_alloc(session, sizeof(*pvt)))) {
|
|
|
|
return SWITCH_STATUS_MEMERR;
|
|
|
|
}
|
|
|
|
|
2012-04-12 10:00:37 -05:00
|
|
|
pvt->session = session;
|
|
|
|
|
|
|
|
/* get detector params */
|
|
|
|
pvt->min_dup_digit_spacing = 0;
|
|
|
|
value = switch_channel_get_variable(channel, "min_dup_digit_spacing_ms");
|
|
|
|
if (!zstr(value) && switch_is_number(value)) {
|
|
|
|
int val = atoi(value) * 8; /* convert from ms to samples */
|
|
|
|
if (val < 0) {
|
|
|
|
switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_ERROR, "min_dup_digit_spacing_ms must be >= 0\n");
|
|
|
|
} else {
|
|
|
|
pvt->min_dup_digit_spacing = val;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pvt->threshold = -100;
|
|
|
|
value = switch_channel_get_variable(channel, "spandsp_dtmf_rx_threshold");
|
|
|
|
if (!zstr(value) && switch_is_number(value)) {
|
|
|
|
int val = atoi(value);
|
|
|
|
if (val < -99) {
|
|
|
|
switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_ERROR, "spandsp_dtmf_rx_threshold must be >= -99 dBm0\n");
|
|
|
|
} else {
|
|
|
|
pvt->threshold = val;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pvt->twist = -1;
|
|
|
|
value = switch_channel_get_variable(channel, "spandsp_dtmf_rx_twist");
|
|
|
|
if (!zstr(value) && switch_is_number(value)) {
|
|
|
|
int val = atoi(value);
|
|
|
|
if (val < 0) {
|
|
|
|
switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_ERROR, "spandsp_dtmf_rx_twist must be >= 0 dB\n");
|
|
|
|
} else {
|
|
|
|
pvt->twist = val;
|
|
|
|
}
|
|
|
|
}
|
2010-05-31 06:04:12 -04:00
|
|
|
|
2012-04-12 10:00:37 -05:00
|
|
|
pvt->reverse_twist = -1;
|
|
|
|
value = switch_channel_get_variable(channel, "spandsp_dtmf_rx_reverse_twist");
|
|
|
|
if (!zstr(value) && switch_is_number(value)) {
|
|
|
|
int val = atoi(value);
|
|
|
|
if (val < 0) {
|
|
|
|
switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_ERROR, "spandsp_dtmf_rx_reverse_twist must be >= 0 dB\n");
|
|
|
|
} else {
|
|
|
|
pvt->reverse_twist = val;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pvt->filter_dialtone = -1;
|
|
|
|
value = switch_channel_get_variable(channel, "spandsp_dtmf_rx_filter_dialtone");
|
|
|
|
if (switch_true(value)) {
|
|
|
|
pvt->filter_dialtone = 1;
|
|
|
|
} else if (switch_false(value)) {
|
|
|
|
pvt->filter_dialtone = 0;
|
|
|
|
}
|
2010-05-31 06:04:12 -04:00
|
|
|
|
|
|
|
if (switch_channel_pre_answer(channel) != SWITCH_STATUS_SUCCESS) {
|
|
|
|
return SWITCH_STATUS_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((status = switch_core_media_bug_add(session, "spandsp_dtmf_detect", NULL,
|
2013-03-27 17:19:40 -05:00
|
|
|
inband_dtmf_callback, pvt, 0, SMBF_READ_REPLACE | SMBF_NO_PAUSE | SMBF_ONE_ONLY, &bug)) != SWITCH_STATUS_SUCCESS) {
|
2010-05-31 06:04:12 -04:00
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch_channel_set_private(channel, "dtmf", bug);
|
|
|
|
|
|
|
|
return SWITCH_STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2010-05-31 08:06:03 -04:00
|
|
|
|
|
|
|
|
|
|
|
/* private channel data */
|
|
|
|
#define TONE_PRIVATE "mod_tone_detect_bug"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Tone detector
|
|
|
|
*
|
|
|
|
* Performs detection for the tones described by the descriptor.
|
|
|
|
*/
|
|
|
|
struct tone_detector {
|
|
|
|
/** The tones to look for */
|
|
|
|
tone_descriptor_t *descriptor;
|
|
|
|
|
|
|
|
/** The detector */
|
|
|
|
super_tone_rx_state_t *spandsp_detector;
|
|
|
|
|
|
|
|
/** The detected tone */
|
|
|
|
int detected_tone;
|
|
|
|
|
|
|
|
/** The debug level */
|
|
|
|
int debug;
|
2012-07-19 00:17:26 +00:00
|
|
|
|
|
|
|
/** The session that owns this detector */
|
|
|
|
switch_core_session_t *session;
|
2010-05-31 08:06:03 -04:00
|
|
|
};
|
|
|
|
typedef struct tone_detector tone_detector_t;
|
|
|
|
|
2012-07-19 00:17:26 +00:00
|
|
|
static switch_status_t tone_detector_create(switch_core_session_t *session, tone_detector_t **detector, tone_descriptor_t *descriptor);
|
2010-05-31 08:06:03 -04:00
|
|
|
static switch_bool_t tone_detector_process_buffer(tone_detector_t *detector, void *data, unsigned int len, const char **key);
|
|
|
|
static void tone_detector_destroy(tone_detector_t *detector);
|
|
|
|
|
|
|
|
static switch_bool_t callprogress_detector_process_buffer(switch_media_bug_t *bug, void *user_data, switch_abc_type_t type);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Allocate the tone descriptor
|
|
|
|
*
|
|
|
|
* @param descriptor the descriptor to create
|
|
|
|
* @param name the descriptor name
|
|
|
|
* @param memory_pool the pool to use
|
|
|
|
* @return SWITCH_STATUS_SUCCESS if successful
|
|
|
|
*/
|
2011-12-06 17:51:27 -06:00
|
|
|
switch_status_t tone_descriptor_create(tone_descriptor_t **descriptor, const char *name, switch_memory_pool_t *memory_pool)
|
2010-05-31 08:06:03 -04:00
|
|
|
{
|
|
|
|
tone_descriptor_t *ldescriptor = NULL;
|
|
|
|
ldescriptor = switch_core_alloc(memory_pool, sizeof(tone_descriptor_t));
|
|
|
|
if (!ldescriptor) {
|
|
|
|
return SWITCH_STATUS_FALSE;
|
|
|
|
}
|
|
|
|
memset(ldescriptor, 0, sizeof(tone_descriptor_t));
|
|
|
|
ldescriptor->name = switch_core_strdup(memory_pool, name);
|
|
|
|
ldescriptor->spandsp_tone_descriptor = super_tone_rx_make_descriptor(NULL);
|
|
|
|
*descriptor = ldescriptor;
|
|
|
|
return SWITCH_STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add a tone to the tone descriptor
|
|
|
|
*
|
|
|
|
* @param descriptor the tone descriptor
|
|
|
|
* @param key the tone key - this will be returned by the detector upon match
|
|
|
|
* @return the tone ID
|
|
|
|
*/
|
2011-12-06 17:51:27 -06:00
|
|
|
int tone_descriptor_add_tone(tone_descriptor_t *descriptor, const char *key)
|
2010-05-31 08:06:03 -04:00
|
|
|
{
|
|
|
|
int id = super_tone_rx_add_tone(descriptor->spandsp_tone_descriptor);
|
|
|
|
if (id >= MAX_TONES) {
|
|
|
|
return -1;
|
|
|
|
}
|
2011-06-17 11:51:18 -05:00
|
|
|
switch_set_string(descriptor->tone_keys[id], key);
|
|
|
|
|
2012-07-19 00:03:47 +00:00
|
|
|
if (id > descriptor->idx) {
|
|
|
|
descriptor->idx = id;
|
|
|
|
}
|
2010-05-31 08:06:03 -04:00
|
|
|
|
|
|
|
return id;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add a tone element to the tone descriptor
|
|
|
|
*
|
|
|
|
* @param descriptor the tone descriptor
|
|
|
|
* @param tone_id the tone ID
|
|
|
|
* @param freq1 the first frequency (0 if none)
|
|
|
|
* @param freq2 the second frequency (0 if none)
|
|
|
|
* @param min the minimum tone duration in ms
|
|
|
|
* @param max the maximum tone duration in ms
|
|
|
|
* @return SWITCH_STATUS_SUCCESS if successful
|
|
|
|
*/
|
2011-12-06 17:51:27 -06:00
|
|
|
switch_status_t tone_descriptor_add_tone_element(tone_descriptor_t *descriptor, int tone_id, int freq1, int freq2, int min, int max)
|
2010-05-31 08:06:03 -04:00
|
|
|
{
|
|
|
|
if (super_tone_rx_add_element(descriptor->spandsp_tone_descriptor, tone_id, freq1, freq2, min, max) == 0) {
|
|
|
|
return SWITCH_STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
return SWITCH_STATUS_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Process tone report callback from spandsp
|
|
|
|
*
|
|
|
|
* @param user_data the tone_detector
|
|
|
|
* @param code the detected tone
|
|
|
|
* @param level unused
|
|
|
|
* @param delay unused
|
|
|
|
*/
|
|
|
|
static void tone_report_callback(void *user_data, int code, int level, int delay)
|
|
|
|
{
|
|
|
|
tone_detector_t *detector = (tone_detector_t *)user_data;
|
|
|
|
if (detector->debug > 0) {
|
2012-07-19 00:17:26 +00:00
|
|
|
switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(detector->session), SWITCH_LOG_DEBUG, "Tone report: code = %d, level = %d, delay = %d\n", code, level, delay);
|
2010-05-31 08:06:03 -04:00
|
|
|
}
|
|
|
|
detector->detected_tone = code;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Process tone segment report from spandsp (for debugging)
|
|
|
|
*
|
|
|
|
* @param user_data the tone_detector
|
|
|
|
* @param f1 the first frequency of the segment
|
|
|
|
* @param f2 the second frequency of the segment
|
|
|
|
* @param duration the duration of the segment
|
|
|
|
*/
|
|
|
|
static void tone_segment_callback(void *user_data, int f1, int f2, int duration)
|
|
|
|
{
|
|
|
|
tone_detector_t *detector = (tone_detector_t *)user_data;
|
|
|
|
if (detector->debug > 1) {
|
2012-07-19 00:17:26 +00:00
|
|
|
switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(detector->session), SWITCH_LOG_DEBUG, "Tone segment: f1 = %d, f2 = %d, duration = %d\n", f1, f2, duration);
|
2010-05-31 08:06:03 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Allocate the tone detector
|
|
|
|
*
|
2012-07-19 00:17:26 +00:00
|
|
|
* @param session the session that owns the detector
|
2010-05-31 08:06:03 -04:00
|
|
|
* @param detector the detector to create
|
|
|
|
* @param descriptor the descriptor to use
|
|
|
|
* @param memory_pool the pool to use
|
|
|
|
* @return SWITCH_STATUS_SUCCESS if successful
|
|
|
|
*/
|
2012-07-19 00:17:26 +00:00
|
|
|
static switch_status_t tone_detector_create(switch_core_session_t *session, tone_detector_t **detector, tone_descriptor_t *descriptor)
|
2010-05-31 08:06:03 -04:00
|
|
|
{
|
|
|
|
tone_detector_t *ldetector = NULL;
|
2012-07-19 00:17:26 +00:00
|
|
|
ldetector = switch_core_session_alloc(session, sizeof(tone_detector_t));
|
2010-05-31 08:06:03 -04:00
|
|
|
if (!ldetector) {
|
|
|
|
return SWITCH_STATUS_FALSE;
|
|
|
|
}
|
|
|
|
memset(ldetector, 0, sizeof(tone_detector_t));
|
|
|
|
ldetector->descriptor = descriptor;
|
2011-12-06 17:51:27 -06:00
|
|
|
ldetector->debug = spandsp_globals.tonedebug;
|
2012-07-19 00:17:26 +00:00
|
|
|
ldetector->session = session;
|
2010-05-31 08:06:03 -04:00
|
|
|
*detector = ldetector;
|
|
|
|
return SWITCH_STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initialize detector. Call when media bug starts detection
|
|
|
|
*
|
|
|
|
* @param detector the detector to initialize
|
|
|
|
*/
|
|
|
|
static void tone_detector_init(tone_detector_t *detector)
|
|
|
|
{
|
|
|
|
detector->spandsp_detector = super_tone_rx_init(NULL, detector->descriptor->spandsp_tone_descriptor, tone_report_callback, detector);
|
|
|
|
super_tone_rx_segment_callback(detector->spandsp_detector, tone_segment_callback);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Process the buffer looking for tones
|
|
|
|
*
|
|
|
|
* @param data the data to process
|
|
|
|
* @param len the amount of data to process
|
|
|
|
* @param key the found tone key
|
|
|
|
* @return SWITCH_TRUE if a tone was found
|
|
|
|
*/
|
|
|
|
static switch_bool_t tone_detector_process_buffer(tone_detector_t *detector, void *data, unsigned int len, const char **key)
|
|
|
|
{
|
|
|
|
detector->detected_tone = -1;
|
|
|
|
super_tone_rx(detector->spandsp_detector, data, len);
|
2011-06-17 11:51:18 -05:00
|
|
|
|
2011-06-17 15:56:27 -05:00
|
|
|
if (detector->detected_tone > -1 && detector->detected_tone <= detector->descriptor->idx && detector->detected_tone < MAX_TONES) {
|
2010-05-31 08:06:03 -04:00
|
|
|
*key = detector->descriptor->tone_keys[detector->detected_tone];
|
|
|
|
return SWITCH_TRUE;
|
|
|
|
}
|
|
|
|
return SWITCH_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Destroy the tone detector
|
|
|
|
* @param detector the detector to destroy
|
|
|
|
*/
|
|
|
|
static void tone_detector_destroy(tone_detector_t *detector)
|
|
|
|
{
|
|
|
|
if (detector) {
|
|
|
|
if (detector->spandsp_detector) {
|
|
|
|
super_tone_rx_release(detector->spandsp_detector);
|
|
|
|
super_tone_rx_free(detector->spandsp_detector);
|
|
|
|
detector->spandsp_detector = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Start call progress detection
|
|
|
|
*
|
|
|
|
* @param session the session to detect
|
|
|
|
* @param name of the descriptor to use
|
|
|
|
* @return SWITCH_STATUS_SUCCESS if successful
|
|
|
|
*/
|
|
|
|
switch_status_t callprogress_detector_start(switch_core_session_t *session, const char *name)
|
|
|
|
{
|
|
|
|
switch_channel_t *channel = switch_core_session_get_channel(session);
|
|
|
|
tone_detector_t *detector = NULL;
|
|
|
|
tone_descriptor_t *descriptor = NULL;
|
|
|
|
switch_media_bug_t *bug = NULL;
|
|
|
|
|
|
|
|
/* are we already running? */
|
|
|
|
bug = switch_channel_get_private(channel, TONE_PRIVATE);
|
|
|
|
if (bug) {
|
|
|
|
return SWITCH_STATUS_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* find the tone descriptor with the matching name and create the detector */
|
2011-12-06 17:51:27 -06:00
|
|
|
descriptor = switch_core_hash_find(spandsp_globals.tones, name);
|
2010-05-31 08:06:03 -04:00
|
|
|
if (!descriptor) {
|
2012-07-19 00:17:26 +00:00
|
|
|
switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_WARNING, "no tone descriptor defined with name '%s'. Update configuration. \n", name);
|
2010-05-31 08:06:03 -04:00
|
|
|
return SWITCH_STATUS_FALSE;
|
|
|
|
}
|
2012-07-19 00:17:26 +00:00
|
|
|
tone_detector_create(session, &detector, descriptor);
|
2010-05-31 08:06:03 -04:00
|
|
|
|
|
|
|
/* start listening for tones */
|
2012-07-19 00:17:26 +00:00
|
|
|
switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_DEBUG, "Starting tone detection for '%s'\n", name);
|
2010-05-31 08:06:03 -04:00
|
|
|
switch_core_media_bug_add(session, "spandsp_tone_detect", NULL,
|
2012-07-19 00:03:47 +00:00
|
|
|
callprogress_detector_process_buffer, detector, 0 /* stop time */, SMBF_READ_REPLACE, &bug);
|
2010-05-31 08:06:03 -04:00
|
|
|
if (!bug) {
|
|
|
|
return SWITCH_STATUS_FALSE;
|
|
|
|
}
|
|
|
|
switch_channel_set_private(channel, TONE_PRIVATE, bug);
|
|
|
|
|
|
|
|
return SWITCH_STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Process a buffer of audio data for call progress tones
|
|
|
|
*
|
|
|
|
* @param bug the session's media bug
|
|
|
|
* @param user_data the detector
|
|
|
|
* @param type the type of data available from the bug
|
|
|
|
* @return SWITCH_TRUE
|
|
|
|
*/
|
|
|
|
static switch_bool_t callprogress_detector_process_buffer(switch_media_bug_t *bug, void *user_data, switch_abc_type_t type)
|
|
|
|
{
|
|
|
|
tone_detector_t *detector = (tone_detector_t *)user_data;
|
2012-07-19 00:17:26 +00:00
|
|
|
switch_core_session_t *session = detector->session;
|
2010-05-31 08:06:03 -04:00
|
|
|
|
|
|
|
switch(type) {
|
|
|
|
case SWITCH_ABC_TYPE_INIT:
|
2012-07-19 00:17:26 +00:00
|
|
|
switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_INFO, "initializing tone detector\n");
|
2010-05-31 08:06:03 -04:00
|
|
|
tone_detector_init(detector);
|
|
|
|
break;
|
2012-07-17 17:19:28 -05:00
|
|
|
case SWITCH_ABC_TYPE_READ_REPLACE:
|
2010-05-31 08:06:03 -04:00
|
|
|
{
|
2012-07-19 00:03:47 +00:00
|
|
|
switch_frame_t *frame;
|
2010-05-31 08:06:03 -04:00
|
|
|
const char *detected_tone = NULL;
|
|
|
|
if (!detector->spandsp_detector) {
|
2012-07-19 00:17:26 +00:00
|
|
|
switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_INFO, "detector is destroyed\n");
|
2010-05-31 08:06:03 -04:00
|
|
|
return SWITCH_FALSE;
|
|
|
|
}
|
2012-07-17 17:19:28 -05:00
|
|
|
if (!(frame = switch_core_media_bug_get_read_replace_frame(bug))) {
|
2012-07-19 00:17:26 +00:00
|
|
|
switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_INFO, "error reading frame\n");
|
2010-05-31 08:06:03 -04:00
|
|
|
return SWITCH_FALSE;
|
|
|
|
}
|
2012-07-17 17:32:46 -05:00
|
|
|
tone_detector_process_buffer(detector, frame->data, frame->samples, &detected_tone);
|
2010-05-31 08:06:03 -04:00
|
|
|
if (detected_tone) {
|
|
|
|
switch_event_t *event = NULL;
|
2013-01-07 11:06:55 -06:00
|
|
|
switch_channel_t *channel = NULL;
|
2012-07-19 00:17:26 +00:00
|
|
|
switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_INFO, "DETECTED TONE: %s\n", detected_tone);
|
2010-05-31 08:06:03 -04:00
|
|
|
if (switch_event_create(&event, SWITCH_EVENT_DETECTED_TONE) == SWITCH_STATUS_SUCCESS) {
|
|
|
|
switch_event_add_header_string(event, SWITCH_STACK_BOTTOM, "Detected-Tone", detected_tone);
|
|
|
|
switch_event_add_header_string(event, SWITCH_STACK_BOTTOM, "Unique-ID", switch_core_session_get_uuid(session));
|
2013-01-07 11:06:55 -06:00
|
|
|
|
|
|
|
channel = switch_core_session_get_channel(session);
|
|
|
|
if (channel) switch_channel_event_set_data(channel, event);
|
|
|
|
|
2010-05-31 08:06:03 -04:00
|
|
|
switch_event_fire(&event);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case SWITCH_ABC_TYPE_CLOSE:
|
|
|
|
if (detector->spandsp_detector) {
|
2012-07-19 00:17:26 +00:00
|
|
|
switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_INFO, "destroying tone detector\n");
|
2010-05-31 08:06:03 -04:00
|
|
|
tone_detector_destroy(detector);
|
|
|
|
}
|
|
|
|
break;
|
2012-07-19 00:03:47 +00:00
|
|
|
default:
|
|
|
|
break;
|
2010-05-31 08:06:03 -04:00
|
|
|
}
|
|
|
|
return SWITCH_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Stop call progress detection
|
|
|
|
* @param session the session to stop
|
|
|
|
* @return SWITCH_STATUS_SUCCESS if successful
|
|
|
|
*/
|
|
|
|
switch_status_t callprogress_detector_stop(switch_core_session_t *session)
|
|
|
|
{
|
|
|
|
switch_channel_t *channel = switch_core_session_get_channel(session);
|
|
|
|
switch_media_bug_t *bug = switch_channel_get_private(channel, TONE_PRIVATE);
|
|
|
|
if (bug) {
|
2010-12-02 17:11:04 -06:00
|
|
|
switch_core_media_bug_remove(session, &bug);
|
2010-05-31 08:06:03 -04:00
|
|
|
switch_channel_set_private(channel, TONE_PRIVATE, NULL);
|
|
|
|
}
|
|
|
|
return SWITCH_STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Called when FreeSWITCH loads the module
|
|
|
|
*/
|
|
|
|
switch_status_t mod_spandsp_dsp_load(switch_loadable_module_interface_t **module_interface, switch_memory_pool_t *pool)
|
|
|
|
{
|
|
|
|
/* indicate that the module should continue to be loaded */
|
|
|
|
return SWITCH_STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Called when FreeSWITCH stops the module
|
|
|
|
*/
|
|
|
|
void mod_spandsp_dsp_shutdown(void)
|
|
|
|
{
|
2012-07-19 00:03:47 +00:00
|
|
|
return;
|
2010-05-31 08:06:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-05-31 06:04:12 -04:00
|
|
|
/* For Emacs:
|
|
|
|
* Local Variables:
|
|
|
|
* mode:c
|
|
|
|
* indent-tabs-mode:nil
|
|
|
|
* tab-width:4
|
|
|
|
* c-basic-offset:4
|
|
|
|
* End:
|
|
|
|
* For VIM:
|
|
|
|
* vim:set softtabstop=4 shiftwidth=4 tabstop=4:
|
|
|
|
*/
|