git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1199 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Anthony Minessale 2006-04-19 19:04:30 +00:00
parent a128d3179e
commit 56cb227eb7
6 changed files with 133 additions and 74 deletions

View File

@ -32,12 +32,16 @@
#include "switch.h" #include "switch.h"
#include "iLBC_encode.h" #include "iLBC_encode.h"
#include "iLBC_decode.h" #include "iLBC_decode.h"
#include "iLBC_define.h"
static const char modname[] = "mod_ilbc"; static const char modname[] = "mod_ilbc";
struct ilbc_context { struct ilbc_context {
iLBC_Enc_Inst_t encoder; iLBC_Enc_Inst_t encoder;
iLBC_Dec_Inst_t decoder; iLBC_Dec_Inst_t decoder;
uint8_t ms;
uint16_t bytes;
uint16_t dbytes;
}; };
static switch_status switch_ilbc_init(switch_codec *codec, switch_codec_flag flags, static switch_status switch_ilbc_init(switch_codec *codec, switch_codec_flag flags,
@ -45,6 +49,13 @@ static switch_status switch_ilbc_init(switch_codec *codec, switch_codec_flag fla
{ {
struct ilbc_context *context; struct ilbc_context *context;
int encoding, decoding; int encoding, decoding;
uint8_t ms = codec->implementation->microseconds_per_frame / 1000;
if (ms != 20 && ms != 30) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "invalid speed! (I should never happen)\n");
return SWITCH_STATUS_FALSE;
}
encoding = (flags & SWITCH_CODEC_FLAG_ENCODE); encoding = (flags & SWITCH_CODEC_FLAG_ENCODE);
decoding = (flags & SWITCH_CODEC_FLAG_DECODE); decoding = (flags & SWITCH_CODEC_FLAG_DECODE);
@ -53,10 +64,21 @@ static switch_status switch_ilbc_init(switch_codec *codec, switch_codec_flag fla
return SWITCH_STATUS_FALSE; return SWITCH_STATUS_FALSE;
} else { } else {
context = switch_core_alloc(codec->memory_pool, sizeof(*context)); context = switch_core_alloc(codec->memory_pool, sizeof(*context));
if (encoding) context->ms = ms;
initEncode(&context->encoder, 30); if (context->ms == 20) {
if (decoding) context->bytes = NO_OF_BYTES_20MS;
initDecode(&context->decoder, 30, 0); context->dbytes = 320;
} else {
context->bytes = NO_OF_BYTES_30MS;
context->dbytes = 480;
}
if (encoding) {
initEncode(&context->encoder, context->ms);
}
if (decoding) {
initDecode(&context->decoder, context->ms, 1);
}
} }
codec->private_info = context; codec->private_info = context;
@ -70,35 +92,38 @@ static switch_status switch_ilbc_destroy(switch_codec *codec)
return SWITCH_STATUS_SUCCESS; return SWITCH_STATUS_SUCCESS;
} }
static switch_status switch_ilbc_encode(switch_codec *codec, static switch_status switch_ilbc_encode(switch_codec *codec,
switch_codec *other_codec, switch_codec *other_codec,
void *decoded_data, void *decoded_data,
uint32_t decoded_data_len,
size_t decoded_data_len, uint32_t decoded_rate,
int decoded_rate,
void *encoded_data, void *encoded_data,
uint32_t *encoded_data_len,
size_t *encoded_data_len, uint32_t *encoded_rate,
int *encoded_rate,
unsigned int *flag) unsigned int *flag)
{ {
struct ilbc_context *context = codec->private_info; struct ilbc_context *context = codec->private_info;
int cbret = 0;
if (!context) { if (!context) {
return SWITCH_STATUS_FALSE; return SWITCH_STATUS_FALSE;
} }
if (decoded_data_len % 320 == 0) { if (decoded_data_len % context->dbytes == 0) {
unsigned int new_len = 0; unsigned int new_len = 0;
ilbc_signal * ddp = decoded_data; unsigned char *edp = encoded_data;
ilbc_byte * edp = encoded_data; short *ddp = decoded_data;
int x; int x, y;
int loops = (int) decoded_data_len / 320; int loops = (int) decoded_data_len / context->dbytes;
float buf[240];
for (x = 0; x < loops && new_len < *encoded_data_len; x++) { for (x = 0; x < loops && new_len < *encoded_data_len; x++) {
iLBC_encode(context->encoder, ddp, edp); for(y = 0; y < context->dbytes / sizeof(short) ; y++) {
edp += 33; buf[y] = ddp[y];
ddp += 160; }
new_len += 33; iLBC_encode(edp, buf, &context->encoder);
edp += context->bytes;
ddp += context->dbytes;
new_len += context->bytes;
} }
if (new_len <= *encoded_data_len) { if (new_len <= *encoded_data_len) {
*encoded_data_len = new_len; *encoded_data_len = new_len;
@ -113,13 +138,11 @@ static switch_status switch_ilbc_encode(switch_codec *codec,
static switch_status switch_ilbc_decode(switch_codec *codec, static switch_status switch_ilbc_decode(switch_codec *codec,
switch_codec *other_codec, switch_codec *other_codec,
void *encoded_data, void *encoded_data,
uint32_t encoded_data_len,
size_t encoded_data_len, uint32_t encoded_rate,
int encoded_rate,
void *decoded_data, void *decoded_data,
uint32_t *decoded_data_len,
size_t *decoded_data_len, uint32_t *decoded_rate,
int *decoded_rate,
unsigned int *flag) unsigned int *flag)
{ {
struct ilbc_context *context = codec->private_info; struct ilbc_context *context = codec->private_info;
@ -128,18 +151,23 @@ static switch_status switch_ilbc_decode(switch_codec *codec,
return SWITCH_STATUS_FALSE; return SWITCH_STATUS_FALSE;
} }
if (encoded_data_len % 33 == 0) { if (encoded_data_len % context->bytes == 0) {
int loops = (int) encoded_data_len / 33; int loops = (int) encoded_data_len / context->bytes;
ilbc_byte * edp = encoded_data; unsigned char *edp = encoded_data;
ilbc_signal * ddp = decoded_data; short *ddp = decoded_data;
int x; int x,y;
unsigned int new_len = 0; unsigned int new_len = 0;
float buf[240];
for (x = 0; x < loops && new_len < *decoded_data_len; x++) { for (x = 0; x < loops && new_len < *decoded_data_len; x++) {
iLBC_decode(context->decoder, edp, ddp); iLBC_decode(buf, edp, &context->decoder, 1);
ddp += 160; for(y = 0; y < context->dbytes / sizeof(short) ; y++) {
edp += 33; ddp[y] = buf[y];
new_len += 320; }
ddp += context->dbytes / sizeof(short);
edp += context->bytes;
new_len += context->dbytes;
} }
if (new_len <= *decoded_data_len) { if (new_len <= *decoded_data_len) {
*decoded_data_len = new_len; *decoded_data_len = new_len;
@ -156,13 +184,29 @@ static switch_status switch_ilbc_decode(switch_codec *codec,
/* Registration */ /* Registration */
static const switch_codec_implementation ilbc_8k_implementation = { static const switch_codec_implementation ilbc_8k_30ms_implementation = {
/*.samples_per_second */ 8000, /*.samples_per_second */ 8000,
/*.bits_per_second */ 13200, /*.bits_per_second */ NO_OF_BYTES_30MS*8*8000/BLOCKL_30MS,
/*.microseconds_per_frame */ 30000,
/*.samples_per_frame */ 240,
/*.bytes_per_frame */ 480,
/*.encoded_bytes_per_frame */ NO_OF_BYTES_30MS,
/*.number_of_channels */ 1,
/*.pref_frames_per_packet */ 1,
/*.max_frames_per_packet */ 1,
/*.init */ switch_ilbc_init,
/*.encode */ switch_ilbc_encode,
/*.decode */ switch_ilbc_decode,
/*.destroy */ switch_ilbc_destroy
};
static const switch_codec_implementation ilbc_8k_20ms_implementation = {
/*.samples_per_second */ 8000,
/*.bits_per_second */ NO_OF_BYTES_20MS*8*8000/BLOCKL_20MS,
/*.microseconds_per_frame */ 20000, /*.microseconds_per_frame */ 20000,
/*.samples_per_frame */ 160, /*.samples_per_frame */ 160,
/*.bytes_per_frame */ 320, /*.bytes_per_frame */ 320,
/*.encoded_bytes_per_frame */ 33, /*.encoded_bytes_per_frame */ NO_OF_BYTES_20MS,
/*.number_of_channels */ 1, /*.number_of_channels */ 1,
/*.pref_frames_per_packet */ 1, /*.pref_frames_per_packet */ 1,
/*.max_frames_per_packet */ 1, /*.max_frames_per_packet */ 1,
@ -170,15 +214,16 @@ static const switch_codec_implementation ilbc_8k_implementation = {
/*.encode */ switch_ilbc_encode, /*.encode */ switch_ilbc_encode,
/*.decode */ switch_ilbc_decode, /*.decode */ switch_ilbc_decode,
/*.destroy */ switch_ilbc_destroy, /*.destroy */ switch_ilbc_destroy,
/*.next */ &ilbc_8k_30ms_implementation
}; };
static const switch_codec_interface ilbc_codec_interface = { static const switch_codec_interface ilbc_codec_interface = {
/*.interface_name */ "ilbc", /*.interface_name */ "ilbc",
/*.codec_type */ SWITCH_CODEC_TYPE_AUDIO, /*.codec_type */ SWITCH_CODEC_TYPE_AUDIO,
/*.ianacode */ 3, /*.ianacode */ 97,
/*.iananame */ "ilbc", /*.iananame */ "iLBC",
/*.implementations */ &ilbc_8k_implementation, /*.implementations */ &ilbc_8k_20ms_implementation,
}; };

View File

@ -1283,11 +1283,15 @@ static switch_status exosip_create_call(eXosip_event_t * event)
{ {
int rate = atoi(drate); int rate = atoi(drate);
int ms = globals.codec_ms;
if (!strcasecmp(dname, "ilbc")) {
ms = 30;
}
if (switch_core_codec_init(&tech_pvt->read_codec, if (switch_core_codec_init(&tech_pvt->read_codec,
dname, dname,
rate, rate,
globals.codec_ms, ms,
1, 1,
SWITCH_CODEC_FLAG_ENCODE | SWITCH_CODEC_FLAG_DECODE, SWITCH_CODEC_FLAG_ENCODE | SWITCH_CODEC_FLAG_DECODE,
NULL, switch_core_session_get_pool(session)) != SWITCH_STATUS_SUCCESS) { NULL, switch_core_session_get_pool(session)) != SWITCH_STATUS_SUCCESS) {
@ -1298,7 +1302,7 @@ static switch_status exosip_create_call(eXosip_event_t * event)
if (switch_core_codec_init(&tech_pvt->write_codec, if (switch_core_codec_init(&tech_pvt->write_codec,
dname, dname,
rate, rate,
globals.codec_ms, ms,
1, 1,
SWITCH_CODEC_FLAG_ENCODE | SWITCH_CODEC_FLAG_DECODE, SWITCH_CODEC_FLAG_ENCODE | SWITCH_CODEC_FLAG_DECODE,
NULL, switch_core_session_get_pool(session)) != SWITCH_STATUS_SUCCESS) { NULL, switch_core_session_get_pool(session)) != SWITCH_STATUS_SUCCESS) {
@ -1453,12 +1457,15 @@ static void handle_answer(eXosip_event_t * event)
{ {
int rate = atoi(drate); int rate = atoi(drate);
int ms = globals.codec_ms;
if (!strcasecmp(dname, "ilbc")) {
ms = 30;
}
if (switch_core_codec_init(&tech_pvt->read_codec, if (switch_core_codec_init(&tech_pvt->read_codec,
dname, dname,
rate, rate,
globals.codec_ms, ms,
1, 1,
SWITCH_CODEC_FLAG_ENCODE | SWITCH_CODEC_FLAG_DECODE, SWITCH_CODEC_FLAG_ENCODE | SWITCH_CODEC_FLAG_DECODE,
NULL, switch_core_session_get_pool(tech_pvt->session)) != SWITCH_STATUS_SUCCESS) { NULL, switch_core_session_get_pool(tech_pvt->session)) != SWITCH_STATUS_SUCCESS) {
@ -1469,7 +1476,7 @@ static void handle_answer(eXosip_event_t * event)
if (switch_core_codec_init(&tech_pvt->write_codec, if (switch_core_codec_init(&tech_pvt->write_codec,
dname, dname,
rate, rate,
globals.codec_ms, ms,
1, 1,
SWITCH_CODEC_FLAG_ENCODE | SWITCH_CODEC_FLAG_DECODE, SWITCH_CODEC_FLAG_ENCODE | SWITCH_CODEC_FLAG_DECODE,
NULL, NULL,

View File

@ -129,7 +129,7 @@ static struct ast_iana AST_IANA[] = { {AST_FORMAT_G723_1, 4, "g723.1"},
{AST_FORMAT_LPC10, 7, "lpc10"}, {AST_FORMAT_LPC10, 7, "lpc10"},
{AST_FORMAT_G729A, 18, "g729"}, {AST_FORMAT_G729A, 18, "g729"},
{AST_FORMAT_SPEEX, 98, "speex"}, {AST_FORMAT_SPEEX, 98, "speex"},
{AST_FORMAT_ILBC, 999, "ilbc"}, {AST_FORMAT_ILBC, 102, "ilbc"},
{AST_FORMAT_MAX_AUDIO, 999, ""}, {AST_FORMAT_MAX_AUDIO, 999, ""},
{AST_FORMAT_JPEG, 999, ""}, {AST_FORMAT_JPEG, 999, ""},
{AST_FORMAT_PNG, 999, ""}, {AST_FORMAT_PNG, 999, ""},

View File

@ -31,10 +31,13 @@
*/ */
#include <switch_buffer.h> #include <switch_buffer.h>
static uint32_t buffer_id = 0;
struct switch_buffer { struct switch_buffer {
unsigned char *data; unsigned char *data;
switch_size_t used; switch_size_t used;
switch_size_t datalen; switch_size_t datalen;
uint32_t id;
}; };
SWITCH_DECLARE(switch_status) switch_buffer_create(switch_memory_pool *pool, switch_buffer **buffer, switch_size_t max_len) SWITCH_DECLARE(switch_status) switch_buffer_create(switch_memory_pool *pool, switch_buffer **buffer, switch_size_t max_len)
@ -44,6 +47,7 @@ SWITCH_DECLARE(switch_status) switch_buffer_create(switch_memory_pool *pool, swi
if ((new_buffer = switch_core_alloc(pool, sizeof(switch_buffer))) != 0 if ((new_buffer = switch_core_alloc(pool, sizeof(switch_buffer))) != 0
&& (new_buffer->data = switch_core_alloc(pool, max_len)) != 0) { && (new_buffer->data = switch_core_alloc(pool, max_len)) != 0) {
new_buffer->datalen = max_len; new_buffer->datalen = max_len;
new_buffer->id = buffer_id++;
*buffer = new_buffer; *buffer = new_buffer;
return SWITCH_STATUS_SUCCESS; return SWITCH_STATUS_SUCCESS;
} }
@ -115,7 +119,7 @@ SWITCH_DECLARE(switch_size_t) switch_buffer_read(switch_buffer *buffer, void *da
memcpy(data, buffer->data, reading); memcpy(data, buffer->data, reading);
memmove(buffer->data, buffer->data + reading, buffer->datalen - reading); memmove(buffer->data, buffer->data + reading, buffer->datalen - reading);
buffer->used -= reading; buffer->used -= reading;
//printf("o %d = %d\n", reading, buffer->used); //if (buffer->id == 3) printf("%u o %d = %d\n", buffer->id, (uint32_t)reading, (uint32_t)buffer->used);
return reading; return reading;
} }
@ -128,14 +132,14 @@ SWITCH_DECLARE(switch_size_t) switch_buffer_write(switch_buffer *buffer, void *d
assert(buffer->data != NULL); assert(buffer->data != NULL);
freespace = buffer->datalen - buffer->used; freespace = buffer->datalen - buffer->used;
if (freespace < datalen) { if (freespace < datalen) {
return 0; return 0;
} else { } else {
memcpy(buffer->data + buffer->used, data, datalen); memcpy(buffer->data + buffer->used, data, datalen);
buffer->used += datalen; buffer->used += datalen;
} }
//printf("i %d = %d\n", datalen, buffer->used); //if (buffer->id == 3) printf("%u i %d = %d\n", buffer->id, (uint32_t)datalen, (uint32_t)buffer->used);
return buffer->used; return buffer->used;
} }

View File

@ -1265,7 +1265,7 @@ SWITCH_DECLARE(switch_status) switch_core_session_write_frame(switch_core_sessio
} }
} }
if (!(switch_buffer_write(session->raw_write_buffer, write_frame->data, write_frame->datalen))) { if (!(switch_buffer_write(session->raw_write_buffer, write_frame->data, write_frame->datalen))) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Write Buffer Failed!\n"); switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Write Buffer %u bytes Failed!\n", write_frame->datalen);
return SWITCH_STATUS_MEMERR; return SWITCH_STATUS_MEMERR;
} }
} }
@ -1374,10 +1374,13 @@ SWITCH_DECLARE(switch_status) switch_core_session_write_frame(switch_core_sessio
write_frame->datalen = session->read_resampler->to_len * 2; write_frame->datalen = session->read_resampler->to_len * 2;
write_frame->rate = session->read_resampler->to_rate; write_frame->rate = session->read_resampler->to_rate;
} }
return perform_write(session, write_frame, timeout, io_flag, stream_id); if ((status = perform_write(session, write_frame, timeout, io_flag, stream_id)) != SWITCH_STATUS_SUCCESS) {
break;
} }
} }
} }
return status;
}
} }
} }
} else { } else {

View File

@ -266,6 +266,7 @@ SWITCH_DECLARE(switch_status) switch_ivr_play_file(switch_core_session *session,
int stream_id; int stream_id;
switch_status status = SWITCH_STATUS_SUCCESS; switch_status status = SWITCH_STATUS_SUCCESS;
switch_file_handle lfh; switch_file_handle lfh;
switch_codec *read_codec = switch_core_session_get_read_codec(session);
if (!fh) { if (!fh) {
fh = &lfh; fh = &lfh;
@ -290,10 +291,9 @@ SWITCH_DECLARE(switch_status) switch_ivr_play_file(switch_core_session *session,
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "OPEN FILE %s %uhz %u channels\n", file, fh->samplerate, fh->channels); switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "OPEN FILE %s %uhz %u channels\n", file, fh->samplerate, fh->channels);
interval = 20; interval = read_codec->implementation->microseconds_per_frame / 1000;
samples = ((fh->samplerate / 50) * fh->channels); samples = read_codec->implementation->bytes_per_frame / 2;
len = samples * 2; len = samples * 2;
codec_name = "L16"; codec_name = "L16";
if (switch_core_codec_init(&codec, if (switch_core_codec_init(&codec,