Yury Popov
ca1f590101
code cleanup: standartize definitions
2 years ago
Yury Popov
b996d39d40
splayer: fix memory leak on espeak terminate
2 years ago
Yury Popov
25c4dc150a
code cleanup: static phoneme_callback
2 years ago
Yury Popov
fdc2984386
code cleanup: static uri_callback
2 years ago
Yury Popov
504ab4937d
code cleanup: static current_voice_selected
2 years ago
Yury Popov
2929b9e199
code cleanup: use statics and consts when possible
2 years ago
Yury Popov
3da51991f8
code cleanup: reduce global externs
2 years ago
Yury Popov
1e279d3cb8
Add PRNG and use it instead of rand()
2 years ago
Juho Hiltunen
1de9f4b52c
Revert "cleanup: reduce code duplication with a new function"
This reverts commit 8021528f5e
.
Failing on CI/CD.
2 years ago
Juho Hiltunen
8021528f5e
cleanup: reduce code duplication with a new function
StatusCreateTerminatedMsg.
This is not covered by current tests.
2 years ago
Yury Popov
9b3b916163
Add ng API to enable phoneme events
2 years ago
Juho Hiltunen
c05690be34
cleanup: move LoadConfig to langopts.c
LoadConfig() should be refactored to support both voice and language options set
in LoadVoice() and LoadLanguageOptions().
2 years ago
Yury Popov
cd0dd0900f
Do not create audio out if not required
2 years ago
Juho Hiltunen
c4d8976fbc
code cleanup: Add new source file common.h for misc functions.
2 years ago
Juho Hiltunen
d80f1a80a2
Use ESPEAKNG_DEFAULT_VOICE instead of hard coded "en".
This will make it easier to set a default voice other than
English. This is important for cases when a language will fall back to
the default voice.
Some references to L('e', 'n') still need to be changed.
3 years ago
Reece H. Dunn
5791bf28de
Fix -Wunused-parameter warnings.
4 years ago
Christopher Brannon
d8ec91e809
Fix buffer size calculation when initializing output.
With the previous calculation, it was possible for the buffer to be
a byte or two too small to hold all of the data.
4 years ago
Juho Hiltunen
725bdda564
code cleanup: remove unused variables
this_ph_data, N_WAV_BUF, option.device, harm_sqrt_n, max_hval, next_pause
4 years ago
Juho Hiltunen
ee944700f8
code cleanup: Check all local includes with include-what-you-use
Going through files in src/libespeak-ng/, include-what-you-use removed a
few unnecessary includes and included explanations on why a certain
header should be included. This makes tracking globals and dependencies easier.
Running the codebase through IWYU should be repeated after each major
code restIncludes to standard c library weren't checked to avoid
breaking builds with other platforms.
See https://github.com/include-what-you-use/include-what-you-use
4 years ago
Juho Hiltunen
9232f1911e
code cleanup: remove unnecessary references to out_start.
Unsigned char *out_start is a global only used in speech.c.
4 years ago
Valdis Vitolins
238427184a
Fix issue #772: setting buffer size to 50ms leads to truncated mbrola-fr4 output
5 years ago
Juho Hiltunen
520a30e0b0
code cleanup: use existing defines espeakRATE_MINIMUM, espeakRATE_NORMAL and espeakRATE_MAXIMUM.
6 years ago
Samuel Thibault
d844a47804
Make it possible to restart speech even when audio open failed once
When notably the audio card is busy, we should report the issue to the
application, but still permit the application to retry submitting text
to synth, and eventually succeed to open it.
This change simply fixes the update of the out_samplerate variable to track
whether audio is open, and if not when text is submitted by the application,
try again to open it.
7 years ago
Juho Hiltunen
d196d93ed5
maintainability: move variables to files where they are used, allowing removal of unnecessary extern declarations
7 years ago
Reece H. Dunn
d23735ae1b
Release the translator memory in espeak{_ng,}_Terminate.
7 years ago
Juho Hiltunen
29cba35a9e
headers: add new file mbrola.h with declarations of functions in compilembrola.c and synth_mbrola.c
7 years ago
Juho Hiltunen
f00ff91fe4
headers: add new file wavegen.h with declarations of functions in wavegen.c
7 years ago
Juho Hiltunen
9012f3f0bf
headers: continue with synthdata.h
7 years ago
Juho Hiltunen
231a1d0944
headers: add new file dictionary.h with declarations of functions in dictionary.c
7 years ago
Juho Hiltunen
706df97b20
headers: add new file readclause.h with declarations of functions in readclause.c
7 years ago
Juho Hiltunen
78749f14f8
readability fix: use boolean instead of 0 and 1 for loop control
7 years ago
Reece H. Dunn
e6c75fa350
speech.c: Fix -Wmissing-prototypes warnings.
7 years ago
Reece H. Dunn
74f9f5e34b
wavegen.c: Fix -Wmissing-prototypes warnings.
7 years ago
Reece H. Dunn
5c14e92f6b
voices.c: Fix -Wmissing-prototypes warnings.
7 years ago
Reece H. Dunn
8585b0b47d
Fix the return status code from Synthesize when the voices cannot be found.
7 years ago
Reece H. Dunn
fbd2e679fc
Don't crash if loading the default voice fails.
8 years ago
Reece H. Dunn
dced9f58fd
Clean up the decoder memory in espeak_Terminate.
8 years ago
Reece H. Dunn
63e2826753
Ensure that the old translator is not used after calling espeak_Terminate.
8 years ago
Reece H. Dunn
ae6116bf97
Fix calling espeak_Synth without first setting a voice, with tests.
8 years ago
Reece H. Dunn
6ab1314843
Move outbuf_size to where it is actually used.
8 years ago
Reece H. Dunn
9fc2efb1fa
Don't re-initialize my_audio if espeak_ng_InitializeOutput is called multiple times.
8 years ago
Reece H. Dunn
9af96da469
Make the encoding.h API public.
8 years ago
Reece H. Dunn
62d4aff9a9
Remove the now unused option_multibyte variable.
8 years ago
Reece H. Dunn
ec8a7b810f
Use the text decoder object at the top-level Synthesize/espeak_TextToPhonemes call, not in TranslateClause.
8 years ago
Reece H. Dunn
7c16ac543c
Use the text decoder API in readclause.c.
8 years ago
Reece H. Dunn
8933185de4
Remove the unused f_in argument to the Read/Translate/SpeakNextClause functions.
8 years ago
Reece H. Dunn
3ce7fab7db
Return the actual error from GetFileLength instead of 0.
8 years ago
Reece H. Dunn
df6a2228b7
Use -EISDIR instead of -2 in GetFileLength for directories.
8 years ago
Reece H. Dunn
dee3799f82
issue #172: flush audio on cancel requests.
This is a partial fix for an audio regression. The other part of
the fix requires a change in pcaudiolib to reopen the audio device
on flush requests for affected audio drivers/devices.
8 years ago
Reece H. Dunn
d42ba93959
Don't use the HOME directory as the espeak-ng-data path.
8 years ago