From: Suyeon Hwang Date: Wed, 31 May 2023 01:27:40 +0000 (+0900) Subject: Fix tizen version description (7.5 -> 8.0) X-Git-Tag: accepted/tizen/unified/20230608.164318~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5bc55ca9507906f25f52b8c0c214f7bab3d58c46;p=platform%2Fcore%2Fuifw%2Ftts.git Fix tizen version description (7.5 -> 8.0) Change-Id: I9bfe513275e17c3d373c4d826b945e8f66d8fd48 Signed-off-by: Suyeon Hwang --- diff --git a/include/tts.h b/include/tts.h index f36eb829..eaaea6d1 100644 --- a/include/tts.h +++ b/include/tts.h @@ -90,11 +90,11 @@ typedef enum { * @since_tizen 7.0 */ typedef enum { - TTS_SERVICE_STATE_NONE = -1, /**< 'None' state (Since 7.5) */ + TTS_SERVICE_STATE_NONE = -1, /**< 'None' state (Since 8.0) */ TTS_SERVICE_STATE_READY = 0, /**< 'Ready' state */ TTS_SERVICE_STATE_SYNTHESIZING, /**< 'Synthesizing' state */ TTS_SERVICE_STATE_PLAYING, /**< 'Playing' state */ - TTS_SERVICE_STATE_BLOCKED /**< 'Blocked' state (Since 7.5) */ + TTS_SERVICE_STATE_BLOCKED /**< 'Blocked' state (Since 8.0) */ } tts_service_state_e; diff --git a/include/tts_internal.h b/include/tts_internal.h index a08a977f..ea43cbbd 100644 --- a/include/tts_internal.h +++ b/include/tts_internal.h @@ -30,7 +30,7 @@ extern "C" /** * @brief Enumration for playing mode of TTS. - * @since_tizen 7.5 + * @since_tizen 8.0 */ typedef enum { TTS_PLAYING_MODE_BY_SERVICE = 0, /**< Mode for TTS playing on TTS service */ @@ -40,7 +40,7 @@ typedef enum { /** * @brief Enumeration for synthesized pcm event. - * @since_tizen 7.5 + * @since_tizen 8.0 */ typedef enum { TTS_SYNTHESIZED_PCM_EVENT_FAIL = -1, /**< 'Error' event */ @@ -58,7 +58,7 @@ typedef enum { /** * @brief Called when the synthesized pcm data is come from the engine. - * @since_tizen 7.5 + * @since_tizen 8.0 * @remarks The @a tts handle should not be destroyed in the callback. * @param[in] tts The TTS handle, the same handle for which the callback was set. * @param[in] event The event type @@ -163,7 +163,7 @@ int tts_stop_pcm(tts_h tts); /** * @brief Sets the TTS playing mode. - * @since_tizen 7.5 + * @since_tizen 8.0 * @param[in] tts The TTS handle * @param[in] mode The mode * @return @c 0 on success, @@ -181,7 +181,7 @@ int tts_set_playing_mode(tts_h tts, tts_playing_mode_e mode); /** * @brief Sets the default to be called when the synthesized pcm data is recieved. - * @since_tizen 7.5 + * @since_tizen 8.0 * @param[in] tts The TTS handle * @param callback The callback function to register * @param user_data The user data to be passed to the callback function @@ -200,7 +200,7 @@ int tts_set_synthesized_pcm_cb(tts_h tts, tts_synthesized_pcm_cb callback, void* /** * @brief Unsets the callback function. - * @since_tizen 7.5 + * @since_tizen 8.0 * @param tts The TTS handle * @return @c 0 on success, * otherwise a negative error value