Agora Java API Reference for Android
NGIAgoraExtensionAiAec.h
1 
2 // Agora SDK
3 //
4 // Created by LLF on 2022-8-15.
5 // Copyright (c) 2022 Agora. All rights reserved.
6 //
7 
8 #pragma once // NOLINT(build/header_guard)
9 
10 #include "AgoraRefPtr.h"
11 
12 #define MAX_VERSION_LEN 64
13 
14 namespace agora {
15 namespace rtc {
16 
18  public:
19  virtual ~AiEchoCancellationExtension() {};
20 
21  virtual int ProcessAiNlpFrame(float* input, float* output) = 0;
22  virtual int ClearHiddenState(float scale_factor = 0.0) = 0;
23  virtual void Version(char ver[MAX_VERSION_LEN]) = 0;
24 };
25 
26 } // namespace rtc
27 } // namespace agora
agora::rtc::AiEchoCancellationExtension
Definition: NGIAgoraExtensionAiAec.h:17
agora::RefCountInterface
Definition: AgoraRefPtr.h:31