mirror of
https://github.com/jambonz/freeswitch-modules.git
synced 2025-12-19 08:57:44 +00:00
* support azure stream * delete trash file * wip * wip * wip * wip * wip * wip * wip * fire variable_tts_time_to_first_byte_ms
12 lines
510 B
C
12 lines
510 B
C
#ifndef __AZURE_TTS_GLUE_H__
|
|
#define __AZURE_TTS_GLUE_H__
|
|
|
|
switch_status_t azure_speech_load();
|
|
switch_status_t azure_speech_open(azure_t* azure);
|
|
switch_status_t azure_speech_feed_tts(azure_t* azure, char* text, switch_speech_flag_t *flags);
|
|
switch_status_t azure_speech_read_tts(azure_t* azure, void *data, size_t *datalen, switch_speech_flag_t *flags);
|
|
switch_status_t azure_speech_flush_tts(azure_t* azure);
|
|
switch_status_t azure_speech_close(azure_t* azure);
|
|
switch_status_t azure_speech_unload();
|
|
|
|
#endif |