TTS config default voice type changed from NONE to FEMALE 11/323111/1 accepted/tizen_unified accepted/tizen_unified_x tizen accepted/tizen/unified/20250428.091817 accepted/tizen/unified/x/20250429.081852
authordyamy-lee <dyamy.lee@samsung.com>
Wed, 23 Apr 2025 06:37:22 +0000 (15:37 +0900)
committerdyamy-lee <dyamy.lee@samsung.com>
Wed, 23 Apr 2025 06:37:22 +0000 (15:37 +0900)
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

index a82e30e00da99b7693b8564fe5893b2508723b43..1eed8a6e0987bb1f3d919187fb55e280289efd74 100644 (file)
@@ -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);