eSpeak NG is an open source speech synthesizer that supports more than hundred languages and accents.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

sPlayer.h 389B

123456789101112131415161718192021
  1. #ifndef ESPEAK_NG_SPLAYER_H
  2. #define ESPEAK_NG_SPLAYER_H
  3. #include "synthesize.h"
  4. #include "voice.h"
  5. #include <speechPlayer.h>
  6. #ifdef __cplusplus
  7. extern "C" {
  8. #endif
  9. void KlattInitSP(void);
  10. void KlattResetSP(void);
  11. void KlattFiniSP(void);
  12. int Wavegen_KlattSP(WGEN_DATA *wdata, voice_t *wvoice, int length, int resume, frame_t *fr1, frame_t *fr2);
  13. #ifdef __cplusplus
  14. }
  15. #endif
  16. #endif