From 7f44953cfde28427b8ab475450c845f73cfc137d Mon Sep 17 00:00:00 2001 From: dyamy-lee Date: Wed, 23 Apr 2025 15:37:22 +0900 Subject: [PATCH] TTS config default voice type changed from NONE to FEMALE Issue : Two voice guide genders are working simultaneously while Voice gender selection feature is not even present. Solution : Change of default voice type from NONE to FEMALE Change-Id: I8650a6f515fb2ab51e77ae2dba121d14680f0c0e --- common/tts_config_mgr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/tts_config_mgr.c b/common/tts_config_mgr.c index a82e30e0..1eed8a6e 100644 --- a/common/tts_config_mgr.c +++ b/common/tts_config_mgr.c @@ -337,7 +337,7 @@ int __tts_config_mgr_select_lang(const char* engine_id, char** language, int* ty return TTS_CONFIG_ERROR_OPERATION_FAILED; } - tts_config_voice_s* voice = __get_voice_info(engine_info, TTS_BASE_LANGUAGE, TTS_CONFIG_VOICE_TYPE_NONE); + tts_config_voice_s* voice = __get_voice_info(engine_info, TTS_BASE_LANGUAGE, TTS_CONFIG_VOICE_TYPE_FEMALE); if (NULL == voice) { /* Not support base language */ GSList *iter_voice = g_slist_nth(engine_info->voices, 0); -- 2.34.1