mirror of
				https://github.com/asterisk/asterisk.git
				synced 2025-10-31 10:47:18 +00:00 
			
		
		
		
	don't use tone generation for DTMF if the channel driver only supports begin/end (will need more work to translate non-variable events into begin/end events)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@8852 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
		| @@ -2184,7 +2184,8 @@ static int do_senddigit(struct ast_channel *chan, char digit) | ||||
|  | ||||
| 	if (chan->tech->send_digit) | ||||
| 		res = chan->tech->send_digit(chan, digit); | ||||
| 	if (!chan->tech->send_digit || res) { | ||||
| 	if (!(chan->tech->send_digit && chan->tech->send_digit_begin) || | ||||
| 	    res) { | ||||
| 		/* | ||||
| 		 * Device does not support DTMF tones, lets fake | ||||
| 		 * it by doing our own generation. (PM2002) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user