remove SWITCH_RTP_FLAG_AUTOADJ because its not work correctly and not do anything reliable in our cases.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@15374 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
287db73e08
commit
7755f63881
|
@ -1,4 +1,5 @@
|
|||
|
||||
remove SWITCH_RTP_FLAG_AUTOADJ because its not work correctly and not do anything reliable in our cases.
|
||||
fix faststart in progress handling
|
||||
fixxxxes
|
||||
remove trys to implement non standard codecs.
|
||||
|
|
|
@ -1279,7 +1279,7 @@ PBoolean FSH323_ExternalRTPChannel::Start(){
|
|||
PTRACE(4, "mod_h323\t------------------->actual_samples_per_second = "<<m_switchCodec->implementation->actual_samples_per_second);
|
||||
|
||||
if (!m_conn->m_startRTP) {
|
||||
flags = (switch_rtp_flag_t) (SWITCH_RTP_FLAG_DATAWAIT|SWITCH_RTP_FLAG_AUTO_CNG|SWITCH_RTP_FLAG_RAW_WRITE|SWITCH_RTP_FLAG_AUTOADJ);
|
||||
flags = (switch_rtp_flag_t) (SWITCH_RTP_FLAG_DATAWAIT|SWITCH_RTP_FLAG_AUTO_CNG|SWITCH_RTP_FLAG_RAW_WRITE);
|
||||
if ((var = switch_channel_get_variable(m_fsChannel, "timer_name"))) {
|
||||
timer_name = (char *) var;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue