Returns the number of text-to-speech SSML marks available in the active synthesis result. See SSML documentation for more information relating to Mark elements and how they can be used within SSML syntheses.
Function
- LV_TTS_RETURN_CODE LV_TTS_GetSSMLMarksCount(HTTSCLIENT client_handle, int * return_count);
Parameters
client_handle
Handle to the TTS client object.
return_count
Memory location of an integer variable into which the number of SSML marks is to be copied.
Return Values
LV_SUCCESS
No errors.
LV_FAILURE
The input TTS client handle is not a valid one.
LV_EXCEPTION
An exception occurred while processing the request.
Remarks
If results are not available yet, the value returned in return_count will be zero even if the function returns LV_SUCCESS.
See Also