| Commit message (Collapse) | Author | Age | Files | Lines |
|\
| |
| |
| |
| | |
* commit 'baadee213d3350ab18fbd0c22a3ac3a65a853a4c':
Remove duplicate item to avoid compiling error
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
The gcc 4.5 complains about the duplicate item:
external/svox/pico/lib/picosig2.c: In function 'sigAllocate':
external/svox/pico/lib/picosig2.c:75:26: error: operation on 'sig_inObj->int_vec38' may be undefined
Change-Id: I4532b770ff02e058253ed01cbed50b0efb8a83ce
|
|/
|
|
|
|
|
|
|
|
|
|
| |
warning: operation on 'sig_inObj->int_vec38' may be undefined [-Wsequence-point]
The source code has cyclic initilization: a = c = b = c. gcc-4.5 reports
a warning that c may be undefined. The patch is simply removing the redundant
"= c".
Tested the patch with all gcc versions.
Change-Id: I4a6e9ee22b41058a34b0a657fb60e78c4e8f3ebb
|
|
|
|
|
|
| |
as it sounds more muffled, particularly with eng-USA
Change-Id: I77c366afb1926f045ef931d0d66ce6a0bb377893
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
| |
This reverts commit 3b9e0eec58f1b6d99418eb6365d7b8ae1c2082a2.
After more testing, this change seems to poorly coexist with CL 21226.
|
|
|
|
| |
in the pico library.
|
|\
| |
| |
| |
| | |
* changes:
Integrate SVOX update that offers two modes to reset the engine: soft and full. Soft reset is lighter-weight than the previous pico_resetEngine() function as it only clears the input (text) and output (audio data) buffers of the synthesis engine. The synthesis loop is now taking advantage of the soft reset whenever it is interrupted, rather than performing a full engine reset after each call to stop().
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
and full. Soft reset is lighter-weight than the previous pico_resetEngine()
function as it only clears the input (text) and output (audio data)
buffers of the synthesis engine.
The synthesis loop is now taking advantage of the soft reset whenever
it is interrupted, rather than performing a full engine reset after
each call to stop().
|
|/
|
|
| |
BUG=1573996
|
|
|