From 5f40a6625dcd128092d18533b6d4586d11aadccb Mon Sep 17 00:00:00 2001 From: Richard Mudgett Date: Thu, 15 Aug 2013 14:20:59 +0000 Subject: Fix Bridge API DTMF hook matching for begin and end DTMF events. The Bridge API DTMF hook matching would not deal with DTMF end events only. It required a DTMF begin event to start matching the DTMF hooks. There are many places in Asterisk where code only generates DTMF end events without the corresponding begin event. One such place is the AMI action Atxfer. * Fixed DTMF hook matching if there is a string of DTMF frames in the read queue. We could potentially miss some of them before. * Fixed AMI Atxfer action documentation. (closes issue ASTERISK-22037) Reported by: Matt Jordan Review: https://reviewboard.asterisk.org/r/2752/ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@396732 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- include/asterisk/bridge_channel_internal.h | 2 -- 1 file changed, 2 deletions(-) (limited to 'include/asterisk') diff --git a/include/asterisk/bridge_channel_internal.h b/include/asterisk/bridge_channel_internal.h index 75fb007f7..8cfbb7a7c 100644 --- a/include/asterisk/bridge_channel_internal.h +++ b/include/asterisk/bridge_channel_internal.h @@ -39,8 +39,6 @@ * \brief Actions that can be taken on a channel in a bridge */ enum bridge_channel_action_type { - /*! Bridged channel is to detect a feature hook */ - BRIDGE_CHANNEL_ACTION_FEATURE, /*! Bridged channel is to send a DTMF stream out */ BRIDGE_CHANNEL_ACTION_DTMF_STREAM, /*! Bridged channel is to indicate talking start */ -- cgit v1.2.3