From: Suyeon Hwang Date: Mon, 8 May 2023 06:15:02 +0000 (+0900) Subject: Set status vconf when the synthesis is started X-Git-Tag: accepted/tizen/7.0/unified/20230511.022343~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b43bbd6bd38b4dea1322de754aa98240b08d42e5;p=platform%2Fcore%2Fuifw%2Ftts.git Set status vconf when the synthesis is started Change-Id: Id6152a67321c63d917fb763a5837e35f5ea36386 Signed-off-by: Suyeon Hwang --- diff --git a/server/ttsd_server.c b/server/ttsd_server.c index 3602a18f..050486d9 100644 --- a/server/ttsd_server.c +++ b/server/ttsd_server.c @@ -167,6 +167,9 @@ static void __synthesis(unsigned int uid) } if (ttsd_data_get_synth_control() == TTSD_SYNTHESIS_CONTROL_DOING && ttsd_state_get_state() == TTSD_STATE_READY) { + int ret = vconf_set_bool(TTS_PLAYING_STATUS_KEY, 1); + SLOG(LOG_INFO, tts_tag(), "[Server] Synthesis starting. Set playing status (True). ret(%d)", ret); + ttsd_state_set_state(TTSD_STATE_SYNTHESIZING); }