From 307cc8f37d5b7a40e675952ee9b510cabeea5076 Mon Sep 17 00:00:00 2001 From: Suyeon Hwang Date: Wed, 9 Aug 2023 14:48:53 +0900 Subject: [PATCH] Restore the internal definition temporarily Change-Id: I0415eaff349f3fbd480a62bbeefd109d0eacd649 Signed-off-by: Suyeon Hwang --- client/stt.c | 13 +++++++++++++ include/stt_internal.h | 5 +++++ 2 files changed, 18 insertions(+) diff --git a/client/stt.c b/client/stt.c index 8966adb..128264a 100644 --- a/client/stt.c +++ b/client/stt.c @@ -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 diff --git a/include/stt_internal.h b/include/stt_internal.h index 0ebef91..3e3dbb1 100644 --- a/include/stt_internal.h +++ b/include/stt_internal.h @@ -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 -- 2.7.4