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 8966adb..128264a 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 0ebef91..3e3dbb1 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