File size: 1,117 Bytes
71e354e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | /**************************************************************************************************
*
* Copyright (c) 2019-2026 Axera Semiconductor (Ningbo) Co., Ltd. All Rights Reserved.
*
* This source file is the property of Axera Semiconductor (Ningbo) Co., Ltd. and
* may not be copied or distributed in any isomorphic form without the prior
* written consent of Axera Semiconductor (Ningbo) Co., Ltd.
*
**************************************************************************************************/
#pragma once
#include <string>
#include <vector>
#include <memory>
#include "api/ax_tts_api.h"
#include "frontend/frontend_interface.hpp"
class TTSInterface {
public:
virtual ~TTSInterface() {}
virtual bool init(AX_TTS_TYPE_E tts_type, AX_TTS_INIT_CONFIG* init_config) = 0;
virtual void uninit(void) = 0;
virtual bool run(const std::string& text, AX_TTS_RUN_CONFIG* run_config, AX_TTS_AUDIO** audio) = 0;
virtual void set_frontend(std::shared_ptr<TTSFrontend> frontend) {
frontend_ = std::move(frontend);
}
protected:
std::shared_ptr<TTSFrontend> frontend_;
}; |