Browse Source

ssml: handle invalid break strength

master
Yury Popov 2 years ago
parent
commit
04ce972800
No account linked to committer's email address
1 changed files with 1 additions and 0 deletions
  1. 1
    0
      src/libespeak-ng/ssml.c

+ 1
- 0
src/libespeak-ng/ssml.c View File

@@ -870,6 +870,7 @@ int ProcessSsmlTag(wchar_t *xml_buf, char *outbuf, int *outix, int n_outbuf, con
if ((attr1 = GetSsmlAttribute(px, "strength")) != NULL) {
static const int break_value[6] = { 0, 7, 14, 21, 40, 80 }; // *10mS
value = attrlookup(attr1, mnem_break);
if (value < 0) value = 2;
if (value < 3) {
// adjust prepause on the following word
sprintf(&outbuf[*outix], "%c%dB", CTRL_EMBEDDED, value);

Loading…
Cancel
Save