2006-01-03 22:13:59 +00:00
|
|
|
/*
|
|
|
|
* FreeSWITCH Modular Media Switching Software Library / Soft-Switch Application
|
2011-01-05 10:08:55 -06:00
|
|
|
* Copyright (C) 2005-2011, Anthony Minessale II <anthm@freeswitch.org>
|
2006-01-03 22:13:59 +00: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 Modular Media Switching Software Library / Soft-Switch Application
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
2009-02-04 21:20:54 +00:00
|
|
|
* Anthony Minessale II <anthm@freeswitch.org>
|
2006-01-03 22:13:59 +00:00
|
|
|
* Portions created by the Initial Developer are Copyright (C)
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
*
|
2009-02-04 21:20:54 +00:00
|
|
|
* Anthony Minessale II <anthm@freeswitch.org>
|
2006-01-03 22:13:59 +00:00
|
|
|
*
|
|
|
|
*
|
2008-02-01 06:22:13 +00:00
|
|
|
* mod_speex.c -- Speex Codec Module
|
2006-01-03 22:13:59 +00:00
|
|
|
*
|
|
|
|
*/
|
2008-02-01 06:22:13 +00:00
|
|
|
|
2006-01-03 22:13:59 +00:00
|
|
|
#include <switch.h>
|
|
|
|
#include <speex/speex.h>
|
|
|
|
#include <speex/speex_preprocess.h>
|
|
|
|
|
2007-06-13 17:06:10 +00:00
|
|
|
SWITCH_MODULE_LOAD_FUNCTION(mod_speex_load);
|
|
|
|
SWITCH_MODULE_DEFINITION(mod_speex, mod_speex_load, NULL, NULL);
|
2006-01-03 22:13:59 +00:00
|
|
|
|
2010-09-29 16:52:34 -05:00
|
|
|
/* nobody has more setting than speex so we will let them set the standard */
|
|
|
|
/*! \brief Various codec settings (currently only relevant to speex) */
|
|
|
|
struct speex_codec_settings {
|
|
|
|
/*! desired quality */
|
|
|
|
int quality;
|
|
|
|
/*! desired complexity */
|
|
|
|
int complexity;
|
|
|
|
/*! desired enhancement */
|
|
|
|
int enhancement;
|
|
|
|
/*! desired vad level */
|
|
|
|
int vad;
|
|
|
|
/*! desired vbr level */
|
|
|
|
int vbr;
|
|
|
|
/*! desired vbr quality */
|
|
|
|
float vbr_quality;
|
|
|
|
/*! desired abr level */
|
|
|
|
int abr;
|
|
|
|
/*! desired dtx setting */
|
|
|
|
int dtx;
|
|
|
|
/*! desired preprocessor settings */
|
|
|
|
int preproc;
|
|
|
|
/*! preprocessor vad settings */
|
|
|
|
int pp_vad;
|
|
|
|
/*! preprocessor gain control settings */
|
|
|
|
int pp_agc;
|
|
|
|
/*! preprocessor gain level */
|
|
|
|
float pp_agc_level;
|
|
|
|
/*! preprocessor denoise level */
|
|
|
|
int pp_denoise;
|
|
|
|
/*! preprocessor dereverb settings */
|
|
|
|
int pp_dereverb;
|
|
|
|
/*! preprocessor dereverb decay level */
|
|
|
|
float pp_dereverb_decay;
|
|
|
|
/*! preprocessor dereverb level */
|
|
|
|
float pp_dereverb_level;
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct speex_codec_settings speex_codec_settings_t;
|
|
|
|
|
|
|
|
static speex_codec_settings_t default_codec_settings = {
|
2006-01-20 15:05:05 +00:00
|
|
|
/*.quality */ 5,
|
|
|
|
/*.complexity */ 5,
|
|
|
|
/*.enhancement */ 1,
|
|
|
|
/*.vad */ 0,
|
|
|
|
/*.vbr */ 0,
|
|
|
|
/*.vbr_quality */ 4,
|
|
|
|
/*.abr */ 0,
|
|
|
|
/*.dtx */ 0,
|
|
|
|
/*.preproc */ 0,
|
|
|
|
/*.pp_vad */ 0,
|
|
|
|
/*.pp_agc */ 0,
|
|
|
|
/*.pp_agc_level */ 8000,
|
|
|
|
/*.pp_denoise */ 0,
|
|
|
|
/*.pp_dereverb */ 0,
|
|
|
|
/*.pp_dereverb_decay */ 0.4f,
|
|
|
|
/*.pp_dereverb_level */ 0.3f,
|
2006-01-03 22:13:59 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct speex_context {
|
2006-04-29 06:05:03 +00:00
|
|
|
switch_codec_t *codec;
|
2010-09-29 16:52:34 -05:00
|
|
|
speex_codec_settings_t codec_settings;
|
2006-01-03 22:13:59 +00:00
|
|
|
unsigned int flags;
|
|
|
|
|
|
|
|
/* Encoder */
|
|
|
|
void *encoder_state;
|
|
|
|
struct SpeexBits encoder_bits;
|
|
|
|
unsigned int encoder_frame_size;
|
|
|
|
int encoder_mode;
|
|
|
|
SpeexPreprocessState *pp;
|
|
|
|
|
|
|
|
/* Decoder */
|
|
|
|
void *decoder_state;
|
|
|
|
struct SpeexBits decoder_bits;
|
|
|
|
unsigned int decoder_frame_size;
|
|
|
|
int decoder_mode;
|
|
|
|
};
|
|
|
|
|
2010-09-29 16:52:34 -05:00
|
|
|
static switch_status_t switch_speex_fmtp_parse(const char *fmtp, switch_codec_fmtp_t *codec_fmtp)
|
|
|
|
{
|
|
|
|
if (codec_fmtp) {
|
|
|
|
speex_codec_settings_t *codec_settings = NULL;
|
|
|
|
if (codec_fmtp->private_info) {
|
|
|
|
codec_settings = codec_fmtp->private_info;
|
|
|
|
memcpy(codec_settings, &default_codec_settings, sizeof(*codec_settings));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fmtp) {
|
|
|
|
int x, argc;
|
|
|
|
char *argv[10];
|
|
|
|
char *fmtp_dup = strdup(fmtp);
|
|
|
|
|
|
|
|
switch_assert(fmtp_dup);
|
|
|
|
|
|
|
|
argc = switch_separate_string(fmtp_dup, ';', argv, (sizeof(argv) / sizeof(argv[0])));
|
|
|
|
|
|
|
|
for (x = 0; x < argc; x++) {
|
|
|
|
char *data = argv[x];
|
|
|
|
char *arg;
|
|
|
|
switch_assert(data);
|
|
|
|
while (*data == ' ') {
|
|
|
|
data++;
|
|
|
|
}
|
|
|
|
if ((arg = strchr(data, '='))) {
|
|
|
|
*arg++ = '\0';
|
|
|
|
/*
|
|
|
|
if (!strcasecmp(data, "bitrate")) {
|
|
|
|
bit_rate = atoi(arg);
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
if (codec_settings) {
|
|
|
|
if (!strcasecmp(data, "vad")) {
|
|
|
|
bit_rate = atoi(arg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
}
|
|
|
|
free(fmtp_dup);
|
|
|
|
}
|
|
|
|
/*codec_fmtp->bits_per_second = bit_rate;*/
|
|
|
|
return SWITCH_STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
return SWITCH_STATUS_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-02-14 01:05:25 +00:00
|
|
|
static switch_status_t switch_speex_init(switch_codec_t *codec, switch_codec_flag_t flags, const switch_codec_settings_t *codec_settings)
|
2006-01-03 22:13:59 +00:00
|
|
|
{
|
|
|
|
struct speex_context *context = NULL;
|
|
|
|
int encoding, decoding;
|
2006-01-20 15:05:05 +00:00
|
|
|
|
2006-01-03 22:13:59 +00:00
|
|
|
encoding = (flags & SWITCH_CODEC_FLAG_ENCODE);
|
|
|
|
decoding = (flags & SWITCH_CODEC_FLAG_DECODE);
|
|
|
|
|
2006-02-20 04:36:29 +00:00
|
|
|
if (!(encoding || decoding) || ((context = switch_core_alloc(codec->memory_pool, sizeof(*context))) == 0)) {
|
2006-01-03 22:13:59 +00:00
|
|
|
return SWITCH_STATUS_FALSE;
|
|
|
|
} else {
|
|
|
|
const SpeexMode *mode = NULL;
|
2010-09-29 16:52:34 -05:00
|
|
|
switch_codec_fmtp_t codec_fmtp;
|
|
|
|
speex_codec_settings_t codec_settings;
|
|
|
|
|
|
|
|
memset(&codec_fmtp, '\0', sizeof(struct switch_codec_fmtp));
|
|
|
|
codec_fmtp.private_info = &codec_settings;
|
|
|
|
switch_speex_fmtp_parse(codec->fmtp_in, &codec_fmtp);
|
|
|
|
|
|
|
|
memcpy(&context->codec_settings, &codec_settings, sizeof(context->codec_settings));
|
2006-01-20 15:05:05 +00:00
|
|
|
|
2006-01-03 22:13:59 +00:00
|
|
|
context->codec = codec;
|
2007-10-19 15:31:02 +00:00
|
|
|
if (codec->implementation->actual_samples_per_second == 8000) {
|
2006-01-03 22:13:59 +00:00
|
|
|
mode = &speex_nb_mode;
|
2007-10-19 15:31:02 +00:00
|
|
|
} else if (codec->implementation->actual_samples_per_second == 16000) {
|
2006-01-03 22:13:59 +00:00
|
|
|
mode = &speex_wb_mode;
|
2007-10-19 15:31:02 +00:00
|
|
|
} else if (codec->implementation->actual_samples_per_second == 32000) {
|
2006-01-03 22:13:59 +00:00
|
|
|
mode = &speex_uwb_mode;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!mode) {
|
|
|
|
return SWITCH_STATUS_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (encoding) {
|
|
|
|
speex_bits_init(&context->encoder_bits);
|
|
|
|
context->encoder_state = speex_encoder_init(mode);
|
|
|
|
speex_encoder_ctl(context->encoder_state, SPEEX_GET_FRAME_SIZE, &context->encoder_frame_size);
|
2010-09-29 16:52:34 -05:00
|
|
|
speex_encoder_ctl(context->encoder_state, SPEEX_SET_COMPLEXITY, &context->codec_settings.complexity);
|
|
|
|
if (context->codec_settings.preproc) {
|
2007-10-19 15:31:02 +00:00
|
|
|
context->pp = speex_preprocess_state_init(context->encoder_frame_size, codec->implementation->actual_samples_per_second);
|
2010-09-29 16:52:34 -05:00
|
|
|
speex_preprocess_ctl(context->pp, SPEEX_PREPROCESS_SET_VAD, &context->codec_settings.pp_vad);
|
|
|
|
speex_preprocess_ctl(context->pp, SPEEX_PREPROCESS_SET_AGC, &context->codec_settings.pp_agc);
|
|
|
|
speex_preprocess_ctl(context->pp, SPEEX_PREPROCESS_SET_AGC_LEVEL, &context->codec_settings.pp_agc_level);
|
|
|
|
speex_preprocess_ctl(context->pp, SPEEX_PREPROCESS_SET_DENOISE, &context->codec_settings.pp_denoise);
|
|
|
|
speex_preprocess_ctl(context->pp, SPEEX_PREPROCESS_SET_DEREVERB, &context->codec_settings.pp_dereverb);
|
|
|
|
speex_preprocess_ctl(context->pp, SPEEX_PREPROCESS_SET_DEREVERB_DECAY, &context->codec_settings.pp_dereverb_decay);
|
|
|
|
speex_preprocess_ctl(context->pp, SPEEX_PREPROCESS_SET_DEREVERB_LEVEL, &context->codec_settings.pp_dereverb_level);
|
2006-01-03 22:13:59 +00:00
|
|
|
}
|
|
|
|
|
2010-09-29 16:52:34 -05:00
|
|
|
if (!context->codec_settings.abr && !context->codec_settings.vbr) {
|
|
|
|
speex_encoder_ctl(context->encoder_state, SPEEX_SET_QUALITY, &context->codec_settings.quality);
|
|
|
|
if (context->codec_settings.vad) {
|
|
|
|
speex_encoder_ctl(context->encoder_state, SPEEX_SET_VAD, &context->codec_settings.vad);
|
2006-01-03 22:13:59 +00:00
|
|
|
}
|
|
|
|
}
|
2010-09-29 16:52:34 -05:00
|
|
|
if (context->codec_settings.vbr) {
|
|
|
|
speex_encoder_ctl(context->encoder_state, SPEEX_SET_VBR, &context->codec_settings.vbr);
|
|
|
|
speex_encoder_ctl(context->encoder_state, SPEEX_SET_VBR_QUALITY, &context->codec_settings.vbr_quality);
|
2006-01-03 22:13:59 +00:00
|
|
|
}
|
2010-09-29 16:52:34 -05:00
|
|
|
if (context->codec_settings.abr) {
|
|
|
|
speex_encoder_ctl(context->encoder_state, SPEEX_SET_ABR, &context->codec_settings.abr);
|
2006-01-03 22:13:59 +00:00
|
|
|
}
|
2010-09-29 16:52:34 -05:00
|
|
|
if (context->codec_settings.dtx) {
|
|
|
|
speex_encoder_ctl(context->encoder_state, SPEEX_SET_DTX, &context->codec_settings.dtx);
|
2006-01-20 15:05:05 +00:00
|
|
|
}
|
2006-01-03 22:13:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (decoding) {
|
|
|
|
speex_bits_init(&context->decoder_bits);
|
|
|
|
context->decoder_state = speex_decoder_init(mode);
|
2010-09-29 16:52:34 -05:00
|
|
|
if (context->codec_settings.enhancement) {
|
|
|
|
speex_decoder_ctl(context->decoder_state, SPEEX_SET_ENH, &context->codec_settings.enhancement);
|
2006-01-03 22:13:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2006-02-26 04:52:34 +00:00
|
|
|
codec->private_info = context;
|
2006-01-03 22:13:59 +00:00
|
|
|
return SWITCH_STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-04-29 23:43:28 +00:00
|
|
|
static switch_status_t switch_speex_encode(switch_codec_t *codec,
|
2007-03-29 22:31:56 +00:00
|
|
|
switch_codec_t *other_codec,
|
|
|
|
void *decoded_data,
|
|
|
|
uint32_t decoded_data_len,
|
2008-05-27 04:54:52 +00:00
|
|
|
uint32_t decoded_rate, void *encoded_data, uint32_t *encoded_data_len, uint32_t *encoded_rate,
|
2007-03-30 00:15:25 +00:00
|
|
|
unsigned int *flag)
|
2006-01-03 22:13:59 +00:00
|
|
|
{
|
2006-02-26 04:52:34 +00:00
|
|
|
struct speex_context *context = codec->private_info;
|
2006-01-03 22:13:59 +00:00
|
|
|
short *buf;
|
|
|
|
int is_speech = 1;
|
|
|
|
|
|
|
|
if (!context) {
|
|
|
|
return SWITCH_STATUS_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
buf = decoded_data;
|
|
|
|
|
|
|
|
if (context->pp) {
|
|
|
|
is_speech = speex_preprocess(context->pp, buf, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (is_speech) {
|
2006-01-20 15:05:05 +00:00
|
|
|
is_speech = speex_encode_int(context->encoder_state, buf, &context->encoder_bits)
|
2010-09-29 16:52:34 -05:00
|
|
|
|| !context->codec_settings.dtx;
|
2006-01-03 22:13:59 +00:00
|
|
|
} else {
|
|
|
|
speex_bits_pack(&context->encoder_bits, 0, 5);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (is_speech) {
|
|
|
|
switch_clear_flag(context, SWITCH_CODEC_FLAG_SILENCE);
|
|
|
|
*flag |= SWITCH_CODEC_FLAG_SILENCE_STOP;
|
|
|
|
} else {
|
|
|
|
if (switch_test_flag(context, SWITCH_CODEC_FLAG_SILENCE)) {
|
|
|
|
*encoded_data_len = 0;
|
|
|
|
*flag |= SWITCH_CODEC_FLAG_SILENCE;
|
|
|
|
return SWITCH_STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch_set_flag(context, SWITCH_CODEC_FLAG_SILENCE);
|
|
|
|
*flag |= SWITCH_CODEC_FLAG_SILENCE_START;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
speex_bits_pack(&context->encoder_bits, 15, 5);
|
2006-01-20 15:05:05 +00:00
|
|
|
*encoded_data_len = speex_bits_write(&context->encoder_bits, (char *) encoded_data, context->encoder_frame_size);
|
2006-01-03 22:13:59 +00:00
|
|
|
speex_bits_reset(&context->encoder_bits);
|
2006-08-18 16:36:26 +00:00
|
|
|
(*encoded_data_len)--;
|
2006-01-03 22:13:59 +00:00
|
|
|
|
|
|
|
return SWITCH_STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2006-04-29 23:43:28 +00:00
|
|
|
static switch_status_t switch_speex_decode(switch_codec_t *codec,
|
2007-03-29 22:31:56 +00:00
|
|
|
switch_codec_t *other_codec,
|
|
|
|
void *encoded_data,
|
|
|
|
uint32_t encoded_data_len,
|
2008-05-27 04:54:52 +00:00
|
|
|
uint32_t encoded_rate, void *decoded_data, uint32_t *decoded_data_len, uint32_t *decoded_rate,
|
2007-03-30 00:15:25 +00:00
|
|
|
unsigned int *flag)
|
2006-01-03 22:13:59 +00:00
|
|
|
{
|
2006-02-26 04:52:34 +00:00
|
|
|
struct speex_context *context = codec->private_info;
|
2006-01-03 22:13:59 +00:00
|
|
|
short *buf;
|
|
|
|
|
|
|
|
if (!context) {
|
|
|
|
return SWITCH_STATUS_FALSE;
|
|
|
|
}
|
|
|
|
|
2006-07-18 18:34:42 +00:00
|
|
|
|
2006-01-03 22:13:59 +00:00
|
|
|
buf = decoded_data;
|
|
|
|
if (*flag & SWITCH_CODEC_FLAG_SILENCE) {
|
|
|
|
speex_decode_int(context->decoder_state, NULL, buf);
|
|
|
|
} else {
|
2006-07-14 19:42:09 +00:00
|
|
|
speex_bits_read_from(&context->decoder_bits, (char *) encoded_data, (int) encoded_data_len);
|
2006-01-03 22:13:59 +00:00
|
|
|
speex_decode_int(context->decoder_state, &context->decoder_bits, buf);
|
|
|
|
}
|
2008-10-20 17:48:42 +00:00
|
|
|
*decoded_data_len = codec->implementation->decoded_bytes_per_packet;
|
2006-01-20 15:05:05 +00:00
|
|
|
|
2006-01-03 22:13:59 +00:00
|
|
|
return SWITCH_STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2006-04-29 23:43:28 +00:00
|
|
|
static switch_status_t switch_speex_destroy(switch_codec_t *codec)
|
2006-01-03 22:13:59 +00:00
|
|
|
{
|
|
|
|
int encoding, decoding;
|
2006-02-26 04:52:34 +00:00
|
|
|
struct speex_context *context = codec->private_info;
|
2006-01-03 22:13:59 +00:00
|
|
|
|
|
|
|
if (!context) {
|
|
|
|
return SWITCH_STATUS_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
encoding = (codec->flags & SWITCH_CODEC_FLAG_ENCODE);
|
|
|
|
decoding = (codec->flags & SWITCH_CODEC_FLAG_DECODE);
|
|
|
|
|
|
|
|
if (encoding) {
|
|
|
|
speex_bits_destroy(&context->encoder_bits);
|
|
|
|
speex_encoder_destroy(context->encoder_state);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (decoding) {
|
|
|
|
speex_bits_destroy(&context->decoder_bits);
|
|
|
|
speex_decoder_destroy(context->decoder_state);
|
|
|
|
}
|
|
|
|
|
2006-02-26 04:52:34 +00:00
|
|
|
codec->private_info = NULL;
|
2006-01-20 15:05:05 +00:00
|
|
|
|
2006-01-03 22:13:59 +00:00
|
|
|
return SWITCH_STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2007-06-13 17:06:10 +00:00
|
|
|
SWITCH_MODULE_LOAD_FUNCTION(mod_speex_load)
|
2006-01-20 15:05:05 +00:00
|
|
|
{
|
2007-06-20 08:41:55 +00:00
|
|
|
switch_codec_interface_t *codec_interface;
|
2008-11-10 22:26:55 +00:00
|
|
|
int mpf = 20000, spf = 160, bpf = 320, rate = 8000, counta, countb;
|
2010-01-12 00:30:04 +00:00
|
|
|
switch_payload_t ianacode[4] = { 0, 99, 99, 99 };
|
2008-05-27 04:54:52 +00:00
|
|
|
int bps[4] = { 0, 24600, 42200, 44000 };
|
2006-01-03 22:13:59 +00:00
|
|
|
/* connect my internal structure to the blank pointer passed to me */
|
2007-06-20 08:41:55 +00:00
|
|
|
*module_interface = switch_loadable_module_create_module_interface(pool, modname);
|
2008-02-01 06:22:13 +00:00
|
|
|
SWITCH_ADD_CODEC(codec_interface, "Speex");
|
2010-09-29 16:52:34 -05:00
|
|
|
codec_interface->parse_fmtp = switch_speex_fmtp_parse;
|
2008-05-27 04:54:52 +00:00
|
|
|
for (counta = 1; counta <= 3; counta++) {
|
|
|
|
for (countb = 1; countb > 0; countb--) {
|
2010-02-06 03:38:24 +00:00
|
|
|
switch_core_codec_add_implementation(pool, codec_interface, SWITCH_CODEC_TYPE_AUDIO, /* enumeration defining the type of the codec */
|
|
|
|
ianacode[counta], /* the IANA code number */
|
|
|
|
"SPEEX", /* the IANA code name */
|
|
|
|
NULL, /* default fmtp to send (can be overridden by the init function) */
|
|
|
|
rate, /* samples transferred per second */
|
|
|
|
rate, /* actual samples transferred per second */
|
|
|
|
bps[counta], /* bits transferred per second */
|
|
|
|
mpf * countb, /* number of microseconds per frame */
|
|
|
|
spf * countb, /* number of samples per frame */
|
|
|
|
bpf * countb, /* number of bytes per frame decompressed */
|
|
|
|
0, /* number of bytes per frame compressed */
|
|
|
|
1, /* number of channels represented */
|
|
|
|
1, /* number of frames per network packet */
|
|
|
|
switch_speex_init, /* function to initialize a codec handle using this implementation */
|
|
|
|
switch_speex_encode, /* function to encode raw data into encoded data */
|
|
|
|
switch_speex_decode, /* function to decode encoded data into raw data */
|
|
|
|
switch_speex_destroy); /* deinitalize a codec handle using this implementation */
|
2008-05-27 04:54:52 +00:00
|
|
|
}
|
|
|
|
rate = rate * 2;
|
|
|
|
spf = spf * 2;
|
|
|
|
bpf = bpf * 2;
|
|
|
|
}
|
2008-02-01 06:22:13 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2006-01-03 22:13:59 +00:00
|
|
|
|
|
|
|
/* indicate that the module should continue to be loaded */
|
|
|
|
return SWITCH_STATUS_SUCCESS;
|
|
|
|
}
|
2006-11-27 22:30:48 +00:00
|
|
|
|
|
|
|
/* For Emacs:
|
|
|
|
* Local Variables:
|
|
|
|
* mode:c
|
2008-02-03 22:14:57 +00:00
|
|
|
* indent-tabs-mode:t
|
2006-11-27 22:30:48 +00:00
|
|
|
* tab-width:4
|
|
|
|
* c-basic-offset:4
|
|
|
|
* End:
|
|
|
|
* For VIM:
|
2008-07-03 19:12:26 +00:00
|
|
|
* vim:set softtabstop=4 shiftwidth=4 tabstop=4:
|
2006-11-27 22:30:48 +00:00
|
|
|
*/
|