2006-01-30 15:53:38 +00: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>
|
2006-01-30 15:53:38 +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-30 15:53:38 +00:00
|
|
|
* Portions created by the Initial Developer are Copyright (C)
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
*
|
2009-02-17 16:31:50 +00:00
|
|
|
* Brian K. West <brian@freeswitch.org>
|
2006-01-30 15:53:38 +00:00
|
|
|
*
|
|
|
|
* mod_ilbc.c -- ilbc Codec Module
|
|
|
|
*
|
2007-03-29 22:31:56 +00:00
|
|
|
*/
|
2008-02-01 06:22:13 +00:00
|
|
|
|
2006-01-30 15:53:38 +00:00
|
|
|
#include "switch.h"
|
2009-02-17 16:31:50 +00:00
|
|
|
#include "ilbc.h"
|
2006-01-30 15:53:38 +00:00
|
|
|
|
2007-06-13 17:06:10 +00:00
|
|
|
SWITCH_MODULE_LOAD_FUNCTION(mod_ilbc_load);
|
|
|
|
SWITCH_MODULE_DEFINITION(mod_ilbc, mod_ilbc_load, NULL, NULL);
|
2006-01-30 15:53:38 +00:00
|
|
|
|
|
|
|
struct ilbc_context {
|
2009-02-17 16:31:50 +00:00
|
|
|
ilbc_encode_state_t encoder_object;
|
|
|
|
ilbc_decode_state_t decoder_object;
|
2006-01-30 15:53:38 +00:00
|
|
|
};
|
|
|
|
|
2010-09-29 16:52:34 -05:00
|
|
|
static switch_status_t switch_ilbc_fmtp_parse(const char *fmtp, switch_codec_fmtp_t *codec_fmtp)
|
|
|
|
{
|
|
|
|
if (codec_fmtp) {
|
|
|
|
char *mode = NULL;
|
|
|
|
int codec_ms = 0;
|
|
|
|
|
|
|
|
memset(codec_fmtp, '\0', sizeof(struct switch_codec_fmtp));
|
|
|
|
|
|
|
|
if (fmtp && (mode = strstr(fmtp, "mode=")) && (mode + 5)) {
|
|
|
|
codec_ms = atoi(mode + 5);
|
|
|
|
}
|
|
|
|
if (!codec_ms) {
|
|
|
|
/* default to 30 when no mode is defined for ilbc ONLY */
|
|
|
|
codec_ms = 30;
|
|
|
|
}
|
|
|
|
codec_fmtp->microseconds_per_packet = (codec_ms * 1000);
|
|
|
|
return SWITCH_STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
return SWITCH_STATUS_FALSE;
|
|
|
|
}
|
|
|
|
|
2007-03-30 00:13:31 +00:00
|
|
|
static switch_status_t switch_ilbc_init(switch_codec_t *codec, switch_codec_flag_t flags, const switch_codec_settings_t *codec_settings)
|
2006-01-27 00:48:15 +00:00
|
|
|
{
|
2006-01-30 15:53:38 +00:00
|
|
|
struct ilbc_context *context;
|
2009-02-17 16:31:50 +00:00
|
|
|
int encoding = (flags & SWITCH_CODEC_FLAG_ENCODE);
|
|
|
|
int decoding = (flags & SWITCH_CODEC_FLAG_DECODE);
|
|
|
|
int mode = codec->implementation->microseconds_per_packet / 1000;
|
2010-02-06 03:38:24 +00:00
|
|
|
|
2009-02-17 16:31:50 +00:00
|
|
|
if (!(encoding || decoding) || (!(context = switch_core_alloc(codec->memory_pool, sizeof(*context))))) {
|
2006-04-19 19:04:30 +00:00
|
|
|
return SWITCH_STATUS_FALSE;
|
2010-02-06 03:38:24 +00:00
|
|
|
}
|
2009-02-17 16:31:50 +00:00
|
|
|
|
|
|
|
codec->fmtp_out = switch_core_sprintf(codec->memory_pool, "mode=%d", mode);
|
2010-02-06 03:38:24 +00:00
|
|
|
|
2009-02-17 16:31:50 +00:00
|
|
|
if (encoding) {
|
|
|
|
ilbc_encode_init(&context->encoder_object, mode);
|
|
|
|
}
|
2006-01-30 15:53:38 +00:00
|
|
|
|
2009-02-17 16:31:50 +00:00
|
|
|
if (decoding) {
|
|
|
|
ilbc_decode_init(&context->decoder_object, mode, 0);
|
|
|
|
}
|
2010-02-06 03:38:24 +00:00
|
|
|
|
2006-02-26 04:52:34 +00:00
|
|
|
codec->private_info = context;
|
2006-01-30 15:53:38 +00:00
|
|
|
return SWITCH_STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2007-03-29 22:31:56 +00:00
|
|
|
static switch_status_t switch_ilbc_destroy(switch_codec_t *codec)
|
2006-01-27 00:48:15 +00:00
|
|
|
{
|
2006-02-26 04:52:34 +00:00
|
|
|
codec->private_info = NULL;
|
2006-01-30 15:53:38 +00:00
|
|
|
return SWITCH_STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2006-04-29 23:43:28 +00:00
|
|
|
static switch_status_t switch_ilbc_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-27 00:48:15 +00:00
|
|
|
{
|
2006-02-26 04:52:34 +00:00
|
|
|
struct ilbc_context *context = codec->private_info;
|
2006-01-30 15:53:38 +00:00
|
|
|
|
|
|
|
if (!context) {
|
|
|
|
return SWITCH_STATUS_FALSE;
|
|
|
|
}
|
2009-02-17 16:31:50 +00:00
|
|
|
|
|
|
|
*encoded_data_len = ilbc_encode(&context->encoder_object, (uint8_t *) encoded_data, (int16_t *) decoded_data, decoded_data_len / 2);
|
|
|
|
|
2006-01-30 15:53:38 +00:00
|
|
|
return SWITCH_STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2006-04-29 23:43:28 +00:00
|
|
|
static switch_status_t switch_ilbc_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-27 00:48:15 +00:00
|
|
|
{
|
2006-02-26 04:52:34 +00:00
|
|
|
struct ilbc_context *context = codec->private_info;
|
2006-01-30 15:53:38 +00:00
|
|
|
|
|
|
|
if (!context) {
|
|
|
|
return SWITCH_STATUS_FALSE;
|
|
|
|
}
|
|
|
|
|
2010-02-06 03:38:24 +00:00
|
|
|
*decoded_data_len = (2 * ilbc_decode(&context->decoder_object, (int16_t *) decoded_data, (uint8_t *) encoded_data, encoded_data_len));
|
2009-02-17 16:31:50 +00:00
|
|
|
|
2006-01-30 15:53:38 +00:00
|
|
|
return SWITCH_STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2006-04-19 19:44:05 +00:00
|
|
|
|
2007-06-13 17:06:10 +00:00
|
|
|
SWITCH_MODULE_LOAD_FUNCTION(mod_ilbc_load)
|
2006-01-27 00:48:15 +00:00
|
|
|
{
|
2007-06-20 08:41:55 +00:00
|
|
|
switch_codec_interface_t *codec_interface;
|
2008-02-01 06:22:13 +00:00
|
|
|
|
2007-03-29 22:31:56 +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, "iLBC");
|
2010-09-29 16:52:34 -05:00
|
|
|
codec_interface->parse_fmtp = switch_ilbc_fmtp_parse;
|
2008-02-01 06:22:13 +00:00
|
|
|
|
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 */
|
|
|
|
98, /* the IANA code number */
|
|
|
|
"iLBC", /* the IANA code name */
|
|
|
|
"mode=20", /* default fmtp to send (can be overridden by the init function) */
|
|
|
|
8000, /* samples transferred per second */
|
|
|
|
8000, /* actual samples transferred per second */
|
|
|
|
15200, /* bits transferred per second */
|
|
|
|
20000, /* number of microseconds per frame */
|
|
|
|
ILBC_BLOCK_LEN_20MS, /* number of samples per frame */
|
2009-02-17 16:31:50 +00:00
|
|
|
ILBC_BLOCK_LEN_20MS * 2, /* number of bytes per frame decompressed */
|
2010-02-06 03:38:24 +00:00
|
|
|
ILBC_NO_OF_BYTES_20MS, /* number of bytes per frame compressed */
|
|
|
|
1, /* number of channels represented */
|
|
|
|
1, /* number of frames per network packet */
|
|
|
|
switch_ilbc_init, /* function to initialize a codec handle using this implementation */
|
|
|
|
switch_ilbc_encode, /* function to encode raw data into encoded data */
|
|
|
|
switch_ilbc_decode, /* function to decode encoded data into raw data */
|
|
|
|
switch_ilbc_destroy); /* deinitalize a codec handle using this implementation */
|
|
|
|
|
|
|
|
switch_core_codec_add_implementation(pool, codec_interface, SWITCH_CODEC_TYPE_AUDIO, /* enumeration defining the type of the codec */
|
|
|
|
97, /* the IANA code number */
|
|
|
|
"iLBC", /* the IANA code name */
|
|
|
|
"mode=30", /* default fmtp to send (can be overridden by the init function) */
|
|
|
|
8000, /* samples transferred per second */
|
|
|
|
8000, /* actual samples transferred per second */
|
2011-01-06 17:15:45 -06:00
|
|
|
13330, /* bits transferred per second */
|
2010-02-06 03:38:24 +00:00
|
|
|
30000, /* number of microseconds per frame */
|
|
|
|
ILBC_BLOCK_LEN_30MS, /* number of samples per frame */
|
2009-02-17 16:31:50 +00:00
|
|
|
ILBC_BLOCK_LEN_30MS * 2, /* number of bytes per frame decompressed */
|
2010-02-06 03:38:24 +00:00
|
|
|
ILBC_NO_OF_BYTES_30MS, /* number of bytes per frame compressed */
|
|
|
|
1, /* number of channels represented */
|
|
|
|
1, /* number of frames per network packet */
|
|
|
|
switch_ilbc_init, /* function to initialize a codec handle using this implementation */
|
|
|
|
switch_ilbc_encode, /* function to encode raw data into encoded data */
|
|
|
|
switch_ilbc_decode, /* function to decode encoded data into raw data */
|
|
|
|
switch_ilbc_destroy); /* deinitalize a codec handle using this implementation */
|
2007-03-29 22:31:56 +00:00
|
|
|
|
|
|
|
/* indicate that the module should continue to be loaded */
|
|
|
|
return SWITCH_STATUS_SUCCESS;
|
2006-01-30 15:53:38 +00:00
|
|
|
}
|
|
|
|
|
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
|
|
|
*/
|