forked from brailcom/speechd
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
espeak-ng-mbrola: Fix mbrola voices with rate different from 22KHz
espeak_ng_GetSampleRate does not report the rate of mbrola voices. Fixes brailcom#949
- Loading branch information
Showing
1 changed file
with
14 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
* espeak.c - Speech Dispatcher backend for espeak | ||
* | ||
* Copyright (C) 2007 Brailcom, o.p.s. | ||
* Copyright (C) 2019-2022 Samuel Thibault <[email protected]> | ||
* Copyright (C) 2019-2024 Samuel Thibault <[email protected]> | ||
* | ||
* This is free software; you can redistribute it and/or modify it | ||
* under the terms of the GNU General Public License as published by | ||
|
@@ -677,15 +677,10 @@ static gboolean espeak_send_audio_upto(short *wav, int *sent, int upto) | |
if (wav == NULL || numsamples == 0) { | ||
return TRUE; | ||
} | ||
#ifdef ESPEAK_NG_INCLUDE | ||
int rate = espeak_ng_GetSampleRate(); | ||
#else | ||
int rate = espeak_sample_rate; | ||
#endif | ||
AudioTrack track = { | ||
.bits = 16, | ||
.num_channels = 1, | ||
.sample_rate = rate, | ||
.sample_rate = espeak_sample_rate, | ||
.num_samples = numsamples, | ||
.samples = wav + (*sent), | ||
}; | ||
|
@@ -743,6 +738,13 @@ static int synth_callback(short *wav, int numsamples, espeak_EVENT * events) | |
return 1; | ||
/* Process actual event */ | ||
switch (events->type) { | ||
case espeakEVENT_SENTENCE: | ||
case espeakEVENT_WORD: | ||
case espeakEVENT_PHONEME: | ||
case espeakEVENT_END: | ||
// Ignore | ||
break; | ||
|
||
case espeakEVENT_MARK: | ||
if (EspeakIndexing) { | ||
DBG(DBG_MODNAME " Reporting mark %s", events->id.name); | ||
|
@@ -763,7 +765,12 @@ static int synth_callback(short *wav, int numsamples, espeak_EVENT * events) | |
// This event never has any audio in the same callback | ||
DBG(DBG_MODNAME " Synth terminated"); | ||
break; | ||
case espeakEVENT_SAMPLERATE: | ||
DBG(DBG_MODNAME " Got sample rate %d", events->id.number); | ||
espeak_sample_rate = events->id.number; | ||
break; | ||
default: | ||
DBG(DBG_MODNAME " Got unsupported event %d\n", events->type); | ||
break; | ||
} | ||
if (stop_requested) | ||
|