Restore the internal definition temporarily 25/297025/1 accepted/tizen/unified/20230810.070117
authorSuyeon Hwang <stom.hwang@samsung.com>
Wed, 9 Aug 2023 05:48:53 +0000 (14:48 +0900)
committerSuyeon Hwang <stom.hwang@samsung.com>
Wed, 9 Aug 2023 05:48:53 +0000 (14:48 +0900)
Change-Id: I0415eaff349f3fbd480a62bbeefd109d0eacd649
Signed-off-by: Suyeon Hwang <stom.hwang@samsung.com>
client/stt.c
include/stt_internal.h

index 8966adb366c12c7832f16cf4dddda2452f2787e9..128264a746636b6b994e9f03edad8b4b9a89b40a 100644 (file)
@@ -2531,3 +2531,16 @@ int stt_get_audio_id(stt_h stt, char **audio_id)
 
        return STT_ERROR_NONE;
 }
+
+/* FIXME: This is temporal restoration. It's gonna be removed after build issue resovled. */
+//LCOV_EXCL_START
+int stt_set_audio_type(stt_h stt, const char *audio_id)
+{
+       return stt_set_audio_id(stt, audio_id);
+}
+
+int stt_get_audio_type(stt_h stt, char **audio_id)
+{
+       return stt_get_audio_id(stt, audio_id);
+}
+//LCOV_EXCL_STOP
index 0ebef91acd49679293c079c95773d19b024af721..3e3dbb1e246bf93bfaa090c8d36fcf4099c7a355 100644 (file)
@@ -177,6 +177,11 @@ int stt_change_system_volume(stt_h stt, stt_system_volume_event_e volume_event);
 int stt_recover_system_volume(stt_h stt);
 
 
+/* FIXME: This is temporal restoration. It's gonna be removed after build issue resovled. */
+int stt_set_audio_type(stt_h stt, const char *audio_id);
+int stt_get_audio_type(stt_h stt, char **audio_id);
+
+
 #ifdef __cplusplus
 }
 #endif