remove SWITCH_RTP_FLAG_AUTO_CNG - works incorrectly.
This commit is contained in:
parent
7b0d878925
commit
e9668c3d5c
|
@ -1,3 +1,4 @@
|
|||
remove SWITCH_RTP_FLAG_AUTO_CNG - works incorrectly.
|
||||
moves the switch_rtp_request_port() call from the contructor to FSH323Connection::CreateRealTimeLogicalChannel() - fix
|
||||
rtp port leak. tnx to Peter Olsson.
|
||||
fix log printing
|
||||
|
|
|
@ -2131,7 +2131,7 @@ PBoolean FSH323_ExternalRTPChannel::Start()
|
|||
}
|
||||
|
||||
if ((!m_conn->m_startRTP)) {
|
||||
flags = (switch_rtp_flag_t) (SWITCH_RTP_FLAG_DATAWAIT|SWITCH_RTP_FLAG_AUTO_CNG|SWITCH_RTP_FLAG_RAW_WRITE);
|
||||
flags = (switch_rtp_flag_t) (SWITCH_RTP_FLAG_DATAWAIT|SWITCH_RTP_FLAG_RAW_WRITE);
|
||||
|
||||
if (mod_h323_globals.use_rtp_timer) {
|
||||
flags |= SWITCH_RTP_FLAG_USE_TIMER;
|
||||
|
|
Loading…
Reference in New Issue