mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-18 03:28:07 +00:00
Fixed android build
This commit is contained in:
parent
1bbc544635
commit
d244864db6
2 changed files with 5 additions and 5 deletions
|
|
@ -208,7 +208,7 @@ private:
|
|||
MSAudioEndpoint *m_localEndpoint;
|
||||
MSAudioEndpoint *m_recordEndpoint;
|
||||
RtpProfile *m_localDummyProfile;
|
||||
bool_t m_terminating;
|
||||
//bool_t m_terminating;
|
||||
};
|
||||
|
||||
class RemoteConference: public Conference {
|
||||
|
|
@ -373,8 +373,8 @@ LocalConference::LocalConference(LinphoneCore *core, LinphoneConference *conf, c
|
|||
m_conf(NULL),
|
||||
m_localEndpoint(NULL),
|
||||
m_recordEndpoint(NULL),
|
||||
m_localDummyProfile(NULL),
|
||||
m_terminating(FALSE) {
|
||||
m_localDummyProfile(NULL)/*,
|
||||
m_terminating(FALSE)*/ {
|
||||
|
||||
MSAudioConferenceParams ms_conf_params;
|
||||
ms_conf_params.samplerate = lp_config_get_int(m_core->config, "sound","conference_rate",16000);
|
||||
|
|
|
|||
|
|
@ -2735,11 +2735,11 @@ static void apply_jitter_value(LinphoneCore *lc, int value, MSFormatType stype){
|
|||
RtpSession *s=ms->sessions.rtp_session;
|
||||
if (s){
|
||||
if (value>0){
|
||||
ms_message("Jitter buffer size set to [%i] ms on call [%p]",value,call);
|
||||
ms_message("Jitter buffer size set to [%i] ms on call [%p]", value, call.get());
|
||||
rtp_session_set_jitter_compensation(s,value);
|
||||
rtp_session_enable_jitter_buffer(s,TRUE);
|
||||
}else if (value==0){
|
||||
ms_warning("Jitter buffer is disabled per application request on call [%p]",call);
|
||||
ms_warning("Jitter buffer is disabled per application request on call [%p]", call.get());
|
||||
rtp_session_enable_jitter_buffer(s,FALSE);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue