diff options
author | Jean-Michel Trivi <jmtrivi@google.com> | 2010-02-09 18:55:56 -0800 |
---|---|---|
committer | Jean-Michel Trivi <jmtrivi@google.com> | 2010-02-09 18:55:56 -0800 |
commit | e9f72c8954f29f10cb4feb16d328a1b5c1fd7169 (patch) | |
tree | 91a67176eca914b3defe801e7fbedf9a594804ba /pico/lib/picoapi.h | |
parent | fb6d3dae347f47107e5767f1ec6e87ed0bf9875a (diff) | |
download | external_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/picoapi.h')
-rw-r--r-- | pico/lib/picoapi.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/pico/lib/picoapi.h b/pico/lib/picoapi.h index 8a5725b..aa60358 100644 --- a/pico/lib/picoapi.h +++ b/pico/lib/picoapi.h @@ -420,10 +420,12 @@ PICO_FUNC pico_getData( /** Resets the engine and clears all engine-internal buffers, in particular text input and signal data output buffers. + 'resetMode' is one of 'PICO_RESET_SOFT', to be used to flush the engine, + or 'PICO_RESET_FULL', to reset the engine after an engine error. */ PICO_FUNC pico_resetEngine( pico_Engine engine, - pico_Status r_mode + pico_Int32 resetMode ); |