* Copyright (C) 2026 Xiaomi Corporation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#pragma once
#include <stddef.h>
#ifdef __cplusplus
extern "C" {
#endif
int voice_channel_init(void);
int voice_channel_start(void);
int voice_channel_stop(void);
* text_out: buffer to receive ASR text, text_cap: buffer capacity.
* Returns 0 on success, negative errno on failure.
* If ASR returns empty text, text_out[0] is set to '\0' (not an error). */
int voice_channel_stop_with_text(char *text_out, size_t text_cap);
int voice_channel_speak(const char *text);
int voice_channel_test_tts(const char *text, const char *out_path);
int voice_channel_test_asr(const char *pcm_path);
#ifdef __cplusplus
}
#endif