Fixed privlevel partner for doxygen 34/215734/1
authorsungrae jo <seongrae.jo@samsung.com>
Tue, 15 Oct 2019 05:32:42 +0000 (14:32 +0900)
committersungrae jo <seongrae.jo@samsung.com>
Tue, 15 Oct 2019 05:32:42 +0000 (14:32 +0900)
Change-Id: I6328e620c7283f2f5f3c5a419f4947e0f1d953bb
Signed-off-by: sungrae jo <seongrae.jo@samsung.com>
include/voice_control.h

index c37d991..5e28d19 100644 (file)
@@ -608,6 +608,7 @@ int vc_unset_error_cb(void);
 
 
 /**
+ * @partner
  * @brief Requests to send TTS streaming data, asynchronously.
  * @details Using this function, the developer can request text to speech to the framework.
  *          When the developer requests the TTS with @a language, VC engine will send PCM data which is synthesized using VC engine's own persona.
@@ -616,7 +617,7 @@ int vc_unset_error_cb(void);
  *          and then it will be spoken in VC manager. If @a to_vc_manager is false, you will receive PCM data through the vc_tts_streaming_cb() callback function if it was set using vc_tts_set_streaming_cb().
  *          This function is executed asynchronously, so if there is an error while synthesizing, vc_error_cb() will be called.
  * @since_tizen 5.5
- * @privlevel @partner
+ * @privlevel partner
  * @privilege %http://tizen.org/privilege/voicecontrol.tts
  * @param[in] text The text to be requested for TTS
  * @param[in] language The language is specified as an ISO 3166 alpha-2 two-letter country code
@@ -640,9 +641,10 @@ int vc_tts_request(const char* text, const char* language, bool to_vc_manager, i
 
 
 /**
+ * @partner
  * @brief Requests to cancel TTS streaming data.
  * @since_tizen 5.5
- * @privlevel @partner
+ * @privlevel partner
  * @privilege %http://tizen.org/privilege/voicecontrol.tts
  * @param[in] utt_id The utterance id
  * @return @c 0 on success,
@@ -659,10 +661,11 @@ int vc_tts_cancel(int utt_id);
 
 
 /**
+ * @partner
  * @brief Gets the TTS audio details.
  * @details Using this function, the developer can get details of synthesized audio data which is requested by vc_tts_request() function.
  * @since_tizen 5.5
- * @privlevel @partner
+ * @privlevel partner
  * @privilege %http://tizen.org/privilege/voicecontrol.tts
  * @param[out] rate The audio sampling rate
  * @param[out] channel The audio channel
@@ -680,9 +683,10 @@ int vc_tts_get_synthesized_audio_details(int* rate, vc_audio_channel_e* channel,
 
 
 /**
+ * @partner
  * @brief Sets the TTS streaming callback function.
  * @since_tizen 5.5
- * @privlevel @partner
+ * @privlevel partner
  * @privilege %http://tizen.org/privilege/voicecontrol.tts
  * @param[in] callback The callback function
  * @param[in] user_data The user data to be passed to the callback function
@@ -699,9 +703,10 @@ int vc_tts_set_streaming_cb(vc_tts_streaming_cb callback, void* user_data);
 
 
 /**
+ * @partner
  * @brief Unsets the TTS streaming callback function.
  * @since_tizen 5.5
- * @privlevel @partner
+ * @privlevel partner
  * @privilege %http://tizen.org/privilege/voicecontrol.tts
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -715,12 +720,13 @@ int vc_tts_unset_streaming_cb(void);
 
 
 /**
+ * @partner
  * @brief Sets the TTS utterance status callback function.
  * @details Using this function, the developer can set the utterance status callback to be called
  *          when the VC manager client starts or stops playing TTS PCM data which was requested to be synthesized with the vc_tts_request() function.
- *          This function is called when @a to_vc_manager in the vc_tts_request() function call is true.
+ *          This function is called when @a to_vc_manager in the vc_tts_request() function call is @c true.
  * @since_tizen 5.5
- * @privlevel @partner
+ * @privlevel partner
  * @privilege %http://tizen.org/privilege/voicecontrol.tts
  * @param[in] callback The callback function
  * @param[in] user_data The user data to be passed to the callback function
@@ -738,9 +744,10 @@ int vc_tts_set_utterance_status_cb(vc_tts_utterance_status_cb callback, void* us
 
 
 /**
+ * @partner
  * @brief Unsets the TTS utterance status callback function.
  * @since_tizen 5.5
- * @privlevel @partner
+ * @privlevel partner
  * @privilege %http://tizen.org/privilege/voicecontrol.tts
  * @return @c 0 on success,
  *         otherwise a negative error value