From ccc9c4aa4ed3f16d3781b92fbd6d6ec013627c5c Mon Sep 17 00:00:00 2001 From: William Hubbs Date: Sun, 31 Aug 2008 11:30:01 -0500 Subject: [PATCH] modified rate offset This commit moves the rate offset to 84 instead of 80 so that the highest espeak rate can be reached by setting the speakup rate to the maximum. --- synth.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/synth.c b/synth.c index 16a0e0e..97a6c5f 100644 --- a/synth.c +++ b/synth.c @@ -23,7 +23,7 @@ const int frequencyMultiplier = 11; const int pitchMultiplier = 11; const int rateMultiplier = 34; -const int rateOffset = 80; +const int rateOffset = 84; const int volumeMultiplier = 11; int SynthCallback(short *wav, int numsamples, espeak_EVENT *events)