From 548b33e6ca0199e47902218242fb68ca2eeab212 Mon Sep 17 00:00:00 2001 From: Suyeon Hwang Date: Mon, 19 Feb 2024 15:15:39 +0900 Subject: [PATCH] Fix volume conversion parameter to 100 for better readability Change-Id: I97802a658d60344b30efcefaa469d03328e731da Signed-off-by: Suyeon Hwang --- common/tts_config_parser.c | 2 +- tts-config.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/common/tts_config_parser.c b/common/tts_config_parser.c index c2e645ff..e9cf1579 100644 --- a/common/tts_config_parser.c +++ b/common/tts_config_parser.c @@ -45,7 +45,7 @@ #define TTS_TAG_VOICE_TYPE_CHILD "child" #define TTS_MAX_TEXT_SIZE 2000 -#define VOLUME_BASE_VALUE 1000.0 +#define VOLUME_BASE_VALUE 100.0 static xmlDocPtr g_config_doc = NULL; char g_engine_id[128] = {0,}; diff --git a/tts-config.xml b/tts-config.xml index 1323564f..b9577642 100644 --- a/tts-config.xml +++ b/tts-config.xml @@ -7,5 +7,5 @@ female 8 8 - 400 + 40 -- 2.34.1