update to snapshot spandsp-20090427

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@13177 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Michael Jerris
2009-04-28 14:42:18 +00:00
parent 9355013017
commit a802976818
60 changed files with 4937 additions and 786 deletions

View File

@@ -22,7 +22,7 @@
* License along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
* $Id: v18.c,v 1.6 2009/04/20 16:36:36 steveu Exp $
* $Id: v18.c,v 1.7 2009/04/26 07:00:38 steveu Exp $
*/
/*! \file */
@@ -113,12 +113,21 @@ static const struct dtmf_to_ascii_s dtmf_to_ascii[] =
{"##8", 'W'},
{"##9", 'Z'},
{"##0", ' '},
#if defined(WIN32)
{"#*1", 'X'}, // (Note 1) 111 1011
{"#*2", 'X'}, // (Note 1) 111 1100
{"#*3", 'X'}, // (Note 1) 111 1101
{"#*4", 'X'}, // (Note 1) 101 1011
{"#*5", 'X'}, // (Note 1) 101 1100
{"#*6", 'X'}, // (Note 1) 101 1101
#else
{"#*1", '<EFBFBD>'}, // (Note 1) 111 1011
{"#*2", '<EFBFBD>'}, // (Note 1) 111 1100
{"#*3", '<EFBFBD>'}, // (Note 1) 111 1101
{"#*4", '<EFBFBD>'}, // (Note 1) 101 1011
{"#*5", '<EFBFBD>'}, // (Note 1) 101 1100
{"#*6", '<EFBFBD>'}, // (Note 1) 101 1101
#endif
{"#0", '?'},
{"#1", 'c'},
{"#2", 'f'},