Binaural synthesis (confbridge): DTMF conference management.

DTMF configuration options for the binaural softmix bridge:
toggle binaural rendering (per channel).

ASTERISK-26292

Change-Id: Ibfe708b9fe26097c1798fcbfcc4dc461267d8af8
This commit is contained in:
frahaase
2016-08-12 18:23:40 +02:00
committed by George Joseph
parent 094c26aa68
commit 5b1796f59d
4 changed files with 46 additions and 0 deletions

View File

@@ -93,6 +93,7 @@ enum conf_menu_action_id {
MENU_ACTION_RELEASE_SINGLE_VIDEO_SRC,
MENU_ACTION_PARTICIPANT_COUNT,
MENU_ACTION_ADMIN_TOGGLE_MUTE_PARTICIPANTS,
MENU_ACTION_TOGGLE_BINAURAL,
};
/*! The conference menu action contains both
@@ -170,6 +171,8 @@ enum conf_sounds {
CONF_SOUND_PARTICIPANTS_MUTED,
CONF_SOUND_PARTICIPANTS_UNMUTED,
CONF_SOUND_BEGIN,
CONF_SOUND_BINAURAL_ON,
CONF_SOUND_BINAURAL_OFF,
};
struct bridge_profile_sounds {
@@ -197,6 +200,8 @@ struct bridge_profile_sounds {
AST_STRING_FIELD(participantsmuted);
AST_STRING_FIELD(participantsunmuted);
AST_STRING_FIELD(begin);
AST_STRING_FIELD(binauralon);
AST_STRING_FIELD(binauraloff);
);
};