forked from xiaozhi/xiaozhi-esp32
42 lines
1.2 KiB
C++
42 lines
1.2 KiB
C++
#ifndef AFE_AUDIO_PROCESSOR_H
|
|
#define AFE_AUDIO_PROCESSOR_H
|
|
|
|
#include <esp_afe_sr_models.h>
|
|
#include <freertos/FreeRTOS.h>
|
|
#include <freertos/task.h>
|
|
#include <freertos/event_groups.h>
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
#include <functional>
|
|
|
|
#include "audio_processor.h"
|
|
#include "audio_codec.h"
|
|
|
|
class AfeAudioProcessor : public AudioProcessor {
|
|
public:
|
|
AfeAudioProcessor();
|
|
~AfeAudioProcessor();
|
|
|
|
void Initialize(AudioCodec* codec, bool realtime_chat) override;
|
|
void Feed(const std::vector<int16_t>& data) override;
|
|
void Start() override;
|
|
void Stop() override;
|
|
bool IsRunning() override;
|
|
void OnOutput(std::function<void(std::vector<int16_t>&& data)> callback) override;
|
|
void OnVadStateChange(std::function<void(bool speaking)> callback) override;
|
|
size_t GetFeedSize() override;
|
|
|
|
private:
|
|
EventGroupHandle_t event_group_ = nullptr;
|
|
esp_afe_sr_iface_t* afe_iface_ = nullptr;
|
|
esp_afe_sr_data_t* afe_data_ = nullptr;
|
|
std::function<void(std::vector<int16_t>&& data)> output_callback_;
|
|
std::function<void(bool speaking)> vad_state_change_callback_;
|
|
AudioCodec* codec_ = nullptr;
|
|
bool is_speaking_ = false;
|
|
|
|
void AudioProcessorTask();
|
|
};
|
|
|
|
#endif |