Browse Source

wavegen: support higher speech rate in embedded commands (#1664)

Fixes #1566 (ref
https://github.com/espeak-ng/espeak-ng-ios-app/issues/35)
master
Alexander Epaneshnikov 2 years ago
parent
commit
f520fecb4a
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/libespeak-ng/wavegen.c

+ 1
- 1
src/libespeak-ng/wavegen.c View File

@@ -119,7 +119,7 @@ int wcmdq_tail = 0;

// pitch,speed,
const int embedded_default[N_EMBEDDED_VALUES] = { 0, 50, espeakRATE_NORMAL, 100, 50, 0, 0, 0, espeakRATE_NORMAL, 0, 0, 0, 0, 0, 0 };
static const int embedded_max[N_EMBEDDED_VALUES] = { 0, 0x7fff, 750, 300, 99, 99, 99, 0, 750, 0, 0, 0, 0, 4, 0 };
static const int embedded_max[N_EMBEDDED_VALUES] = { 0, 0x7fff, 2000, 300, 99, 99, 99, 0, 2000, 0, 0, 0, 0, 4, 0 };

#if USE_LIBSONIC
static sonicStream sonicSpeedupStream = NULL;

Loading…
Cancel
Save