summaryrefslogtreecommitdiffstats
path: root/pico/lib/picowa.c
diff options
context:
space:
mode:
authorJean-Michel Trivi <jmtrivi@google.com>2010-02-09 18:55:56 -0800
committerJean-Michel Trivi <jmtrivi@google.com>2010-02-09 18:55:56 -0800
commite9f72c8954f29f10cb4feb16d328a1b5c1fd7169 (patch)
tree91a67176eca914b3defe801e7fbedf9a594804ba /pico/lib/picowa.c
parentfb6d3dae347f47107e5767f1ec6e87ed0bf9875a (diff)
downloadexternal_svox-e9f72c8954f29f10cb4feb16d328a1b5c1fd7169.zip
external_svox-e9f72c8954f29f10cb4feb16d328a1b5c1fd7169.tar.gz
external_svox-e9f72c8954f29f10cb4feb16d328a1b5c1fd7169.tar.bz2
Patch from SVOX: 1.1.0.2 Engine Release
Issues fixed since 1.1.0.0: - closing tags not interpreted in some cases where enclosed text contains a smaller-then sign - Discontinuities in energy transformation - Lexicon Access: entry with empty phonetic transcription mistaken as :G2P in seldom cases
Diffstat (limited to 'pico/lib/picowa.c')
-rw-r--r--pico/lib/picowa.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pico/lib/picowa.c b/pico/lib/picowa.c
index ab8ca51..edbff7d 100644
--- a/pico/lib/picowa.c
+++ b/pico/lib/picowa.c
@@ -78,7 +78,7 @@ typedef struct wa_subobj {
} wa_subobj_t;
-static pico_status_t waInitialize(register picodata_ProcessingUnit this, picoos_int32 r_mode) {
+static pico_status_t waInitialize(register picodata_ProcessingUnit this, picoos_int32 resetMode) {
picoos_uint8 i;
picoklex_Lex ulex;
wa_subobj_t * wa;
@@ -98,7 +98,7 @@ static pico_status_t waInitialize(register picodata_ProcessingUnit this, picoos_
wa->outBufSize = PICOWA_MAXITEMSIZE;
wa->outLen = 0;
- if (r_mode == PICO_RESET_SOFT) {
+ if (resetMode == PICO_RESET_SOFT) {
/*following initializations needed only at startup or after a full reset*/
return PICO_OK;
}