提交 ee6b7562 authored 作者: Anthony Minessale's avatar Anthony Minessale

make * and # become words explicitly in the core tts func (part 2)

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@5897 d0543943-73ff-0310-b7d9-9358b9ac24b2
上级 aac58b10
...@@ -1238,14 +1238,12 @@ SWITCH_DECLARE(switch_status_t) switch_ivr_speak_text_handle(switch_core_session ...@@ -1238,14 +1238,12 @@ SWITCH_DECLARE(switch_status_t) switch_ivr_speak_text_handle(switch_core_session
*tp++ = 't'; *tp++ = 't';
*tp++ = 'a'; *tp++ = 'a';
*tp++ = 'r'; *tp++ = 'r';
p++;
} else if (*p == '#') { } else if (*p == '#') {
*tp++ = 'p'; *tp++ = 'p';
*tp++ = 'o'; *tp++ = 'o';
*tp++ = 'u'; *tp++ = 'u';
*tp++ = 'n'; *tp++ = 'n';
*tp++ = 'd'; *tp++ = 'd';
p++;
} else { } else {
*tp++ = *p; *tp++ = *p;
} }
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论