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

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

Loading…
Cancel
Save