summaryrefslogtreecommitdiff
path: root/apps/confbridge/include
diff options
context:
space:
mode:
authorfrahaase <fra.haase@googlemail.com>2016-08-12 18:23:40 +0200
committerGeorge Joseph <gjoseph@digium.com>2017-02-24 15:13:56 -0600
commit5b1796f59d01f399c68b05b31fe173fc7ede16dc (patch)
tree24dfcbf2460e3f3b0191da886d9047e2120f9cfa /apps/confbridge/include
parent094c26aa689664177e156d17bf5e9ab67c442a53 (diff)
Binaural synthesis (confbridge): DTMF conference management.
DTMF configuration options for the binaural softmix bridge: toggle binaural rendering (per channel). ASTERISK-26292 Change-Id: Ibfe708b9fe26097c1798fcbfcc4dc461267d8af8
Diffstat (limited to 'apps/confbridge/include')
-rw-r--r--apps/confbridge/include/confbridge.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/confbridge/include/confbridge.h b/apps/confbridge/include/confbridge.h
index f91f2dc89..584499ff3 100644
--- a/apps/confbridge/include/confbridge.h
+++ b/apps/confbridge/include/confbridge.h
@@ -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);
);
};