forked from mirrors/linphone-iphone
merge patch to adjust software gain from console app
This commit is contained in:
parent
68df42b292
commit
d22b1c0447
2 changed files with 13 additions and 1 deletions
|
|
@ -90,6 +90,7 @@ static int lpc_cmd_pause(LinphoneCore *lc, char *args);
|
|||
static int lpc_cmd_resume(LinphoneCore *lc, char *args);
|
||||
static int lpc_cmd_mute_mic(LinphoneCore *lc, char *args);
|
||||
static int lpc_cmd_unmute_mic(LinphoneCore *lc, char *args);
|
||||
static int lpc_cmd_playback_gain(LinphoneCore *lc, char *args);
|
||||
static int lpc_cmd_rtp_no_xmit_on_audio_mute(LinphoneCore *lc, char *args);
|
||||
#ifdef VIDEO_ENABLED
|
||||
static int lpc_cmd_camera(LinphoneCore *lc, char *args);
|
||||
|
|
@ -192,6 +193,8 @@ static LPC_COMMAND commands[] = {
|
|||
#endif
|
||||
{ "unmute", lpc_cmd_unmute_mic,
|
||||
"Unmute microphone and resume voice transmission."},
|
||||
{ "playbackgain", lpc_cmd_playback_gain,
|
||||
"Adjust playback gain."},
|
||||
{ "duration", lpc_cmd_duration, "Print duration in seconds of the last call.", NULL },
|
||||
|
||||
{ "autoanswer", lpc_cmd_autoanswer, "Show/set auto-answer mode",
|
||||
|
|
@ -2303,6 +2306,15 @@ static int lpc_cmd_unmute_mic(LinphoneCore *lc, char *args){
|
|||
return 1;
|
||||
}
|
||||
|
||||
static int lpc_cmd_playback_gain(LinphoneCore *lc, char *args)
|
||||
{
|
||||
if (args){
|
||||
linphone_core_set_playback_gain_db(lc, atof(args));
|
||||
return 1;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int lpc_cmd_rtp_no_xmit_on_audio_mute(LinphoneCore *lc, char *args)
|
||||
{
|
||||
bool_t rtp_xmit_off=FALSE;
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
Subproject commit 57319ab677c00e43b576b4204df870074a9216f6
|
||||
Subproject commit c2ec52b097ec3165cbfb2b93dc788383612e1569
|
||||
Loading…
Add table
Reference in a new issue