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 356B

1234567891011121314151617181920
  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();
  10. void KlattResetSP();
  11. int Wavegen_KlattSP(WGEN_DATA *wdata, voice_t *wvoice, int length, int resume, frame_t *fr1, frame_t *fr2);
  12. #ifdef __cplusplus
  13. }
  14. #endif
  15. #endif