[Freeswitch-svn] [commit] r2554 - in freeswitch/trunk: libs/codec/lpc10 src src/mod/endpoints/mod_dingaling src/mod/endpoints/mod_exosip src/mod/endpoints/mod_sofia
Freeswitch SVN
anthm at freeswitch.org
Thu Sep 7 11:08:41 EDT 2006
Author: anthm
Date: Thu Sep 7 11:08:40 2006
New Revision: 2554
Modified:
freeswitch/trunk/libs/codec/lpc10/Makefile.am
freeswitch/trunk/src/mod/endpoints/mod_dingaling/mod_dingaling.c
freeswitch/trunk/src/mod/endpoints/mod_exosip/mod_exosip.c
freeswitch/trunk/src/mod/endpoints/mod_sofia/mod_sofia.c
freeswitch/trunk/src/switch_core.c
Log:
update
Modified: freeswitch/trunk/libs/codec/lpc10/Makefile.am
==============================================================================
--- freeswitch/trunk/libs/codec/lpc10/Makefile.am (original)
+++ freeswitch/trunk/libs/codec/lpc10/Makefile.am Thu Sep 7 11:08:40 2006
@@ -2,24 +2,20 @@
SUBDIRS =
AUTOMAKE_OPTS= gnu
MAKE=gmake
-NAME=liblpc10
+NAME=libg7xx
AM_CC=gcc
AM_CFLAGS = -Wall -O3 -funroll-loops
AM_CPPFLAGS = $(AM_CFLAGS)
-lib_LTLIBRARIES = liblpc10.la
-liblpc10_la_SOURCES = analys.c dcbias.c difmag.c energy.c hp100.c ivfilt.c lpcini.c mload.c placea.c prepro.c synths.c vparms.c \
-bsynz.c decode.c dyptrk.c f2clib.c invert.c lpcdec.c lpfilt.c onset.c placev.c random.c tbdm.c \
-chanwr.c deemp.c encode.c ham84.c irc2pc.c lpcenc.c median.c pitsyn.c preemp.c rcchk.c voicin.c
+lib_LTLIBRARIES = libg7xx.la
+libg7xx_la_SOURCES = g711.c g722_deode.c g722_encode.c g726.c
+libg7xx_la_CFLAGS = $(AM_CFLAGS)
+libg7xx_la_LDFLAGS =
-
-liblpc10_la_CFLAGS = $(AM_CFLAGS)
-liblpc10_la_LDFLAGS =
-
-library_includedir = $(prefix)/include/lpc10
-library_include_HEADERS = f2c.h lpc10.h
+library_includedir = $(prefix)/include/g7xx
+library_include_HEADERS = g726.h g711.h g722.h
Modified: freeswitch/trunk/src/mod/endpoints/mod_dingaling/mod_dingaling.c
==============================================================================
--- freeswitch/trunk/src/mod/endpoints/mod_dingaling/mod_dingaling.c (original)
+++ freeswitch/trunk/src/mod/endpoints/mod_dingaling/mod_dingaling.c Thu Sep 7 11:08:40 2006
@@ -283,17 +283,13 @@
{
switch_channel_t *channel = switch_core_session_get_channel(tech_pvt->session);
const char *err;
- int ms = 20;
+ int ms = 0;
switch_rtp_flag_t flags;
if (switch_rtp_ready(tech_pvt->rtp_session)) {
return 1;
}
- if (!strncasecmp(tech_pvt->codec_name, "ilbc", 4)) {
- ms = 30;
- }
-
if (switch_core_codec_init(&tech_pvt->read_codec,
tech_pvt->codec_name,
tech_pvt->codec_rate,
@@ -1693,6 +1689,7 @@
if (!strncasecmp(name, "ilbc", 4)) {
name = "ilbc";
}
+ switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "compare %s %d to %s %d\n", payloads[x].name, payloads[x].id, name, tech_pvt->codecs[y]->ianacode);
if (tech_pvt->codecs[y]->ianacode > 96) {
match = strcasecmp(name, payloads[x].name) ? 0 : 1;
} else {
Modified: freeswitch/trunk/src/mod/endpoints/mod_exosip/mod_exosip.c
==============================================================================
--- freeswitch/trunk/src/mod/endpoints/mod_exosip/mod_exosip.c (original)
+++ freeswitch/trunk/src/mod/endpoints/mod_exosip/mod_exosip.c Thu Sep 7 11:08:40 2006
@@ -1439,17 +1439,13 @@
{
int rate = atoi(drate);
- int ms = globals.codec_ms;
+ int ms = 0; //globals.codec_ms;
if (imp) {
ms = imp->microseconds_per_frame / 1000;
}
- if (!strcasecmp(dname, "ilbc")) {
- ms = 30;
- }
-
if (switch_core_codec_init(&tech_pvt->read_codec,
dname,
rate,
@@ -1938,12 +1934,8 @@
if (!switch_test_flag(tech_pvt, TFLAG_USING_CODEC)) {
int rate = atoi(drate);
- int ms = globals.codec_ms;
+ int ms = 0; //globals.codec_ms;
- if (!strcasecmp(dname, "ilbc")) {
- ms = 30;
- }
-
if (imp) {
ms = imp->microseconds_per_frame / 1000;
}
@@ -2273,7 +2265,7 @@
}
if (!globals.codec_ms) {
- globals.codec_ms = 20;
+ globals.codec_ms = 0;
}
if (!globals.port) {
Modified: freeswitch/trunk/src/mod/endpoints/mod_sofia/mod_sofia.c
==============================================================================
--- freeswitch/trunk/src/mod/endpoints/mod_sofia/mod_sofia.c (original)
+++ freeswitch/trunk/src/mod/endpoints/mod_sofia/mod_sofia.c Thu Sep 7 11:08:40 2006
@@ -1661,6 +1661,8 @@
profile->name = switch_core_strdup(profile->pool, xprofilename);
profile->dtmf_duration = 100;
+ profile->codec_ms = 20;
+
for (param = switch_xml_child(xprofile, "param"); param; param = param->next) {
char *var = (char *) switch_xml_attr_soft(param, "name");
char *val = (char *) switch_xml_attr_soft(param, "value");
@@ -1738,10 +1740,6 @@
profile->rtpip = switch_core_strdup(profile->pool, "127.0.0.1");
}
- if (!profile->codec_ms) {
- profile->codec_ms = 20;
- }
-
if (!profile->sip_port) {
profile->sip_port = 5060;
}
Modified: freeswitch/trunk/src/switch_core.c
==============================================================================
--- freeswitch/trunk/src/switch_core.c (original)
+++ freeswitch/trunk/src/switch_core.c Thu Sep 7 11:08:40 2006
@@ -502,8 +502,10 @@
return SWITCH_STATUS_SUCCESS;
} else {
- switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "Codec %s Exists but not at the desired implementation.\n",
- codec_name);
+ switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "Codec %s Exists but not at the desired implementation. %dhz %dms\n",
+ codec_name,
+ rate,
+ ms);
}
return SWITCH_STATUS_NOTIMPL;
More information about the Freeswitch-svn
mailing list