From 02c88e949a9e44e16fa7ad6c289f3c476e0becb2 Mon Sep 17 00:00:00 2001 From: William Hubbs Date: Fri, 1 Aug 2008 20:35:55 -0500 Subject: [PATCH] adjusted multipliers I adjusted the pitch and volume multipliers. This should allow us to come closer to the maximum espeak settings. --- espeakup.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/espeakup.c b/espeakup.c index f3cff30..6510425 100644 --- a/espeakup.c +++ b/espeakup.c @@ -37,10 +37,10 @@ const char *pidPath = "/var/run/espeakup.pid"; /* multipliers and offsets */ const int frequencyMultiplier = 11; -const int pitchMultiplier = 10; +const int pitchMultiplier = 11; const int rateMultiplier = 32; const int rateOffset = 80; -const int volumeMultiplier = 10; +const int volumeMultiplier = 11; struct synth_t { int frequency;