git-svn-id: https://espeak.svn.sourceforge.net/svnroot/espeak/trunk@108 d46cf337-b52f-0410-862d-fd96e6ae7743master
utc $abbrev | utc $abbrev | ||||
u.s ju:'Es | u.s ju:'Es | ||||
wwii dVb@Lju:dVb@Lju:t'u: | wwii dVb@Lju:dVb@Lju:t'u: | ||||
xxx $abbrev // not roman 30 | |||||
xy $abbrev | xy $abbrev | ||||
promenade pr0m@n'A:d | promenade pr0m@n'A:d | ||||
pronoun proUnaUn | pronoun proUnaUn | ||||
propaganda pr0p@g'and@ | propaganda pr0p@g'and@ | ||||
protegee pr0t@dZeI | |||||
protege pr0t@ZeI | |||||
protegee pr0t@ZeI | |||||
protest proUtEst $onlys | protest proUtEst $onlys | ||||
protest $verb | protest $verb | ||||
protocol proUt@k0l | protocol proUt@k0l |
deter dI2t3: | deter dI2t3: | ||||
deter (i dI2ti@ | deter (i dI2ti@ | ||||
detest dI2tEst | detest dI2tEst | ||||
de (th d%i: | |||||
_) de (th d%i: | |||||
de (ton dE | de (ton dE | ||||
de (tou di: | de (tou di: | ||||
de (tox d%i: | de (tox d%i: |
_2 t'u: | _2 t'u: | ||||
_3 t@-*'e: | _3 t@-*'e: | ||||
_4 f'i:*E | _4 f'i:*E | ||||
_5 f'e:m | |||||
_5 f'Em | |||||
_6 s'Eks | _6 s'Eks | ||||
_7 S'u-: | _7 S'u-: | ||||
_8 'Ot:@2 | _8 'Ot:@2 |
return(CLAUSE_COLON); | return(CLAUSE_COLON); | ||||
case SSML_SENTENCE: | case SSML_SENTENCE: | ||||
if(ssml_sp->tag_type == SSML_SENTENCE) | |||||
if((ssml_sp != NULL) && (ssml_sp->tag_type == SSML_SENTENCE)) | |||||
{ | { | ||||
// new sentence implies end-of-sentence | // new sentence implies end-of-sentence | ||||
voice_change_flag = GetVoiceAttributes(px, SSML_SENTENCE+SSML_CLOSE); | voice_change_flag = GetVoiceAttributes(px, SSML_SENTENCE+SSML_CLOSE); | ||||
case SSML_PARAGRAPH: | case SSML_PARAGRAPH: | ||||
if((ssml_sp->tag_type == SSML_SENTENCE) || (ssml_sp->tag_type == SSML_PARAGRAPH)) | |||||
if(ssml_sp != NULL) | |||||
{ | { | ||||
// new paragraph implies end-of-sentence or end-of-paragraph | |||||
voice_change_flag = GetVoiceAttributes(px, SSML_SENTENCE+SSML_CLOSE); | |||||
if(ssml_sp->tag_type == SSML_SENTENCE) | |||||
{ | |||||
// new paragraph implies end-of-sentence or end-of-paragraph | |||||
voice_change_flag = GetVoiceAttributes(px, SSML_SENTENCE+SSML_CLOSE); | |||||
} | |||||
if(ssml_sp->tag_type == SSML_PARAGRAPH) | |||||
{ | |||||
// new paragraph implies end-of-sentence or end-of-paragraph | |||||
voice_change_flag |= GetVoiceAttributes(px, SSML_PARAGRAPH+SSML_CLOSE); | |||||
} | |||||
} | } | ||||
voice_change_flag |= GetVoiceAttributes(px, tag_type); | voice_change_flag |= GetVoiceAttributes(px, tag_type); | ||||
return(CLAUSE_PARAGRAPH + voice_change_flag); | return(CLAUSE_PARAGRAPH + voice_change_flag); |
#include "translate.h" | #include "translate.h" | ||||
#include "wave.h" | #include "wave.h" | ||||
const char *version_string = "1.29.21 21.Nov.07"; | |||||
const char *version_string = "1.29.22 26.Nov.07"; | |||||
const int version_phdata = 0x012901; | const int version_phdata = 0x012901; | ||||
int option_device_number = -1; | int option_device_number = -1; |
variant_name = ExtractVoiceVariantName(buf,0); | variant_name = ExtractVoiceVariantName(buf,0); | ||||
memset(&voice_selector,0,sizeof(voice_selector)); | memset(&voice_selector,0,sizeof(voice_selector)); | ||||
voice_selector.name = buf; | |||||
// voice_selector.name = buf; | |||||
voice_selector.name = name; // include variant name in voice stack ?? | |||||
// first check for a voice with this filename | // first check for a voice with this filename | ||||
// This may avoid the need to call espeak_ListVoices(). | // This may avoid the need to call espeak_ListVoices(). |