remove trys to implement non standard codecs.
fixxxxes. git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@15264 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
e9d2db41e9
commit
ac1fa6f876
|
@ -1,2 +1,13 @@
|
||||||
faststart and codecs v CallProceeding due to h323plus, grep "Very Frustrating - S.H." in h323plus
|
faststart and codecs v CallProceeding due to h323plus, grep "Very Frustrating - S.H." in h323plus
|
||||||
source and uncomment commented lines.
|
source and uncomment commented lines.
|
||||||
|
|
||||||
|
|
||||||
|
exploration form developer of h323plus:
|
||||||
|
|
||||||
|
Yes that should be mera.
|
||||||
|
|
||||||
|
The problem is that Callproceeding does not always come from the remote it
|
||||||
|
may be generated by the gatekeeper. MERA where sending fast start elements
|
||||||
|
in the Call proceeding and connect. The call proceeding where not valid and
|
||||||
|
causing the media to fail. Normally (although valid) EP's do not set Fast
|
||||||
|
Start in Call proceeding so the code was disabled to resolve the MERA issue.
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
|
|
||||||
|
fixxxxes
|
||||||
|
remove trys to implement non standard codecs.
|
||||||
implement jitter-size value option.
|
implement jitter-size value option.
|
||||||
implement gk register retry timer.
|
implement gk register retry timer.
|
||||||
implement h245insetup enable/disable option.
|
implement h245insetup enable/disable option.
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
Version 0.0.9
|
Version 0.0.11
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "mod_h323.h"
|
#include "mod_h323.h"
|
||||||
|
@ -25,41 +25,21 @@ static const char* h323_formats[] = {
|
||||||
"G.711-ALaw-64k", "PCMA",
|
"G.711-ALaw-64k", "PCMA",
|
||||||
"G.711-uLaw-64k", "PCMU",
|
"G.711-uLaw-64k", "PCMU",
|
||||||
"GSM-06.10", "GSM",
|
"GSM-06.10", "GSM",
|
||||||
"MS-GSM", "msgsm",
|
|
||||||
"SpeexNarrow", "speex",
|
|
||||||
"LPC-10", "lpc10",
|
|
||||||
"iLBC-15k2", "ilbc20",
|
|
||||||
"iLBC-13k3", "ilbc30",
|
|
||||||
"G.723", "G723",
|
"G.723", "G723",
|
||||||
"G.726", "G726",
|
|
||||||
"G.728", "G728",
|
|
||||||
"G.729B", "G729b",
|
"G.729B", "G729b",
|
||||||
"G.729", "G729",
|
"G.729", "G729",
|
||||||
"PCM-16", "slin",
|
|
||||||
"G.729A", "G729a",
|
"G.729A", "G729a",
|
||||||
"G.729A/B", "G729ab",
|
"G.729A/B", "G729ab",
|
||||||
"G.723.1", "G723.1",
|
"G.723.1", "G723.1",
|
||||||
"G.723.1(5.3k)", "G723.1-5k3",
|
"G.723.1(5.3k)", "G723.1-5k3",
|
||||||
"G.723.1A(5.3k)", "G723.1a-5k3",
|
"G.723.1A(5.3k)", "G723.1a-5k3",
|
||||||
"G.723.1A(6.3k)", "G723.1a-6k3",
|
"G.723.1A(6.3k)", "G723.1a-6k3",
|
||||||
"G.723.1A(6.3k)-Cisco", "g723.1a-6k3-cisco",
|
|
||||||
"G.726-16k", "G726-16",
|
|
||||||
"G.726-24k", "G726-24",
|
|
||||||
"G.726-32k", "G726-32",
|
|
||||||
"G.726-40k", "G726-40",
|
|
||||||
"iLBC", "ilbc",
|
|
||||||
"SpeexNarrow-18.2k", "speex-18k2",
|
|
||||||
"SpeexNarrow-15k", "speex-15k",
|
|
||||||
"SpeexNarrow-11k", "speex-11k",
|
|
||||||
"SpeexNarrow-8k", "speex-8k",
|
|
||||||
"SpeexNarrow-5.95k", "speex-5k95",
|
|
||||||
0
|
0
|
||||||
};
|
};
|
||||||
|
|
||||||
static switch_status_t on_hangup(switch_core_session_t *session);
|
static switch_status_t on_hangup(switch_core_session_t *session);
|
||||||
static switch_status_t on_destroy(switch_core_session_t *session);
|
static switch_status_t on_destroy(switch_core_session_t *session);
|
||||||
|
|
||||||
|
|
||||||
static switch_io_routines_t h323fs_io_routines = {
|
static switch_io_routines_t h323fs_io_routines = {
|
||||||
/*.outgoing_channel */ create_outgoing_channel,
|
/*.outgoing_channel */ create_outgoing_channel,
|
||||||
/*.read_frame */ FSH323Connection::read_audio_frame,
|
/*.read_frame */ FSH323Connection::read_audio_frame,
|
||||||
|
@ -88,12 +68,9 @@ static switch_state_handler_table_t h323fs_event_handlers = {
|
||||||
/*.on_destroy*/ on_destroy
|
/*.on_destroy*/ on_destroy
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
static FSProcess *opal_process = NULL;
|
static FSProcess *opal_process = NULL;
|
||||||
SWITCH_MODULE_LOAD_FUNCTION(mod_h323_load){
|
SWITCH_MODULE_LOAD_FUNCTION(mod_h323_load){
|
||||||
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_CONSOLE, "Starting loading mod_h323\n");
|
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_CONSOLE, "Starting loading mod_h323\n");
|
||||||
|
|
||||||
|
|
||||||
*module_interface = switch_loadable_module_create_module_interface(pool, modname);
|
*module_interface = switch_loadable_module_create_module_interface(pool, modname);
|
||||||
|
|
||||||
if (!*module_interface) {
|
if (!*module_interface) {
|
||||||
|
@ -268,25 +245,19 @@ PString GetH245CodecName(const H323Capability* cap){
|
||||||
case H245_AudioCapability::e_gsmHalfRate:
|
case H245_AudioCapability::e_gsmHalfRate:
|
||||||
case H245_AudioCapability::e_gsmEnhancedFullRate:
|
case H245_AudioCapability::e_gsmEnhancedFullRate:
|
||||||
return "GSM";
|
return "GSM";
|
||||||
case H245_AudioCapability::e_nonStandard:{
|
|
||||||
if (cap->GetFormatName().Find("726-40")) return "G726-40";
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
return "Unknown";
|
return "Unknown";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
FSProcess::FSProcess()
|
FSProcess::FSProcess()
|
||||||
: PLibraryProcess("Test", "mod_h323", 1, 0, AlphaCode, 1)
|
: PLibraryProcess("Test", "mod_h323", 1, 0, AlphaCode, 1)
|
||||||
, m_h323endpoint(NULL){
|
, m_h323endpoint(NULL){
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
FSProcess::~FSProcess(){
|
FSProcess::~FSProcess(){
|
||||||
delete m_h323endpoint;
|
delete m_h323endpoint;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
bool FSProcess::Initialise(switch_loadable_module_interface_t *iface){
|
bool FSProcess::Initialise(switch_loadable_module_interface_t *iface){
|
||||||
PTRACE(4, "mod_h323\t======>FSProcess::Initialise " << *this);
|
PTRACE(4, "mod_h323\t======>FSProcess::Initialise " << *this);
|
||||||
|
|
||||||
|
@ -309,7 +280,6 @@ bool FSH323EndPoint::Initialise(switch_loadable_module_interface_t *iface){
|
||||||
|
|
||||||
PString codec = ((const char *)mod_h323_globals.codec_string);
|
PString codec = ((const char *)mod_h323_globals.codec_string);
|
||||||
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Config capabilliti %s \n",(const char *)codec);
|
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Config capabilliti %s \n",(const char *)codec);
|
||||||
|
|
||||||
|
|
||||||
if (!codec.IsEmpty()) {
|
if (!codec.IsEmpty()) {
|
||||||
const char** f = h323_formats;
|
const char** f = h323_formats;
|
||||||
|
@ -338,9 +308,7 @@ bool FSH323EndPoint::Initialise(switch_loadable_module_interface_t *iface){
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// AddAllCapabilities(0, 0, "*");
|
|
||||||
|
|
||||||
|
|
||||||
AddAllUserInputCapabilities(0,1);
|
AddAllUserInputCapabilities(0,1);
|
||||||
PTRACE(1, "OpenPhone\tCapability Table:\n" << setprecision(4) << capabilities);
|
PTRACE(1, "OpenPhone\tCapability Table:\n" << setprecision(4) << capabilities);
|
||||||
|
|
||||||
|
@ -358,31 +326,10 @@ bool FSH323EndPoint::Initialise(switch_loadable_module_interface_t *iface){
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
OpalMediaFormatList allCodecs = OpalMediaFormat::GetAllRegisteredMediaFormats();
|
|
||||||
for (OpalMediaFormatList::iterator it = allCodecs.begin(); it != allCodecs.end(); ++it) {
|
|
||||||
if (it->GetMediaType() == OpalMediaType::Audio()) {
|
|
||||||
it->SetOptionInteger(OpalAudioFormat::RxFramesPerPacketOption(), 1);
|
|
||||||
it->SetOptionInteger(OpalAudioFormat::TxFramesPerPacketOption(), 1);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
|
|
||||||
if (!m_gkAddress.IsEmpty() && !m_gkIdentifer.IsEmpty() && !m_gkInterface.IsEmpty()) {
|
if (!m_gkAddress.IsEmpty() && !m_gkIdentifer.IsEmpty() && !m_gkInterface.IsEmpty()) {
|
||||||
m_thread = new FSGkRegThread(this,&m_gkAddress,&m_gkIdentifer,&m_gkInterface,m_gkretry);
|
m_thread = new FSGkRegThread(this,&m_gkAddress,&m_gkIdentifer,&m_gkInterface,m_gkretry);
|
||||||
m_thread->SetAutoDelete();
|
m_thread->SetAutoDelete();
|
||||||
m_thread->Resume();
|
m_thread->Resume();
|
||||||
/*
|
|
||||||
if (UseGatekeeper(m_gkAddress, m_gkIdentifer, m_gkInterface))
|
|
||||||
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_INFO, "Started gatekeeper: %s\n",
|
|
||||||
(const char *)GetGatekeeper()->GetName());
|
|
||||||
else
|
|
||||||
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR,
|
|
||||||
"Could not start gatekeeper: addr=\"%s\", id=\"%s\", if=\"%s\"\n",
|
|
||||||
(const char *)m_gkAddress,
|
|
||||||
(const char *)m_gkIdentifer,
|
|
||||||
(const char *)m_gkInterface);
|
|
||||||
*/
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return TRUE;
|
return TRUE;
|
||||||
|
@ -480,7 +427,7 @@ switch_status_t FSH323EndPoint::ReadConfig(int reload){
|
||||||
for (switch_xml_t xmlParam = switch_xml_child(xmlListener, "param"); xmlParam != NULL; xmlParam = xmlParam->next) {
|
for (switch_xml_t xmlParam = switch_xml_child(xmlListener, "param"); xmlParam != NULL; xmlParam = xmlParam->next) {
|
||||||
const char *var = switch_xml_attr_soft(xmlParam, "name");
|
const char *var = switch_xml_attr_soft(xmlParam, "name");
|
||||||
const char *val = switch_xml_attr_soft(xmlParam, "value");
|
const char *val = switch_xml_attr_soft(xmlParam, "value");
|
||||||
//switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Var - '%s' and Val - '%s' \n", var, val);
|
|
||||||
if (!strcasecmp(var, "h323-ip"))
|
if (!strcasecmp(var, "h323-ip"))
|
||||||
ip = val;
|
ip = val;
|
||||||
else if (!strcasecmp(var, "h323-port"))
|
else if (!strcasecmp(var, "h323-port"))
|
||||||
|
@ -541,7 +488,6 @@ H323Connection *FSH323EndPoint::CreateConnection(
|
||||||
}
|
}
|
||||||
|
|
||||||
return new FSH323Connection(*this,transport,callReference,(switch_caller_profile_t *)userData, fsSession, fsChannel);
|
return new FSH323Connection(*this,transport,callReference,(switch_caller_profile_t *)userData, fsSession, fsChannel);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
bool FSH323EndPoint::OnSetGatewayPrefixes(PStringList & prefixes) const{
|
bool FSH323EndPoint::OnSetGatewayPrefixes(PStringList & prefixes) const{
|
||||||
|
@ -732,7 +678,6 @@ H323Connection::AnswerCallResponse FSH323Connection::OnAnswerCall(const PString
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
switch_caller_profile_t *caller_profile = switch_caller_profile_new(switch_core_session_get_pool(m_fsSession),
|
switch_caller_profile_t *caller_profile = switch_caller_profile_new(switch_core_session_get_pool(m_fsSession),
|
||||||
NULL,
|
NULL,
|
||||||
/** username */
|
/** username */
|
||||||
|
@ -791,14 +736,13 @@ H323Channel* FSH323Connection::CreateRealTimeLogicalChannel(const H323Capability
|
||||||
|
|
||||||
H323TransportAddress m_h323transportadd = GetSignallingChannel()->GetLocalAddress();
|
H323TransportAddress m_h323transportadd = GetSignallingChannel()->GetLocalAddress();
|
||||||
m_h323transportadd.GetIpAddress(m_RTPlocalIP);
|
m_h323transportadd.GetIpAddress(m_RTPlocalIP);
|
||||||
// return H323Connection::CreateRealTimeLogicalChannel(capability,dir,sessionID,param);
|
|
||||||
return new FSH323_ExternalRTPChannel(*this, capability, dir, sessionID,m_RTPlocalIP,m_RTPlocalPort);
|
return new FSH323_ExternalRTPChannel(*this, capability, dir, sessionID,m_RTPlocalIP,m_RTPlocalPort);
|
||||||
}
|
}
|
||||||
|
|
||||||
PBoolean FSH323Connection::OnStartLogicalChannel(H323Channel & channel){
|
PBoolean FSH323Connection::OnStartLogicalChannel(H323Channel & channel){
|
||||||
PTRACE(4, "mod_h323\t======>FSH323Connection::OnStartLogicalChannel chennel = "<<&channel<<" ["<<*this<<"]");
|
PTRACE(4, "mod_h323\t======>FSH323Connection::OnStartLogicalChannel chennel = "<<&channel<<" ["<<*this<<"]");
|
||||||
|
|
||||||
// return H323Connection::OnStartLogicalChannel(channel);
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -811,10 +755,8 @@ PBoolean FSH323Connection::OnCreateLogicalChannel(const H323Capability& capabili
|
||||||
void FSH323Connection::OnReceivedReleaseComplete(const H323SignalPDU & pdu){
|
void FSH323Connection::OnReceivedReleaseComplete(const H323SignalPDU & pdu){
|
||||||
PTRACE(4, "mod_h323\t======>FSH323Connection::OnReceivedReleaseComplete cause = "<<pdu.GetQ931().GetCause()<<" value = "<<(switch_call_cause_t)pdu.GetQ931().GetCause());
|
PTRACE(4, "mod_h323\t======>FSH323Connection::OnReceivedReleaseComplete cause = "<<pdu.GetQ931().GetCause()<<" value = "<<(switch_call_cause_t)pdu.GetQ931().GetCause());
|
||||||
h323_private_t *tech_pvt = (h323_private_t *) switch_core_session_get_private(m_fsSession);
|
h323_private_t *tech_pvt = (h323_private_t *) switch_core_session_get_private(m_fsSession);
|
||||||
// tech_pvt->me = NULL;
|
|
||||||
|
|
||||||
switch_channel_hangup(switch_core_session_get_channel(m_fsSession),(switch_call_cause_t)pdu.GetQ931().GetCause());
|
switch_channel_hangup(switch_core_session_get_channel(m_fsSession),(switch_call_cause_t)pdu.GetQ931().GetCause());
|
||||||
// on_hangup(GetCallReference(), (const char *)GetCallToken(), pdu.GetQ931().GetCause());
|
|
||||||
return H323Connection::OnReceivedReleaseComplete(pdu);
|
return H323Connection::OnReceivedReleaseComplete(pdu);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -865,6 +807,7 @@ bool FSH323Connection::OnReceivedCapabilitySet(const H323Capabilities & remoteCa
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
PTRACE(4, "mod_h323\t----> Capabilities not NULL ");
|
PTRACE(4, "mod_h323\t----> Capabilities not NULL ");
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -889,6 +832,7 @@ void FSH323Connection::OnEstablished(){
|
||||||
|
|
||||||
void FSH323Connection::setRemoteAddress(const char* remoteIP, WORD remotePort){
|
void FSH323Connection::setRemoteAddress(const char* remoteIP, WORD remotePort){
|
||||||
PTRACE(4, "mod_h323\t======>PFSH323Connection::setRemoteAddress remoteIP ="<<remoteIP<<", remotePort = "<<remotePort<<" "<<*this);
|
PTRACE(4, "mod_h323\t======>PFSH323Connection::setRemoteAddress remoteIP ="<<remoteIP<<", remotePort = "<<remotePort<<" "<<*this);
|
||||||
|
|
||||||
if (!m_remotePort) {
|
if (!m_remotePort) {
|
||||||
PTRACE(4, "mod_h323\tGot remote RTP address "<<remoteIP<<":"<<remotePort<<" ["<<*this<<"]");
|
PTRACE(4, "mod_h323\tGot remote RTP address "<<remoteIP<<":"<<remotePort<<" ["<<*this<<"]");
|
||||||
m_remotePort = remotePort;
|
m_remotePort = remotePort;
|
||||||
|
@ -925,8 +869,6 @@ switch_status_t FSH323Connection::kill_channel(int sig){
|
||||||
break;
|
break;
|
||||||
case SWITCH_SIG_KILL:
|
case SWITCH_SIG_KILL:
|
||||||
default:
|
default:
|
||||||
m_rxAudioOpened.Signal();
|
|
||||||
m_txAudioOpened.Signal();
|
|
||||||
if (switch_rtp_ready(tech_pvt->rtp_session)) {
|
if (switch_rtp_ready(tech_pvt->rtp_session)) {
|
||||||
switch_rtp_kill_socket(tech_pvt->rtp_session);
|
switch_rtp_kill_socket(tech_pvt->rtp_session);
|
||||||
}
|
}
|
||||||
|
@ -951,6 +893,7 @@ void FSH323Connection::SendUserInputTone(char tone, unsigned duration, unsigned
|
||||||
void FSH323Connection::OnUserInputTone(char tone, unsigned duration, unsigned logicalChannel, unsigned rtpTimestamp)
|
void FSH323Connection::OnUserInputTone(char tone, unsigned duration, unsigned logicalChannel, unsigned rtpTimestamp)
|
||||||
{
|
{
|
||||||
PTRACE(4, "mod_h323\t======>FSH323Connection::OnUserInputTone [" << *this<<"]");
|
PTRACE(4, "mod_h323\t======>FSH323Connection::OnUserInputTone [" << *this<<"]");
|
||||||
|
|
||||||
switch_dtmf_t dtmf = { tone, duration };
|
switch_dtmf_t dtmf = { tone, duration };
|
||||||
switch_channel_queue_dtmf(m_fsChannel, &dtmf);
|
switch_channel_queue_dtmf(m_fsChannel, &dtmf);
|
||||||
H323Connection::OnUserInputTone( tone, duration, logicalChannel, rtpTimestamp);
|
H323Connection::OnUserInputTone( tone, duration, logicalChannel, rtpTimestamp);
|
||||||
|
@ -967,12 +910,8 @@ void FSH323Connection::OnUserInputString(const PString &value)
|
||||||
|
|
||||||
switch_status_t FSH323Connection::receive_message(switch_core_session_message_t *msg){
|
switch_status_t FSH323Connection::receive_message(switch_core_session_message_t *msg){
|
||||||
PTRACE(4, "mod_h323\t======>FSH323Connection::receive_message MSG=" << msg->message_id);
|
PTRACE(4, "mod_h323\t======>FSH323Connection::receive_message MSG=" << msg->message_id);
|
||||||
|
|
||||||
|
|
||||||
switch_channel_t *channel = switch_core_session_get_channel(m_fsSession);
|
switch_channel_t *channel = switch_core_session_get_channel(m_fsSession);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
switch (msg->message_id) {
|
switch (msg->message_id) {
|
||||||
case SWITCH_MESSAGE_INDICATE_BRIDGE:
|
case SWITCH_MESSAGE_INDICATE_BRIDGE:
|
||||||
case SWITCH_MESSAGE_INDICATE_UNBRIDGE:
|
case SWITCH_MESSAGE_INDICATE_UNBRIDGE:
|
||||||
|
@ -985,25 +924,21 @@ switch_status_t FSH323Connection::receive_message(switch_core_session_message_t
|
||||||
|
|
||||||
switch (msg->message_id) {
|
switch (msg->message_id) {
|
||||||
case SWITCH_MESSAGE_INDICATE_RINGING:{
|
case SWITCH_MESSAGE_INDICATE_RINGING:{
|
||||||
// AnsweringCall(AnswerCallAlertWithMedia);
|
|
||||||
AnsweringCall(AnswerCallPending);
|
AnsweringCall(AnswerCallPending);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case SWITCH_MESSAGE_INDICATE_DEFLECT:{
|
case SWITCH_MESSAGE_INDICATE_DEFLECT:{
|
||||||
/* PSafePtr<OpalConnection> other = GetOtherPartyConnection();
|
|
||||||
if (other != NULL)
|
|
||||||
other->TransferConnection(msg->string_arg);
|
|
||||||
break;
|
break;
|
||||||
*/
|
|
||||||
}
|
}
|
||||||
case SWITCH_MESSAGE_INDICATE_PROGRESS:{
|
case SWITCH_MESSAGE_INDICATE_PROGRESS:{
|
||||||
m_callOnPreAnswer = true;
|
|
||||||
AnsweringCall(AnswerCallPending);
|
AnsweringCall(AnswerCallPending);
|
||||||
AnsweringCall(AnswerCallDeferredWithMedia);
|
AnsweringCall(AnswerCallDeferredWithMedia);
|
||||||
m_txAudioOpened.Wait();
|
|
||||||
if (!switch_channel_test_flag(m_fsChannel, CF_EARLY_MEDIA)) {
|
if (m_txChennel && m_rxChennel)
|
||||||
switch_channel_mark_pre_answered(m_fsChannel);
|
if (!switch_channel_test_flag(m_fsChannel, CF_EARLY_MEDIA)) {
|
||||||
}
|
switch_channel_mark_pre_answered(m_fsChannel);
|
||||||
|
}
|
||||||
|
else m_callOnPreAnswer = true;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case SWITCH_MESSAGE_INDICATE_ANSWER:{
|
case SWITCH_MESSAGE_INDICATE_ANSWER:{
|
||||||
|
@ -1012,14 +947,13 @@ switch_status_t FSH323Connection::receive_message(switch_core_session_message_t
|
||||||
}
|
}
|
||||||
AnsweringCall(H323Connection::AnswerCallNow);
|
AnsweringCall(H323Connection::AnswerCallNow);
|
||||||
PTRACE(4, "mod_h323\tMedia started on connection " << *this);
|
PTRACE(4, "mod_h323\tMedia started on connection " << *this);
|
||||||
|
|
||||||
m_rxAudioOpened.Wait();
|
if (m_txChennel && m_rxChennel)
|
||||||
m_txAudioOpened.Wait();
|
if (!switch_channel_test_flag(m_fsChannel, CF_EARLY_MEDIA)) {
|
||||||
|
PTRACE(4, "mod_h323\t-------------------->switch_channel_mark_answered(m_fsChannel) " << *this);
|
||||||
if (!switch_channel_test_flag(m_fsChannel, CF_EARLY_MEDIA)) {
|
switch_channel_mark_answered(m_fsChannel);
|
||||||
PTRACE(4, "mod_h323\t-------------------->switch_channel_mark_answered(m_fsChannel) " << *this);
|
}
|
||||||
switch_channel_mark_answered(m_fsChannel);
|
else m_ChennelAnswer = true;
|
||||||
}
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
default:{
|
default:{
|
||||||
|
@ -1069,13 +1003,7 @@ switch_status_t FSH323Connection::read_audio_frame(switch_frame_t **frame, switc
|
||||||
PTRACE(4, "mod_h323\t======>FSH323Connection::read_audio_frame " << *this);
|
PTRACE(4, "mod_h323\t======>FSH323Connection::read_audio_frame " << *this);
|
||||||
h323_private_t *tech_pvt = (h323_private_t *) switch_core_session_get_private(m_fsSession);
|
h323_private_t *tech_pvt = (h323_private_t *) switch_core_session_get_private(m_fsSession);
|
||||||
tech_pvt->read_frame.flags = 0;
|
tech_pvt->read_frame.flags = 0;
|
||||||
/*
|
|
||||||
if (switch_channel_test_private_flag(m_fsChannel, CF_NEED_FLUSH)) {
|
|
||||||
switch_channel_clear_private_flag(m_fsChannel, CF_NEED_FLUSH);
|
|
||||||
} else {
|
|
||||||
switch_core_timer_next(&tech_pvt->read_timer);
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
switch_set_flag_locked(tech_pvt, TFLAG_READING);
|
switch_set_flag_locked(tech_pvt, TFLAG_READING);
|
||||||
if (!switch_channel_ready(m_fsChannel)) {
|
if (!switch_channel_ready(m_fsChannel)) {
|
||||||
PTRACE(4, "mod_h323\t---------> RETURN");
|
PTRACE(4, "mod_h323\t---------> RETURN");
|
||||||
|
@ -1089,8 +1017,6 @@ switch_status_t FSH323Connection::read_audio_frame(switch_frame_t **frame, switc
|
||||||
return SWITCH_STATUS_FALSE;
|
return SWITCH_STATUS_FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
switch_status_t status = switch_rtp_zerocopy_read_frame(tech_pvt->rtp_session, &tech_pvt->read_frame, flags);
|
switch_status_t status = switch_rtp_zerocopy_read_frame(tech_pvt->rtp_session, &tech_pvt->read_frame, flags);
|
||||||
if (status != SWITCH_STATUS_SUCCESS && status != SWITCH_STATUS_BREAK) {
|
if (status != SWITCH_STATUS_SUCCESS && status != SWITCH_STATUS_BREAK) {
|
||||||
PTRACE(4, "mod_h323\t---------> RETURN");
|
PTRACE(4, "mod_h323\t---------> RETURN");
|
||||||
|
@ -1166,7 +1092,6 @@ switch_status_t FSH323Connection::read_video_frame(switch_frame_t **frame, switc
|
||||||
|
|
||||||
switch_status_t FSH323Connection::write_video_frame(switch_frame_t *frame, switch_io_flag_t flag, int stream_id){
|
switch_status_t FSH323Connection::write_video_frame(switch_frame_t *frame, switch_io_flag_t flag, int stream_id){
|
||||||
PTRACE(4, "mod_h323\t======>FSH323Connection::write_video_frame " << *this);
|
PTRACE(4, "mod_h323\t======>FSH323Connection::write_video_frame " << *this);
|
||||||
// return write_frame(OpalMediaType::Video(), frame, flag);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////
|
||||||
|
@ -1183,9 +1108,9 @@ FSH323_ExternalRTPChannel::FSH323_ExternalRTPChannel(
|
||||||
, m_fsSession(connection.GetSession())
|
, m_fsSession(connection.GetSession())
|
||||||
, m_capability(&capability)
|
, m_capability(&capability)
|
||||||
, m_RTPlocalPort(dataPort){
|
, m_RTPlocalPort(dataPort){
|
||||||
h323_private_t *tech_pvt = (h323_private_t *) switch_core_session_get_private(m_fsSession);
|
|
||||||
|
|
||||||
m_RTPlocalIP = (const char *)ip.AsString();
|
h323_private_t *tech_pvt = (h323_private_t *) switch_core_session_get_private(m_fsSession);
|
||||||
|
m_RTPlocalIP = (const char *)ip.AsString();
|
||||||
SetExternalAddress(H323TransportAddress(ip, dataPort), H323TransportAddress(ip, dataPort+1));
|
SetExternalAddress(H323TransportAddress(ip, dataPort), H323TransportAddress(ip, dataPort+1));
|
||||||
PTRACE(4, "mod_h323\t======>FSH323_ExternalRTPChannel::FSH323_ExternalRTPChannel "<< GetDirection()<< " addr="<< m_RTPlocalIP <<":"<< m_RTPlocalPort<<" ["<<*this<<"]");
|
PTRACE(4, "mod_h323\t======>FSH323_ExternalRTPChannel::FSH323_ExternalRTPChannel "<< GetDirection()<< " addr="<< m_RTPlocalIP <<":"<< m_RTPlocalPort<<" ["<<*this<<"]");
|
||||||
|
|
||||||
|
@ -1214,6 +1139,7 @@ FSH323_ExternalRTPChannel::FSH323_ExternalRTPChannel(
|
||||||
|
|
||||||
FSH323_ExternalRTPChannel::~FSH323_ExternalRTPChannel(){
|
FSH323_ExternalRTPChannel::~FSH323_ExternalRTPChannel(){
|
||||||
PTRACE(4, "mod_h323\t======>FSH323_ExternalRTPChannel::~FSH323_ExternalRTPChannel "<< GetDirection()<<" "<<*this);
|
PTRACE(4, "mod_h323\t======>FSH323_ExternalRTPChannel::~FSH323_ExternalRTPChannel "<< GetDirection()<<" "<<*this);
|
||||||
|
|
||||||
h323_private_t *tech_pvt = (h323_private_t *) switch_core_session_get_private(m_fsSession);
|
h323_private_t *tech_pvt = (h323_private_t *) switch_core_session_get_private(m_fsSession);
|
||||||
if (IsRunning()){
|
if (IsRunning()){
|
||||||
PTRACE(4, "mod_h323\t------------->Running");
|
PTRACE(4, "mod_h323\t------------->Running");
|
||||||
|
@ -1225,6 +1151,7 @@ FSH323_ExternalRTPChannel::~FSH323_ExternalRTPChannel(){
|
||||||
|
|
||||||
PBoolean FSH323_ExternalRTPChannel::Start(){
|
PBoolean FSH323_ExternalRTPChannel::Start(){
|
||||||
PTRACE(4, "mod_h323\t======>FSH323_ExternalRTPChannel::Start() "<<*this);
|
PTRACE(4, "mod_h323\t======>FSH323_ExternalRTPChannel::Start() "<<*this);
|
||||||
|
|
||||||
const char *err = NULL;
|
const char *err = NULL;
|
||||||
switch_rtp_flag_t flags;
|
switch_rtp_flag_t flags;
|
||||||
char * timer_name = NULL;
|
char * timer_name = NULL;
|
||||||
|
@ -1233,7 +1160,6 @@ PBoolean FSH323_ExternalRTPChannel::Start(){
|
||||||
if (!(m_conn && H323_ExternalRTPChannel::Start()))
|
if (!(m_conn && H323_ExternalRTPChannel::Start()))
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
||||||
|
|
||||||
bool isAudio;
|
bool isAudio;
|
||||||
if (m_capability->GetMainType() == H323Capability::e_Audio) {
|
if (m_capability->GetMainType() == H323Capability::e_Audio) {
|
||||||
isAudio = true;
|
isAudio = true;
|
||||||
|
@ -1244,20 +1170,14 @@ PBoolean FSH323_ExternalRTPChannel::Start(){
|
||||||
}
|
}
|
||||||
|
|
||||||
H323Codec *codec = GetCodec();
|
H323Codec *codec = GetCodec();
|
||||||
|
|
||||||
|
|
||||||
PTRACE(4, "mod_h323\t------------------->GetFrameSize() return = "<<m_format->GetFrameSize());
|
PTRACE(4, "mod_h323\t------------------->GetFrameSize() return = "<<m_format->GetFrameSize());
|
||||||
PTRACE(4, "mod_h323\t------------------->GetFrameTime() return = "<<m_format->GetFrameTime());
|
PTRACE(4, "mod_h323\t------------------->GetFrameTime() return = "<<m_format->GetFrameTime());
|
||||||
PTRACE(4, "mod_h323\t------------------->payloadCode = "<<(int)payloadCode);
|
PTRACE(4, "mod_h323\t------------------->payloadCode = "<<(int)payloadCode);
|
||||||
PTRACE(4, "mod_h323\t------------------->m_capability->GetTxFramesInPacket() return = "<<m_capability->GetTxFramesInPacket());
|
PTRACE(4, "mod_h323\t------------------->m_capability->GetTxFramesInPacket() return = "<<m_capability->GetTxFramesInPacket());
|
||||||
PTRACE(4, "mod_h323\t------------------->m_capability->GetFormatName() return = "<<m_capability->GetFormatName());
|
PTRACE(4, "mod_h323\t------------------->m_capability->GetFormatName() return = "<<m_capability->GetFormatName());
|
||||||
|
|
||||||
PTRACE(4, "mod_h323\t------------------->GetH245CodecName() return = "<<GetH245CodecName(m_capability));
|
PTRACE(4, "mod_h323\t------------------->GetH245CodecName() return = "<<GetH245CodecName(m_capability));
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
if (GetDirection() == IsReceiver){
|
if (GetDirection() == IsReceiver){
|
||||||
m_switchCodec = isAudio ? &tech_pvt->read_codec : &tech_pvt->vid_read_codec;
|
m_switchCodec = isAudio ? &tech_pvt->read_codec : &tech_pvt->vid_read_codec;
|
||||||
m_switchTimer = isAudio ? &tech_pvt->read_timer : &tech_pvt->vid_read_timer;
|
m_switchTimer = isAudio ? &tech_pvt->read_timer : &tech_pvt->vid_read_timer;
|
||||||
|
@ -1384,14 +1304,13 @@ PBoolean FSH323_ExternalRTPChannel::Start(){
|
||||||
return SWITCH_STATUS_FALSE;
|
return SWITCH_STATUS_FALSE;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (GetDirection() == IsReceiver) m_conn->m_rxAudioOpened.Signal();
|
|
||||||
else m_conn->m_txAudioOpened.Signal();
|
|
||||||
PTRACE(4, "mod_h323\t------------->External RTP address "<<m_RTPremoteIP<<":"<<m_RTPremotePort);
|
PTRACE(4, "mod_h323\t------------->External RTP address "<<m_RTPremoteIP<<":"<<m_RTPremotePort);
|
||||||
switch_mutex_unlock(tech_pvt->h323_mutex);
|
switch_mutex_unlock(tech_pvt->h323_mutex);
|
||||||
if ( m_conn->m_ChennelAnswer && m_conn->m_rxChennel && m_conn->m_txChennel)
|
if ( m_conn->m_ChennelAnswer && m_conn->m_rxChennel && m_conn->m_txChennel)
|
||||||
switch_channel_mark_answered(m_fsChannel);
|
switch_channel_mark_answered(m_fsChannel);
|
||||||
|
|
||||||
if (m_conn->m_ChennelProgress && m_conn->m_rxChennel)
|
if ((m_conn->m_ChennelProgress && m_conn->m_rxChennel)||(m_conn->m_callOnPreAnswer && m_conn->m_txChennel))
|
||||||
switch_channel_mark_pre_answered(m_fsChannel);
|
switch_channel_mark_pre_answered(m_fsChannel);
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
@ -1402,10 +1321,9 @@ PBoolean FSH323_ExternalRTPChannel::OnReceivedPDU(
|
||||||
const H245_H2250LogicalChannelParameters& param,
|
const H245_H2250LogicalChannelParameters& param,
|
||||||
unsigned& errorCode){
|
unsigned& errorCode){
|
||||||
PTRACE(4, "mod_h323\t======>FSH323_ExternalRTPChannel::OnReceivedPDU ["<<*this<<"]");
|
PTRACE(4, "mod_h323\t======>FSH323_ExternalRTPChannel::OnReceivedPDU ["<<*this<<"]");
|
||||||
|
|
||||||
if (!H323_ExternalRTPChannel::OnReceivedPDU(param,errorCode))
|
if (!H323_ExternalRTPChannel::OnReceivedPDU(param,errorCode))
|
||||||
return true;
|
return true;
|
||||||
// if (!m_conn || m_conn->hasRemoteAddress())
|
|
||||||
// return true;
|
|
||||||
PIPSocket::Address remoteIpAddress;
|
PIPSocket::Address remoteIpAddress;
|
||||||
WORD remotePort;
|
WORD remotePort;
|
||||||
GetRemoteAddress(remoteIpAddress,remotePort);
|
GetRemoteAddress(remoteIpAddress,remotePort);
|
||||||
|
@ -1452,22 +1370,9 @@ FSH323Connection * FSH323EndPoint::FSMakeCall(const PString & dest, void *userDa
|
||||||
PTRACE(4, "mod_h323\t----> Unable to get address and port");
|
PTRACE(4, "mod_h323\t----> Unable to get address and port");
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
if (!(connection = (FSH323Connection *)H323EndPoint::MakeCallLocked(dest, token, userData, transport))) {
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
|
|
||||||
if (!(connection = (FSH323Connection *)H323EndPoint::MakeCall(dest, token, userData))) {
|
if (!(connection = (FSH323Connection *)H323EndPoint::MakeCall(dest, token, userData))) {
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
unsigned int *callReference;
|
|
||||||
|
|
||||||
*callReference = connection->GetCallReference();
|
|
||||||
PTRACE(2, "mod_h323\t======>\n\tCreate outgoing cennel\n\tCall token = "<<(const char *)token<<"\n\tCall reference = "<<*callReference);
|
|
||||||
*/
|
|
||||||
return connection;
|
return connection;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1486,18 +1391,7 @@ static switch_call_cause_t create_outgoing_channel(switch_core_session_t *sessio
|
||||||
if (!(connection = ep.FSMakeCall(outbound_profile->destination_number,outbound_profile))){
|
if (!(connection = ep.FSMakeCall(outbound_profile->destination_number,outbound_profile))){
|
||||||
return SWITCH_CAUSE_PROTOCOL_ERROR;
|
return SWITCH_CAUSE_PROTOCOL_ERROR;
|
||||||
}
|
}
|
||||||
/* PSafePtr < OpalCall > call = manager.FindCallWithLock(token);
|
|
||||||
|
|
||||||
if (call == NULL) {
|
|
||||||
return SWITCH_CAUSE_PROTOCOL_ERROR;
|
|
||||||
}
|
|
||||||
|
|
||||||
PSafePtr < FSConnection > connection = call->GetConnectionAs < FSConnection > (0);
|
|
||||||
|
|
||||||
if (connection == NULL) {
|
|
||||||
return SWITCH_CAUSE_PROTOCOL_ERROR;
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
*new_session = connection->GetSession();
|
*new_session = connection->GetSession();
|
||||||
PTRACE(4, "mod_h323\t--------->GetSession() return = "<<connection->GetSession());
|
PTRACE(4, "mod_h323\t--------->GetSession() return = "<<connection->GetSession());
|
||||||
return SWITCH_CAUSE_SUCCESS;
|
return SWITCH_CAUSE_SUCCESS;
|
||||||
|
@ -1510,29 +1404,24 @@ static switch_status_t on_destroy(switch_core_session_t *session){
|
||||||
h323_private_t *tech_pvt = (h323_private_t *) switch_core_session_get_private(session);
|
h323_private_t *tech_pvt = (h323_private_t *) switch_core_session_get_private(session);
|
||||||
|
|
||||||
if (tech_pvt) {
|
if (tech_pvt) {
|
||||||
if (tech_pvt->read_codec.implementation) {
|
if (tech_pvt->read_codec.implementation) {
|
||||||
switch_core_codec_destroy(&tech_pvt->read_codec);
|
switch_core_codec_destroy(&tech_pvt->read_codec);
|
||||||
}
|
}
|
||||||
|
if (tech_pvt->write_codec.implementation) {
|
||||||
if (tech_pvt->write_codec.implementation) {
|
switch_core_codec_destroy(&tech_pvt->write_codec);
|
||||||
switch_core_codec_destroy(&tech_pvt->write_codec);
|
}
|
||||||
}
|
if (tech_pvt->vid_read_codec.implementation) {
|
||||||
|
switch_core_codec_destroy(&tech_pvt->vid_read_codec);
|
||||||
if (tech_pvt->vid_read_codec.implementation) {
|
}
|
||||||
switch_core_codec_destroy(&tech_pvt->vid_read_codec);
|
if (tech_pvt->vid_write_codec.implementation) {
|
||||||
}
|
switch_core_codec_destroy(&tech_pvt->vid_write_codec);
|
||||||
|
}
|
||||||
if (tech_pvt->vid_write_codec.implementation) {
|
if (tech_pvt->read_timer.timer_interface) {
|
||||||
switch_core_codec_destroy(&tech_pvt->vid_write_codec);
|
switch_core_timer_destroy(&tech_pvt->read_timer);
|
||||||
}
|
}
|
||||||
|
if (tech_pvt->vid_read_timer.timer_interface) {
|
||||||
if (tech_pvt->read_timer.timer_interface) {
|
switch_core_timer_destroy(&tech_pvt->vid_read_timer);
|
||||||
switch_core_timer_destroy(&tech_pvt->read_timer);
|
}
|
||||||
}
|
|
||||||
|
|
||||||
if (tech_pvt->vid_read_timer.timer_interface) {
|
|
||||||
switch_core_timer_destroy(&tech_pvt->vid_read_timer);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return SWITCH_STATUS_SUCCESS;
|
return SWITCH_STATUS_SUCCESS;
|
||||||
|
|
|
@ -257,8 +257,6 @@ class FSH323Connection:public H323Connection {
|
||||||
bool m_txChennel;
|
bool m_txChennel;
|
||||||
bool m_ChennelAnswer;
|
bool m_ChennelAnswer;
|
||||||
bool m_ChennelProgress;
|
bool m_ChennelProgress;
|
||||||
PSyncPoint m_rxAudioOpened;
|
|
||||||
PSyncPoint m_txAudioOpened;
|
|
||||||
protected:
|
protected:
|
||||||
FSH323EndPoint * m_endpoint;
|
FSH323EndPoint * m_endpoint;
|
||||||
PString m_remoteAddr;
|
PString m_remoteAddr;
|
||||||
|
@ -442,70 +440,6 @@ protected:
|
||||||
unsigned m_type;
|
unsigned m_type;
|
||||||
};
|
};
|
||||||
|
|
||||||
class BaseG726Cap : public H323AudioCapability
|
|
||||||
{
|
|
||||||
PCLASSINFO(BaseG726Cap, H323AudioCapability);
|
|
||||||
|
|
||||||
public:
|
|
||||||
|
|
||||||
BaseG726Cap(const char* fname, unsigned type = H245_AudioCapability::e_nonStandard)
|
|
||||||
: H323AudioCapability(24,2), m_name(fname), m_type(type),m_comfortNoise(0),m_scrambled(0)
|
|
||||||
{ }
|
|
||||||
|
|
||||||
virtual PObject * Clone() const{
|
|
||||||
return new BaseG726Cap(*this);
|
|
||||||
}
|
|
||||||
|
|
||||||
virtual H323Codec* CreateCodec(H323Codec::Direction direction) const{
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
virtual unsigned GetSubType() const{
|
|
||||||
PTRACE(2, "mod_h323\t==============>BaseG726Cap::GetSubType");
|
|
||||||
return H245_AudioCapability::e_nonStandard;
|
|
||||||
}
|
|
||||||
|
|
||||||
virtual PString GetFormatName() const{
|
|
||||||
PTRACE(2, "mod_h323\t==============>BaseG726Cap::GetFormatName");
|
|
||||||
return m_name;
|
|
||||||
}
|
|
||||||
|
|
||||||
virtual bool OnSendingPDU(H245_AudioCapability & pdu, unsigned packetSize) const{
|
|
||||||
PTRACE(2, "mod_h323\t==============>BaseG726Cap::OnSendingPDU");
|
|
||||||
pdu.SetTag(H245_AudioCapability::e_nonStandard);
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
virtual bool OnReceivedPDU(const H245_AudioCapability & pdu, unsigned & packetSize){
|
|
||||||
PTRACE(2, "mod_h323\t==============>BaseG726Cap::OnReceivedPDU");
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
protected:
|
|
||||||
const char* m_name;
|
|
||||||
int m_comfortNoise;
|
|
||||||
int m_scrambled;
|
|
||||||
unsigned m_type;
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#define OPAL_G726_40 "G.726-40k"
|
|
||||||
|
|
||||||
char OpalG726_40[] = OPAL_G726_40;
|
|
||||||
|
|
||||||
OPAL_MEDIA_FORMAT_DECLARE(OpalG726Format,
|
|
||||||
OpalG726_40,
|
|
||||||
OpalMediaFormat::DefaultAudioSessionID,
|
|
||||||
RTP_DataFrame::G726,
|
|
||||||
TRUE, // Needs jitter
|
|
||||||
8000, // bits/sec
|
|
||||||
5, // bytes
|
|
||||||
80, // 10 milliseconds
|
|
||||||
OpalMediaFormat::AudioTimeUnits,
|
|
||||||
0)
|
|
||||||
|
|
||||||
|
|
||||||
#define DEFINE_H323_CAPAB(cls,base,param,name) \
|
#define DEFINE_H323_CAPAB(cls,base,param,name) \
|
||||||
class cls : public base { \
|
class cls : public base { \
|
||||||
|
@ -515,6 +449,8 @@ class cls : public base { \
|
||||||
H323_REGISTER_CAPABILITY(cls,name) \
|
H323_REGISTER_CAPABILITY(cls,name) \
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
DEFINE_H323_CAPAB(FS_G7231_5,BaseG7231Capab,false,OPAL_G7231_5k3"{sw}")
|
DEFINE_H323_CAPAB(FS_G7231_5,BaseG7231Capab,false,OPAL_G7231_5k3"{sw}")
|
||||||
DEFINE_H323_CAPAB(FS_G7231_6,BaseG7231Capab,false,OPAL_G7231_6k3"{sw}")
|
DEFINE_H323_CAPAB(FS_G7231_6,BaseG7231Capab,false,OPAL_G7231_6k3"{sw}")
|
||||||
DEFINE_H323_CAPAB(FS_G7231A_5,BaseG7231Capab,true,OPAL_G7231A_5k3"{sw}")
|
DEFINE_H323_CAPAB(FS_G7231A_5,BaseG7231Capab,true,OPAL_G7231A_5k3"{sw}")
|
||||||
|
@ -524,6 +460,6 @@ DEFINE_H323_CAPAB(FS_G729A,BaseG729Capab,H245_AudioCapability::e_g729AnnexA,OPAL
|
||||||
DEFINE_H323_CAPAB(FS_G729B,BaseG729Capab,H245_AudioCapability::e_g729wAnnexB,OPAL_G729B"{sw}")
|
DEFINE_H323_CAPAB(FS_G729B,BaseG729Capab,H245_AudioCapability::e_g729wAnnexB,OPAL_G729B"{sw}")
|
||||||
DEFINE_H323_CAPAB(FS_G729AB,BaseG729Capab,H245_AudioCapability::e_g729AnnexAwAnnexB,OPAL_G729AB"{sw}")
|
DEFINE_H323_CAPAB(FS_G729AB,BaseG729Capab,H245_AudioCapability::e_g729AnnexAwAnnexB,OPAL_G729AB"{sw}")
|
||||||
DEFINE_H323_CAPAB(FS_GSM,BaseGSM0610Cap,H245_AudioCapability::e_gsmFullRate,OPAL_GSM0610"{sw}")
|
DEFINE_H323_CAPAB(FS_GSM,BaseGSM0610Cap,H245_AudioCapability::e_gsmFullRate,OPAL_GSM0610"{sw}")
|
||||||
DEFINE_H323_CAPAB(FS_G726_40,BaseG726Cap,H245_AudioCapability::e_nonStandard,OPAL_G726_40"{sw}")
|
|
||||||
|
|
||||||
static FSProcess *h323_process = NULL;
|
static FSProcess *h323_process = NULL;
|
||||||
|
|
Loading…
Reference in New Issue