mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-20 04:28:10 +00:00
fix mute button that did not work anymore, fix missing symbols
This commit is contained in:
parent
4068795f5a
commit
7ea99b5a4c
2 changed files with 3 additions and 2 deletions
|
|
@ -384,7 +384,7 @@ static void sound_config_read(LinphoneCore *lc)
|
|||
ms_snd_card_manager_add_card(ms_snd_card_manager_get(),card);
|
||||
}
|
||||
tmp=lp_config_get_int(lc->config,"sound","alsa_forced_rate",-1);
|
||||
ms_alsa_card_set_forced_sample_rate(tmp);
|
||||
if (tmp>0) ms_alsa_card_set_forced_sample_rate(tmp);
|
||||
#endif
|
||||
/* retrieve all sound devices */
|
||||
build_sound_devices_table(lc);
|
||||
|
|
@ -3065,6 +3065,7 @@ void linphone_core_mute_mic(LinphoneCore *lc, bool_t val){
|
|||
ms_warning("linphone_core_mute_mic(): No current call !");
|
||||
return;
|
||||
}else{
|
||||
st=call->audiostream;
|
||||
call->audio_muted=val;
|
||||
}
|
||||
if (st!=NULL){
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
Subproject commit 00dfc7dd6aab93dcc9b81527370842b38fc3987d
|
||||
Subproject commit ba5d625fb8609f2af2487dd165d227641cd7b898
|
||||
Loading…
Add table
Reference in a new issue