diff --git a/coreapi/callbacks.c b/coreapi/callbacks.c index 2b90953a8..b32680f48 100644 --- a/coreapi/callbacks.c +++ b/coreapi/callbacks.c @@ -232,24 +232,6 @@ static void call_terminated(SalOp *op, const char *from) { L_GET_PRIVATE(session)->terminated(); } -#if 0 -static int resume_call_after_failed_transfer(LinphoneCall *call){ - if (call->was_automatically_paused && call->state==LinphoneCallPausing) - return BELLE_SIP_CONTINUE; /*was still in pausing state*/ - - if (call->was_automatically_paused && call->state==LinphoneCallPaused){ - if (sal_op_is_idle(call->op)){ - linphone_call_resume(call); - }else { - ms_message("resume_call_after_failed_transfer(), salop was busy"); - return BELLE_SIP_CONTINUE; - } - } - linphone_call_unref(call); - return BELLE_SIP_STOP; -} -#endif - static void call_failure(SalOp *op) { LinphonePrivate::CallSession *session = reinterpret_cast(op->get_user_pointer()); if (!session) { diff --git a/coreapi/misc.c b/coreapi/misc.c index ae1384348..169cc6b88 100644 --- a/coreapi/misc.c +++ b/coreapi/misc.c @@ -244,41 +244,6 @@ const char *linphone_ice_state_to_string(LinphoneIceState state){ return "invalid"; } -void linphone_call_update_ice_state_in_call_stats(LinphoneCall *call) { -} - -#if 0 -static void get_default_addr_and_port(uint16_t componentID, const SalMediaDescription *md, const SalStreamDescription *stream, const char **addr, int *port) -{ - if (componentID == 1) { - *addr = stream->rtp_addr; - *port = stream->rtp_port; - } else if (componentID == 2) { - *addr = stream->rtcp_addr; - *port = stream->rtcp_port; - } else return; - if ((*addr)[0] == '\0') *addr = md->addr; -} -#endif - -void linphone_call_clear_unused_ice_candidates(LinphoneCall *call, const SalMediaDescription *md){ -#if 0 - int i; - - if (!call->localdesc) return; - for (i = 0; i < md->nb_streams; i++) { - const SalStreamDescription *local_stream = &call->localdesc->streams[i]; - const SalStreamDescription *stream = &md->streams[i]; - IceCheckList *cl = ice_session_check_list(call->ice_session, i); - if (!cl || !local_stream) continue; - - if (stream->rtcp_mux && local_stream->rtcp_mux){ - ice_check_list_remove_rtcp_candidates(cl); - } - } -#endif -} - bool_t linphone_core_media_description_contains_video_stream(const SalMediaDescription *md){ int i; @@ -937,9 +902,6 @@ void linphone_task_list_free(LinphoneTaskList *t){ t->hooks = bctbx_list_free_with_data(t->hooks, (void (*)(void*))ms_free); } -void linphone_call_update_ice_from_remote_media_description(LinphoneCall *call, const SalMediaDescription *md, bool_t is_offer){ -} - void linphone_core_report_call_log(LinphoneCore *lc, LinphoneCallLog *call_log){ bool_t call_logs_sqlite_db_found = FALSE; diff --git a/coreapi/private_functions.h b/coreapi/private_functions.h index ff7340167..fcedefcf2 100644 --- a/coreapi/private_functions.h +++ b/coreapi/private_functions.h @@ -205,7 +205,6 @@ void linphone_core_resolve_stun_server(LinphoneCore *lc); LINPHONE_PUBLIC const struct addrinfo *linphone_core_get_stun_server_addrinfo(LinphoneCore *lc); LINPHONE_PUBLIC void linphone_core_enable_forced_ice_relay(LinphoneCore *lc, bool_t enable); LINPHONE_PUBLIC void linphone_core_enable_short_turn_refresh(LinphoneCore *lc, bool_t enable); -void linphone_call_update_ice_state_in_call_stats(LinphoneCall *call); LINPHONE_PUBLIC void linphone_call_stats_fill(LinphoneCallStats *stats, MediaStream *ms, OrtpEvent *ev); void linphone_call_stats_update(LinphoneCallStats *stats, MediaStream *stream); LinphoneCallStats *_linphone_call_stats_new(void); @@ -225,8 +224,6 @@ void _linphone_call_stats_set_rtcp_download_bandwidth (LinphoneCallStats *stats, void _linphone_call_stats_set_rtcp_upload_bandwidth (LinphoneCallStats *stats, float bandwidth); void _linphone_call_stats_set_ip_family_of_remote (LinphoneCallStats *stats, LinphoneAddressFamily family); bool_t _linphone_call_stats_rtcp_received_via_mux (const LinphoneCallStats *stats); -void linphone_call_update_ice_from_remote_media_description(LinphoneCall *call, const SalMediaDescription *md, bool_t is_offer); -void linphone_call_clear_unused_ice_candidates(LinphoneCall *call, const SalMediaDescription *md); bool_t linphone_core_media_description_contains_video_stream(const SalMediaDescription *md); void linphone_core_send_initial_subscribes(LinphoneCore *lc);