Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
liblinphone
Commits
d244864d
Commit
d244864d
authored
Dec 04, 2017
by
Sylvain Berfini
🎩
Browse files
Fixed android build
parent
1bbc5446
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
coreapi/conference.cc
coreapi/conference.cc
+3
-3
coreapi/linphonecore.c
coreapi/linphonecore.c
+2
-2
No files found.
coreapi/conference.cc
View file @
d244864d
...
...
@@ -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
);
...
...
coreapi/linphonecore.c
View file @
d244864d
...
...
@@ -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
);
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment