2006-01-03 22:13:59 +00:00
|
|
|
/*
|
|
|
|
* FreeSWITCH Modular Media Switching Software Library / Soft-Switch Application
|
|
|
|
* Copyright (C) 2005/2006, Anthony Minessale II <anthmct@yahoo.com>
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* Anthony Minessale II <anthmct@yahoo.com>
|
|
|
|
* Portions created by the Initial Developer are Copyright (C)
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
* Anthony Minessale II <anthmct@yahoo.com>
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* mod_g711codec.c -- G711 Ulaw/Alaw Codec Module
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
#include <switch.h>
|
2006-09-12 18:31:15 +00:00
|
|
|
#include <g7xx/g711.h>
|
2006-01-03 22:13:59 +00:00
|
|
|
|
2007-06-13 17:06:10 +00:00
|
|
|
SWITCH_MODULE_LOAD_FUNCTION(mod_g711_load);
|
|
|
|
SWITCH_MODULE_DEFINITION(mod_g711, mod_g711_load, NULL, NULL);
|
2006-01-03 22:13:59 +00:00
|
|
|
|
|
|
|
|
2007-03-30 00:13:31 +00:00
|
|
|
static switch_status_t switch_g711u_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
|
|
|
{
|
|
|
|
int encoding, decoding;
|
|
|
|
|
|
|
|
encoding = (flags & SWITCH_CODEC_FLAG_ENCODE);
|
|
|
|
decoding = (flags & SWITCH_CODEC_FLAG_DECODE);
|
|
|
|
|
|
|
|
if (!(encoding || decoding)) {
|
|
|
|
return SWITCH_STATUS_FALSE;
|
|
|
|
} else {
|
|
|
|
return SWITCH_STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-04-29 23:43:28 +00:00
|
|
|
static switch_status_t switch_g711u_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,
|
2007-03-30 00:15:25 +00:00
|
|
|
uint32_t decoded_rate, void *encoded_data, uint32_t * encoded_data_len, uint32_t * encoded_rate,
|
|
|
|
unsigned int *flag)
|
2006-01-03 22:13:59 +00:00
|
|
|
{
|
|
|
|
short *dbuf;
|
|
|
|
unsigned char *ebuf;
|
2006-04-09 00:10:13 +00:00
|
|
|
uint32_t i;
|
2006-01-03 22:13:59 +00:00
|
|
|
|
|
|
|
dbuf = decoded_data;
|
|
|
|
ebuf = encoded_data;
|
|
|
|
|
|
|
|
for (i = 0; i < decoded_data_len / sizeof(short); i++) {
|
2006-09-12 17:17:02 +00:00
|
|
|
ebuf[i] = linear_to_ulaw(dbuf[i]);
|
2006-01-03 22:13:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
*encoded_data_len = i;
|
|
|
|
|
|
|
|
return SWITCH_STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2006-04-29 23:43:28 +00:00
|
|
|
static switch_status_t switch_g711u_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,
|
2007-03-30 00:15:25 +00:00
|
|
|
uint32_t encoded_rate, void *decoded_data, uint32_t * decoded_data_len, uint32_t * decoded_rate,
|
|
|
|
unsigned int *flag)
|
2006-01-03 22:13:59 +00:00
|
|
|
{
|
|
|
|
short *dbuf;
|
|
|
|
unsigned char *ebuf;
|
2006-04-09 00:10:13 +00:00
|
|
|
uint32_t i;
|
2006-01-03 22:13:59 +00:00
|
|
|
|
|
|
|
dbuf = decoded_data;
|
|
|
|
ebuf = encoded_data;
|
|
|
|
|
|
|
|
if (*flag & SWITCH_CODEC_FLAG_SILENCE) {
|
|
|
|
memset(dbuf, 0, codec->implementation->bytes_per_frame);
|
|
|
|
*decoded_data_len = codec->implementation->bytes_per_frame;
|
|
|
|
} else {
|
|
|
|
for (i = 0; i < encoded_data_len; i++) {
|
2006-09-12 17:17:02 +00:00
|
|
|
dbuf[i] = ulaw_to_linear(ebuf[i]);
|
2006-01-03 22:13:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
*decoded_data_len = i * 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
return SWITCH_STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2006-04-29 23:43:28 +00:00
|
|
|
static switch_status_t switch_g711u_destroy(switch_codec_t *codec)
|
2006-01-03 22:13:59 +00:00
|
|
|
{
|
|
|
|
return SWITCH_STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-03-30 00:13:31 +00:00
|
|
|
static switch_status_t switch_g711a_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
|
|
|
{
|
|
|
|
int encoding, decoding;
|
|
|
|
|
|
|
|
encoding = (flags & SWITCH_CODEC_FLAG_ENCODE);
|
|
|
|
decoding = (flags & SWITCH_CODEC_FLAG_DECODE);
|
|
|
|
|
|
|
|
if (!(encoding || decoding)) {
|
|
|
|
return SWITCH_STATUS_FALSE;
|
|
|
|
} else {
|
|
|
|
return SWITCH_STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-04-29 23:43:28 +00:00
|
|
|
static switch_status_t switch_g711a_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,
|
2007-03-30 00:15:25 +00:00
|
|
|
uint32_t decoded_rate, void *encoded_data, uint32_t * encoded_data_len, uint32_t * encoded_rate,
|
|
|
|
unsigned int *flag)
|
2006-01-03 22:13:59 +00:00
|
|
|
{
|
|
|
|
short *dbuf;
|
|
|
|
unsigned char *ebuf;
|
2006-04-09 00:10:13 +00:00
|
|
|
uint32_t i;
|
2006-01-03 22:13:59 +00:00
|
|
|
|
|
|
|
dbuf = decoded_data;
|
|
|
|
ebuf = encoded_data;
|
|
|
|
|
|
|
|
for (i = 0; i < decoded_data_len / sizeof(short); i++) {
|
2006-09-12 17:17:02 +00:00
|
|
|
ebuf[i] = linear_to_alaw(dbuf[i]);
|
2006-01-03 22:13:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
*encoded_data_len = i;
|
|
|
|
|
|
|
|
return SWITCH_STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2006-04-29 23:43:28 +00:00
|
|
|
static switch_status_t switch_g711a_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,
|
2007-03-30 00:15:25 +00:00
|
|
|
uint32_t encoded_rate, void *decoded_data, uint32_t * decoded_data_len, uint32_t * decoded_rate,
|
|
|
|
unsigned int *flag)
|
2006-01-03 22:13:59 +00:00
|
|
|
{
|
|
|
|
short *dbuf;
|
|
|
|
unsigned char *ebuf;
|
2006-04-09 00:10:13 +00:00
|
|
|
uint32_t i;
|
2006-01-03 22:13:59 +00:00
|
|
|
|
|
|
|
dbuf = decoded_data;
|
|
|
|
ebuf = encoded_data;
|
|
|
|
|
|
|
|
if (*flag & SWITCH_CODEC_FLAG_SILENCE) {
|
|
|
|
memset(dbuf, 0, codec->implementation->bytes_per_frame);
|
|
|
|
*decoded_data_len = codec->implementation->bytes_per_frame;
|
|
|
|
} else {
|
|
|
|
for (i = 0; i < encoded_data_len; i++) {
|
2006-09-12 17:17:02 +00:00
|
|
|
dbuf[i] = alaw_to_linear(ebuf[i]);
|
2006-01-03 22:13:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
*decoded_data_len = i * 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
return SWITCH_STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2006-04-29 23:43:28 +00:00
|
|
|
static switch_status_t switch_g711a_destroy(switch_codec_t *codec)
|
2006-01-03 22:13:59 +00:00
|
|
|
{
|
|
|
|
return SWITCH_STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Registration */
|
|
|
|
|
2006-09-14 22:11:30 +00:00
|
|
|
|
2007-06-13 20:40:06 +00:00
|
|
|
static switch_codec_implementation_t g711u_8k_120ms_implementation = {
|
2007-02-21 06:35:55 +00:00
|
|
|
/*.codec_type */ SWITCH_CODEC_TYPE_AUDIO,
|
|
|
|
/*.ianacode */ 0,
|
|
|
|
/*.iananame */ "PCMU",
|
|
|
|
/*.fmtp */ NULL,
|
|
|
|
/*.samples_per_second */ 8000,
|
|
|
|
/*.bits_per_second */ 64000,
|
|
|
|
/*.microseconds_per_frame */ 120000,
|
|
|
|
/*.samples_per_frame */ 960,
|
|
|
|
/*.bytes_per_frame */ 1920,
|
|
|
|
/*.encoded_bytes_per_frame */ 960,
|
|
|
|
/*.number_of_channels */ 1,
|
|
|
|
/*.pref_frames_per_packet */ 1,
|
|
|
|
/*.max_frames_per_packet */ 1,
|
|
|
|
/*.init */ switch_g711u_init,
|
|
|
|
/*.encode */ switch_g711u_encode,
|
|
|
|
/*.decode */ switch_g711u_decode,
|
|
|
|
/*.destroy */ switch_g711u_destroy
|
|
|
|
};
|
|
|
|
|
2007-06-13 20:40:06 +00:00
|
|
|
static switch_codec_implementation_t g711u_8k_60ms_implementation = {
|
2006-07-10 22:08:02 +00:00
|
|
|
/*.codec_type */ SWITCH_CODEC_TYPE_AUDIO,
|
2006-06-23 20:14:29 +00:00
|
|
|
/*.ianacode */ 0,
|
|
|
|
/*.iananame */ "PCMU",
|
2006-10-09 02:24:43 +00:00
|
|
|
/*.fmtp */ NULL,
|
2006-01-20 15:05:05 +00:00
|
|
|
/*.samples_per_second */ 8000,
|
|
|
|
/*.bits_per_second */ 19200,
|
|
|
|
/*.microseconds_per_frame */ 60000,
|
|
|
|
/*.samples_per_frame */ 480,
|
|
|
|
/*.bytes_per_frame */ 960,
|
|
|
|
/*.encoded_bytes_per_frame */ 480,
|
|
|
|
/*.number_of_channels */ 1,
|
|
|
|
/*.pref_frames_per_packet */ 1,
|
|
|
|
/*.max_frames_per_packet */ 1,
|
|
|
|
/*.init */ switch_g711u_init,
|
|
|
|
/*.encode */ switch_g711u_encode,
|
|
|
|
/*.decode */ switch_g711u_decode,
|
2007-02-21 06:35:55 +00:00
|
|
|
/*.destroy */ switch_g711u_destroy,
|
2007-03-29 22:31:56 +00:00
|
|
|
/*.next */ &g711u_8k_120ms_implementation
|
2006-01-03 22:13:59 +00:00
|
|
|
};
|
2006-08-22 21:08:34 +00:00
|
|
|
|
2007-06-13 20:40:06 +00:00
|
|
|
static switch_codec_implementation_t g711u_8k_30ms_implementation = {
|
2006-07-10 22:08:02 +00:00
|
|
|
/*.codec_type */ SWITCH_CODEC_TYPE_AUDIO,
|
2006-06-23 20:14:29 +00:00
|
|
|
/*.ianacode */ 0,
|
|
|
|
/*.iananame */ "PCMU",
|
2006-10-09 02:24:43 +00:00
|
|
|
/*.fmtp */ NULL,
|
2006-01-20 15:05:05 +00:00
|
|
|
/*.samples_per_second */ 8000,
|
|
|
|
/*.bits_per_second */ 96000,
|
|
|
|
/*.microseconds_per_frame */ 30000,
|
|
|
|
/*.samples_per_frame */ 240,
|
|
|
|
/*.bytes_per_frame */ 480,
|
|
|
|
/*.encoded_bytes_per_frame */ 240,
|
|
|
|
/*.number_of_channels */ 1,
|
|
|
|
/*.pref_frames_per_packet */ 1,
|
|
|
|
/*.max_frames_per_packet */ 1,
|
|
|
|
/*.init */ switch_g711u_init,
|
|
|
|
/*.encode */ switch_g711u_encode,
|
|
|
|
/*.decode */ switch_g711u_decode,
|
|
|
|
/*.destroy */ switch_g711u_destroy,
|
2007-03-29 22:31:56 +00:00
|
|
|
/*.next */ &g711u_8k_60ms_implementation
|
2006-01-03 22:13:59 +00:00
|
|
|
};
|
2006-01-12 18:16:12 +00:00
|
|
|
|
2007-06-13 20:40:06 +00:00
|
|
|
static switch_codec_implementation_t g711u_8k_20ms_implementation = {
|
2006-07-10 22:08:02 +00:00
|
|
|
/*.codec_type */ SWITCH_CODEC_TYPE_AUDIO,
|
2006-06-23 20:14:29 +00:00
|
|
|
/*.ianacode */ 0,
|
|
|
|
/*.iananame */ "PCMU",
|
2006-10-09 02:24:43 +00:00
|
|
|
/*.fmtp */ NULL,
|
2007-01-29 15:43:41 +00:00
|
|
|
/*.samples_per_second */ 8000,
|
|
|
|
/*.bits_per_second */ 64000,
|
2006-01-20 15:05:05 +00:00
|
|
|
/*.microseconds_per_frame */ 20000,
|
2007-01-29 15:43:41 +00:00
|
|
|
/*.samples_per_frame */ 160,
|
|
|
|
/*.bytes_per_frame */ 320,
|
|
|
|
/*.encoded_bytes_per_frame */ 160,
|
2006-01-20 15:05:05 +00:00
|
|
|
/*.number_of_channels */ 1,
|
|
|
|
/*.pref_frames_per_packet */ 1,
|
|
|
|
/*.max_frames_per_packet */ 1,
|
|
|
|
/*.init */ switch_g711u_init,
|
|
|
|
/*.encode */ switch_g711u_encode,
|
|
|
|
/*.decode */ switch_g711u_decode,
|
|
|
|
/*.destroy */ switch_g711u_destroy,
|
2007-03-29 22:31:56 +00:00
|
|
|
/*.next */ &g711u_8k_30ms_implementation
|
2006-01-12 18:16:12 +00:00
|
|
|
};
|
|
|
|
|
2007-06-13 20:40:06 +00:00
|
|
|
static switch_codec_implementation_t g711u_8k_10ms_implementation = {
|
2006-07-10 22:08:02 +00:00
|
|
|
/*.codec_type */ SWITCH_CODEC_TYPE_AUDIO,
|
2006-06-23 20:14:29 +00:00
|
|
|
/*.ianacode */ 0,
|
|
|
|
/*.iananame */ "PCMU",
|
2006-10-09 02:24:43 +00:00
|
|
|
/*.fmtp */ NULL,
|
2006-01-20 15:05:05 +00:00
|
|
|
/*.samples_per_second */ 8000,
|
|
|
|
/*.bits_per_second */ 64000,
|
2007-01-29 15:43:41 +00:00
|
|
|
/*.microseconds_per_frame */ 10000,
|
|
|
|
/*.samples_per_frame */ 80,
|
|
|
|
/*.bytes_per_frame */ 160,
|
|
|
|
/*.encoded_bytes_per_frame */ 80,
|
2006-01-20 15:05:05 +00:00
|
|
|
/*.number_of_channels */ 1,
|
|
|
|
/*.pref_frames_per_packet */ 1,
|
|
|
|
/*.max_frames_per_packet */ 1,
|
|
|
|
/*.init */ switch_g711u_init,
|
|
|
|
/*.encode */ switch_g711u_encode,
|
|
|
|
/*.decode */ switch_g711u_decode,
|
|
|
|
/*.destroy */ switch_g711u_destroy,
|
2007-03-29 22:31:56 +00:00
|
|
|
/*.next */ &g711u_8k_20ms_implementation
|
2006-01-03 22:13:59 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2007-01-29 15:43:41 +00:00
|
|
|
|
2007-06-13 20:40:06 +00:00
|
|
|
static switch_codec_implementation_t g711a_8k_120ms_implementation = {
|
2007-02-21 06:35:55 +00:00
|
|
|
/*.codec_type */ SWITCH_CODEC_TYPE_AUDIO,
|
|
|
|
/*.ianacode */ 8,
|
|
|
|
/*.iananame */ "PCMA",
|
|
|
|
/*.fmtp */ NULL,
|
|
|
|
/*.samples_per_second */ 8000,
|
|
|
|
/*.bits_per_second */ 64000,
|
|
|
|
/*.microseconds_per_frame */ 120000,
|
|
|
|
/*.samples_per_frame */ 960,
|
|
|
|
/*.bytes_per_frame */ 1920,
|
|
|
|
/*.encoded_bytes_per_frame */ 960,
|
|
|
|
/*.number_of_channels */ 1,
|
|
|
|
/*.pref_frames_per_packet */ 1,
|
|
|
|
/*.max_frames_per_packet */ 1,
|
|
|
|
/*.init */ switch_g711a_init,
|
|
|
|
/*.encode */ switch_g711a_encode,
|
|
|
|
/*.decode */ switch_g711a_decode,
|
|
|
|
/*.destroy */ switch_g711a_destroy
|
|
|
|
};
|
2007-01-29 15:43:41 +00:00
|
|
|
|
2007-06-13 20:40:06 +00:00
|
|
|
static switch_codec_implementation_t g711a_8k_60ms_implementation = {
|
2007-01-29 15:43:41 +00:00
|
|
|
/*.codec_type */ SWITCH_CODEC_TYPE_AUDIO,
|
|
|
|
/*.ianacode */ 8,
|
|
|
|
/*.iananame */ "PCMA",
|
|
|
|
/*.fmtp */ NULL,
|
|
|
|
/*.samples_per_second */ 8000,
|
|
|
|
/*.bits_per_second */ 19200,
|
|
|
|
/*.microseconds_per_frame */ 60000,
|
|
|
|
/*.samples_per_frame */ 480,
|
|
|
|
/*.bytes_per_frame */ 960,
|
|
|
|
/*.encoded_bytes_per_frame */ 480,
|
|
|
|
/*.number_of_channels */ 1,
|
|
|
|
/*.pref_frames_per_packet */ 1,
|
|
|
|
/*.max_frames_per_packet */ 1,
|
2007-02-21 06:35:55 +00:00
|
|
|
/*.init */ switch_g711a_init,
|
|
|
|
/*.encode */ switch_g711a_encode,
|
|
|
|
/*.decode */ switch_g711a_decode,
|
|
|
|
/*.destroy */ switch_g711a_destroy,
|
2007-03-29 22:31:56 +00:00
|
|
|
/*.next */ &g711a_8k_120ms_implementation
|
2007-01-29 15:43:41 +00:00
|
|
|
};
|
|
|
|
|
2007-06-13 20:40:06 +00:00
|
|
|
static switch_codec_implementation_t g711a_8k_30ms_implementation = {
|
2007-01-29 15:43:41 +00:00
|
|
|
/*.codec_type */ SWITCH_CODEC_TYPE_AUDIO,
|
|
|
|
/*.ianacode */ 8,
|
|
|
|
/*.iananame */ "PCMA",
|
|
|
|
/*.fmtp */ NULL,
|
|
|
|
/*.samples_per_second */ 8000,
|
|
|
|
/*.bits_per_second */ 96000,
|
|
|
|
/*.microseconds_per_frame */ 30000,
|
|
|
|
/*.samples_per_frame */ 240,
|
|
|
|
/*.bytes_per_frame */ 480,
|
|
|
|
/*.encoded_bytes_per_frame */ 240,
|
|
|
|
/*.number_of_channels */ 1,
|
|
|
|
/*.pref_frames_per_packet */ 1,
|
|
|
|
/*.max_frames_per_packet */ 1,
|
2007-02-21 06:35:55 +00:00
|
|
|
/*.init */ switch_g711a_init,
|
|
|
|
/*.encode */ switch_g711a_encode,
|
|
|
|
/*.decode */ switch_g711a_decode,
|
|
|
|
/*.destroy */ switch_g711a_destroy,
|
2007-03-29 22:31:56 +00:00
|
|
|
/*.next */ &g711a_8k_60ms_implementation
|
2007-01-29 15:43:41 +00:00
|
|
|
};
|
|
|
|
|
2007-06-13 20:40:06 +00:00
|
|
|
static switch_codec_implementation_t g711a_8k_20ms_implementation = {
|
2006-07-10 22:08:02 +00:00
|
|
|
/*.codec_type */ SWITCH_CODEC_TYPE_AUDIO,
|
2006-06-23 20:14:29 +00:00
|
|
|
/*.ianacode */ 8,
|
|
|
|
/*.iananame */ "PCMA",
|
2006-10-09 02:24:43 +00:00
|
|
|
/*.fmtp */ NULL,
|
2006-01-20 15:05:05 +00:00
|
|
|
/*.samples_per_second */ 8000,
|
|
|
|
/*.bits_per_second */ 64000,
|
|
|
|
/*.microseconds_per_frame */ 20000,
|
|
|
|
/*.samples_per_frame */ 160,
|
|
|
|
/*.bytes_per_frame */ 320,
|
|
|
|
/*.encoded_bytes_per_frame */ 160,
|
|
|
|
/*.number_of_channels */ 1,
|
|
|
|
/*.pref_frames_per_packet */ 1,
|
|
|
|
/*.max_frames_per_packet */ 1,
|
|
|
|
/*.init */ switch_g711a_init,
|
|
|
|
/*.encode */ switch_g711a_encode,
|
|
|
|
/*.decode */ switch_g711a_decode,
|
2007-01-29 15:43:41 +00:00
|
|
|
/*.destroy */ switch_g711a_destroy,
|
2007-03-29 22:31:56 +00:00
|
|
|
/*.next */ &g711a_8k_30ms_implementation
|
2006-01-03 22:13:59 +00:00
|
|
|
};
|
|
|
|
|
2007-06-13 20:40:06 +00:00
|
|
|
static switch_codec_implementation_t g711a_8k_10ms_implementation = {
|
2007-01-29 15:43:41 +00:00
|
|
|
/*.codec_type */ SWITCH_CODEC_TYPE_AUDIO,
|
|
|
|
/*.ianacode */ 8,
|
|
|
|
/*.iananame */ "PCMA",
|
|
|
|
/*.fmtp */ NULL,
|
|
|
|
/*.samples_per_second */ 8000,
|
|
|
|
/*.bits_per_second */ 64000,
|
|
|
|
/*.microseconds_per_frame */ 10000,
|
|
|
|
/*.samples_per_frame */ 80,
|
|
|
|
/*.bytes_per_frame */ 160,
|
|
|
|
/*.encoded_bytes_per_frame */ 80,
|
|
|
|
/*.number_of_channels */ 1,
|
|
|
|
/*.pref_frames_per_packet */ 1,
|
|
|
|
/*.max_frames_per_packet */ 1,
|
2007-02-21 06:35:55 +00:00
|
|
|
/*.init */ switch_g711a_init,
|
|
|
|
/*.encode */ switch_g711a_encode,
|
|
|
|
/*.decode */ switch_g711a_decode,
|
|
|
|
/*.destroy */ switch_g711a_destroy,
|
2007-03-29 22:31:56 +00:00
|
|
|
/*.next */ &g711a_8k_20ms_implementation
|
2007-01-29 15:43:41 +00:00
|
|
|
};
|
|
|
|
|
2007-06-13 17:06:10 +00:00
|
|
|
SWITCH_MODULE_LOAD_FUNCTION(mod_g711_load)
|
2006-01-20 15:05:05 +00:00
|
|
|
{
|
2007-06-20 08:41:55 +00:00
|
|
|
switch_codec_interface_t *codec_interface;
|
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);
|
|
|
|
SWITCH_ADD_CODEC(codec_interface, "g711 ulaw", &g711u_8k_10ms_implementation);
|
|
|
|
SWITCH_ADD_CODEC(codec_interface, "g711 alaw", &g711a_8k_10ms_implementation);
|
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
|
2007-02-09 02:36:03 +00:00
|
|
|
* indent-tabs-mode:t
|
2006-11-27 22:30:48 +00:00
|
|
|
* tab-width:4
|
|
|
|
* c-basic-offset:4
|
|
|
|
* End:
|
|
|
|
* For VIM:
|
|
|
|
* vim:set softtabstop=4 shiftwidth=4 tabstop=4 expandtab:
|
|
|
|
*/
|