Fix compilation errors.

This commit is contained in:
Simon Morlat 2018-05-03 22:28:26 +02:00
parent 49d27bfaa0
commit f09f500fd3
2 changed files with 3 additions and 1 deletions

View file

@ -123,7 +123,7 @@ void *Daemon::iterateThread(void *arg) {
EventResponse::EventResponse(Daemon *daemon, LinphoneCall *call, LinphoneCallState state) {
LinphoneCallLog *callLog = linphone_call_get_call_log(call);
LinphoneAddress *fromAddr = linphone_call_log_get_from_address(callLog);
const LinphoneAddress *fromAddr = linphone_call_log_get_from_address(callLog);
char *fromStr = linphone_address_as_string(fromAddr);
ostringstream ostr;

View file

@ -97,10 +97,12 @@ static void on_report_send_with_rtcp_xr_remote (const LinphoneCall *call, SalStr
}
}
/*
static void on_report_send_with_rtcp_xr_both (const LinphoneCall *call, SalStreamType stream_type, const LinphoneContent *content) {
on_report_send_with_rtcp_xr_local(call, stream_type, content);
on_report_send_with_rtcp_xr_remote(call, stream_type, content);
}
*/
static bool_t create_call_for_quality_reporting_tests (
LinphoneCoreManager *marie,