Agora C++ API Reference for All Platforms
agora_service_i.h
1 //
2 // Agora Media SDK
3 //
4 // Created by Sting Feng in 2015-05.
5 // Copyright (c) 2015 Agora IO. All rights reserved.
6 //
7 #pragma once
8 
9 #include <memory>
10 #include <string>
11 
12 #include "AgoraRefPtr.h"
13 
14 #include "IAgoraService.h"
15 #include "IAgoraLog.h"
16 
17 #include "audio_options_i.h"
18 #include "content_inspect_i.h"
19 #include "sync_client_i.h"
20 #include "audio_track_i.h"
21 #include "video_track_i.h"
22 #include "media_node_factory_i.h"
23 #include "bitrate_constraints.h"
24 #include "media_component/IAudioDeviceManager.h"
25 #include "api2/NGIAgoraAudioDeviceManager.h"
26 #include "api2/NGIAgoraMediaNode.h"
27 
28 #include <functional>
29 #include <string>
30 #include <api/aosl_ref.h>
31 
32 namespace agora {
33 namespace commons{
34  class io_engine_base;
35 }
36 namespace rtm {
37 struct RtmConfig;
38 }
39 namespace rtc {
40 class AgoraGenericBridge;
41 class ConfigSourceAP;
42 class IDiagnosticService;
43 class ILocalUserEx;
44 class IRtcConnection;
45 struct RtcConnectionConfigurationEx;
46 class IMediaExtensionObserver;
47 class XdumpHandler;
48 } // namespace rtc
49 
50 namespace base {
51 class IAgoraServiceObserver;
52 
66 };
67 
70  const char* deviceId = nullptr;
71  const char* deviceInfo = nullptr;
72  const char* systemInfo = nullptr;
73  const char* configDir = nullptr;
74  const char* dataDir = nullptr;
75  const char* pluginDir = nullptr;
77  bool apSendRequest = true;
78 
80  bitrateConstraints.start_bitrate_bps = kDefaultStartBitrateBps;
81  bitrateConstraints.max_bitrate_bps = kDefaultMaxBitrateBps;
82  }
83 
86  bitrateConstraints.max_bitrate_bps = kDefaultMaxBitrateBps;
87  bitrateConstraints.start_bitrate_bps = kDefaultStartBitrateBps;
88  }
89 
90  private:
91  static constexpr int kDefaultMaxBitrateBps = (24 * 10 * 1000 * 95);
92  static constexpr int kDefaultStartBitrateBps = 300000;
93 };
94 
95 
96 // full feature definition of rtc engine interface
98  public:
100  virtual int initialize(const rtm::RtmConfig& rtmCfg) { return 0; }
101  virtual void set_lite_initialized(bool initialized) {}
102  virtual int initializeLLApiInternal(const AgoraServiceConfiguration& config) = 0;
103  virtual int initializeEx(const AgoraServiceConfigEx& context) = 0;
105  const rtc::RtcConnectionConfigurationEx& cfg) = 0;
106 
107  virtual int32_t setAudioDumpPath(const char* filePath) = 0;
108 
109  virtual rtc::IRtcConnection* getOneRtcConnection(bool admBinded) const = 0;
110 
111  virtual void enableStringUid(bool enabled) = 0;
112  virtual bool useStringUid() const = 0;
113  virtual bool externalAudioSinkEnabled() const = 0;
114  virtual rtc::uid_t getUidByUserAccount(const std::string& app_id, const std::string& user_account) const = 0;
115 
116  // Register string user account before join channel, this would speed up join channel time.
117  virtual int registerLocalUserAccount(const char* appId, const char* userAccount) = 0;
118 
120 
123 
125  agora_refptr<rtc::IRtcConnection> rtcConnection, const char* appId, media::CONTENT_INSPECT_CLOUD_TYPE cloudType) = 0;
126 
128  virtual int atExitLLApiInternal() = 0;
129  virtual int releaseLLApiInternal() = 0;
130  virtual int setLogFileLLApiInternal(const char* filePath, unsigned int fileSize) = 0;
131  virtual int setLogFilterLLApiInternal(unsigned int filters) = 0;
133  const user_id_t usrId) = 0;
134  virtual int getConnectionCountsWithChannelId(const char* channelId) = 0;
135 #if defined(FEATURE_RTM_SERVICE)
137 #endif
157 
163 #if defined(__ANDROID__) || (defined(TARGET_OS_IPHONE) && TARGET_OS_IPHONE)
166 #else
168 #endif
180  virtual const char* getExtensionIdLLApiInternal(const char* provider_name, const char* extension_name) = 0;
181  virtual int enableExtensionLLApiInternal(const char* provider_name, const char* extension_name, const char* track_id, bool auto_enable_on_track) = 0;
182  virtual int disableExtensionLLApiInternal(const char* provider_name, const char* extension_name, const char* track_id) = 0;
191  virtual int startTrace(uint32_t count, uint64_t mask) = 0;
200  virtual int stopTrace(const char* file_path) = 0;
201 
221  virtual int setExternalAudioSink(bool enabled, int sampleRate, int channels) = 0;
222 
232  virtual int pullPlaybackAudioPcmData(void* payloadData, const rtc::AudioPcmDataInfo& audioFrameInfo) = 0;
233 #if defined(ENABLE_MEDIA_PLAYER)
234  virtual aosl_ref_t createRhythmPlayer() = 0;
235 
236  virtual int destroyRhythmPlayer(aosl_ref_t ref_id) = 0;
237 
239 
240  virtual int destroyMediaPlayer(aosl_ref_t ref_id) = 0;
241 #endif
242 
244 
245  virtual commons::io_engine_base* getIoEngine() = 0;
246 #if defined(__ANDROID__)
247 
261  virtual int setExternalRemoteEglContext(void* eglContext) = 0;
262 #endif
263  protected:
264  virtual ~IAgoraServiceEx() {}
265 };
266 
268  public:
269  virtual ~IAgoraServiceObserver() = default;
270 
271  virtual void onLocalUserRegistered(rtc::uid_t uid, const char* userAccount) = 0;
272 };
273 
275 
276 } // namespace base
277 } // namespace agora
agora::base::IAgoraServiceObserver
Definition: agora_service_i.h:267
agora::base::IAgoraServiceEx::initialize
virtual int initialize(const rtm::RtmConfig &rtmCfg)
Definition: agora_service_i.h:100
agora::base::IAgoraServiceEx::createMediaStreamingAudioTrackLLApiInternal
virtual agora_refptr< rtc::ILocalAudioTrackEx > createMediaStreamingAudioTrackLLApiInternal(agora_refptr< rtc::IMediaStreamingSource > streamingSource)=0
agora::base::IAgoraServiceEx::getConfigCenterLLApiInternal
virtual agora_refptr< rtc::IConfigCenter > getConfigCenterLLApiInternal()=0
agora::base::IAgoraService
Definition: IAgoraService.h:395
agora::rtc::BitrateConstraints::start_bitrate_bps
int start_bitrate_bps
Definition: bitrate_constraints.h:22
agora::rtc::SenderOptions
Definition: AgoraBase.h:1249
agora::base::IAgoraServiceEx::createAudioDeviceManagerLLApiInternal
virtual agora_refptr< rtc::INGAudioDeviceManager > createAudioDeviceManagerLLApiInternal()=0
agora::base::IAgoraServiceEx::createCustomVideoTrackLLApiInternal
virtual agora_refptr< rtc::ILocalVideoTrackEx > createCustomVideoTrackLLApiInternal(agora_refptr< rtc::IMediaPacketSender > source, const char *id=nullptr)=0
agora::base::IAgoraServiceEx::destroyRhythmPlayer
virtual int destroyRhythmPlayer(aosl_ref_t ref_id)=0
agora::base::IAgoraServiceEx::createRecordingDeviceAudioTrackLLApiInternal
virtual agora_refptr< rtc::ILocalAudioTrackEx > createRecordingDeviceAudioTrackLLApiInternal(agora_refptr< rtc::IRecordingDeviceSource > audioSource, bool enableAec, bool overlap)=0
agora::base::IAgoraServiceEx::initializeLLApiInternal
virtual int initializeLLApiInternal(const AgoraServiceConfiguration &config)=0
agora::base::IAgoraServiceEx::createRtmServiceLLApiInternal
virtual rtm::IRtmService * createRtmServiceLLApiInternal()=0
agora::media::base::MEDIA_PLAYER_SOURCE_TYPE
MEDIA_PLAYER_SOURCE_TYPE
Definition: AgoraMediaBase.h:1182
agora::base::IAgoraServiceEx::createScreenCaptureAudioTrackLLApiInternal
virtual agora_refptr< rtc::ILocalAudioTrackEx > createScreenCaptureAudioTrackLLApiInternal(agora_refptr< rtc::IScreenCapturer2 > screen)=0
agora::base::IAgoraServiceEx::createFileUploadServiceLLApiInternal
virtual agora_refptr< rtc::IFileUploaderService > createFileUploadServiceLLApiInternal(agora_refptr< rtc::IRtcConnection > rtcConnection, const char *appId)=0
agora::base::AgoraServiceConfigEx::pluginDir
const char * pluginDir
Definition: agora_service_i.h:75
agora::base::AgoraServiceConfigEx::AgoraServiceConfigEx
AgoraServiceConfigEx()
Definition: agora_service_i.h:79
agora::agora_refptr
Definition: AgoraRefPtr.h:44
agora::base::IAgoraServiceEx::createAudioDeviceManagerComponentLLApiInternal
virtual agora_refptr< rtc::IAudioDeviceManager > createAudioDeviceManagerComponentLLApiInternal(rtc::IAudioDeviceManagerObserver *observer)=0
agora::base::IAgoraServiceEx::addExtensionObserverLLApiInternal
virtual int addExtensionObserverLLApiInternal(agora::agora_refptr< agora::rtc::IMediaExtensionObserver > observer)=0
agora::base::AgoraServiceConfiguration
Definition: IAgoraService.h:82
agora::base::IAgoraServiceEx::createMediaRelayServiceLLApiInternal
virtual agora_refptr< rtc::IMediaRelayService > createMediaRelayServiceLLApiInternal(agora_refptr< rtc::IRtcConnection > rtcConnection, const char *appId)=0
agora::base::IAgoraServiceEx::getIoEngine
virtual commons::io_engine_base * getIoEngine()=0
agora::base::AgoraServiceConfigEx::engineType
MediaEngineType engineType
Definition: agora_service_i.h:69
agora::base::AgoraServiceConfigEx::configDir
const char * configDir
Definition: agora_service_i.h:73
agora::base::IAgoraServiceEx::setAudioSessionPresetLLApiInternal
virtual int setAudioSessionPresetLLApiInternal(rtc::AUDIO_SCENARIO_TYPE scenario)=0
agora::base::GetService
IAgoraServiceEx * GetService()
agora::base::IAgoraServiceEx::removeExtensionObserverLLApiInternal
virtual int removeExtensionObserverLLApiInternal(agora::agora_refptr< agora::rtc::IMediaExtensionObserver > observer)=0
agora::base::IAgoraServiceEx::createMixedVideoTrackLLApiInternal
virtual agora_refptr< rtc::ILocalVideoTrackEx > createMixedVideoTrackLLApiInternal(agora_refptr< rtc::IVideoMixerSource > videoSource, const char *id)=0
agora::base::IAgoraServiceEx::createMediaNodeFactoryLLApiInternal
virtual agora_refptr< rtc::IMediaNodeFactoryEx > createMediaNodeFactoryLLApiInternal()=0
agora::base::IAgoraServiceEx::releaseEngineResourceLLApiInternal
virtual int releaseEngineResourceLLApiInternal()=0
agora::base::IAgoraServiceEx::createRtmpConnectionLLApiInternal
virtual agora_refptr< rtc::IRtmpConnection > createRtmpConnectionLLApiInternal(const rtc::RtmpConnectionConfiguration &cfg)=0
agora::base::AgoraServiceConfigEx::deviceInfo
const char * deviceInfo
Definition: agora_service_i.h:71
agora::base::IAgoraServiceEx::createRhythmPlayer
virtual aosl_ref_t createRhythmPlayer()=0
agora::base::IAgoraServiceEx::setExternalAudioSink
virtual int setExternalAudioSink(bool enabled, int sampleRate, int channels)=0
agora::base::AgoraServiceConfigEx::deviceId
const char * deviceId
Definition: agora_service_i.h:70
agora::rtm::IRtmService
Definition: IAgoraRtmService.h:637
agora::rtc::AUDIO_SCENARIO_TYPE
AUDIO_SCENARIO_TYPE
Definition: AgoraBase.h:2675
agora::base::MEDIA_ENGINE_WEBRTC
@ MEDIA_ENGINE_WEBRTC
Definition: agora_service_i.h:57
agora::user_id_t
const char * user_id_t
Definition: AgoraBase.h:809
agora::base::AgoraServiceConfigEx::AgoraServiceConfigEx
AgoraServiceConfigEx(const AgoraServiceConfiguration &rhs)
Definition: agora_service_i.h:84
agora::base::IServiceObserver
Definition: IAgoraService.h:357
agora::base::IAgoraServiceEx::startTrace
virtual int startTrace(uint32_t count, uint64_t mask)=0
agora::base::IAgoraServiceEx::setAudioDumpPath
virtual int32_t setAudioDumpPath(const char *filePath)=0
agora::base::IAgoraServiceEx::createCustomVideoTrackLLApiInternal
virtual agora_refptr< rtc::ILocalVideoTrackEx > createCustomVideoTrackLLApiInternal(agora_refptr< rtc::IVideoFrameSender > videoSource, const char *id)=0
agora::base::IAgoraServiceEx::createRtmpStreamingServiceLLApiInternal
virtual agora_refptr< rtc::IRtmpStreamingService > createRtmpStreamingServiceLLApiInternal(agora_refptr< rtc::IRtcConnection > rtcConnection, const char *appId)=0
agora::base::IAgoraServiceEx::initializeEx
virtual int initializeEx(const AgoraServiceConfigEx &context)=0
agora::rtc::RtmpConnectionConfiguration
Definition: NGIAgoraRtmpConnection.h:231
agora::base::IAgoraServiceEx::createLocalMixedAudioTrackLLApiInternal
virtual agora_refptr< rtc::ILocalAudioTrackEx > createLocalMixedAudioTrackLLApiInternal()=0
agora::base::IAgoraServiceEx::createMediaPlayerVideoTrackLLApiInternal
virtual agora_refptr< rtc::ILocalVideoTrackEx > createMediaPlayerVideoTrackLLApiInternal(agora_refptr< rtc::IMediaPlayerSource > playerVideoSource, const char *id=nullptr)=0
agora::base::AgoraServiceConfigEx
Definition: agora_service_i.h:68
agora::base::IAgoraServiceEx::disableExtensionLLApiInternal
virtual int disableExtensionLLApiInternal(const char *provider_name, const char *extension_name, const char *track_id)=0
agora
Definition: AgoraAtomicOps.h:21
agora::base::IAgoraServiceObserver::onLocalUserRegistered
virtual void onLocalUserRegistered(rtc::uid_t uid, const char *userAccount)=0
agora::base::IAgoraServiceObserver::~IAgoraServiceObserver
virtual ~IAgoraServiceObserver()=default
agora::base::IAgoraServiceEx::stopTrace
virtual int stopTrace(const char *file_path)=0
agora::base::TMixMode
TMixMode
Definition: IAgoraService.h:343
agora::base::IAgoraServiceEx::getExtensionIdLLApiInternal
virtual const char * getExtensionIdLLApiInternal(const char *provider_name, const char *extension_name)=0
agora::base::IAgoraServiceEx::createCustomAudioTrackLLApiInternal
virtual agora_refptr< rtc::ILocalAudioTrackEx > createCustomAudioTrackLLApiInternal(agora_refptr< rtc::IRemoteAudioMixerSource > audioSource)=0
agora::base::IAgoraServiceEx::~IAgoraServiceEx
virtual ~IAgoraServiceEx()
Definition: agora_service_i.h:264
agora::base::IAgoraServiceEx::createMediaStreamingVideoTrackLLApiInternal
virtual agora_refptr< rtc::ILocalVideoTrackEx > createMediaStreamingVideoTrackLLApiInternal(agora_refptr< rtc::IMediaStreamingSource > streamingSource, const char *id=nullptr)=0
agora::base::IAgoraServiceEx::createCustomAudioTrackLLApiInternal
virtual agora_refptr< rtc::ILocalAudioTrackEx > createCustomAudioTrackLLApiInternal(agora_refptr< rtc::IMediaPacketSender > source)=0
agora::rtc::RtcConnectionConfigurationEx
Definition: rtc_connection_i.h:105
agora::base::IAgoraServiceEx::createLocalAudioTrackLLApiInternal
virtual agora_refptr< rtc::ILocalAudioTrackEx > createLocalAudioTrackLLApiInternal()=0
agora::base::IAgoraServiceEx::getAudioSessionConfigurationLLApiInternal
virtual int getAudioSessionConfigurationLLApiInternal(AudioSessionConfiguration *config)=0
agora::base::AgoraServiceConfigEx::systemInfo
const char * systemInfo
Definition: agora_service_i.h:72
agora::rtc::IDiagnosticService
Definition: diagnostic_service_i.h:35
agora::base::IAgoraServiceEx::createDirectCustomAudioTrackLLApiInternal
virtual agora_refptr< rtc::ILocalAudioTrackEx > createDirectCustomAudioTrackLLApiInternal(agora_refptr< rtc::IAudioPcmDataSender > audioSource, bool enableAudioProcessing)=0
agora::base::SyncConfig
Definition: NGIAgoraSyncClient.h:78
agora::base::IAgoraServiceEx::pullPlaybackAudioPcmData
virtual int pullPlaybackAudioPcmData(void *payloadData, const rtc::AudioPcmDataInfo &audioFrameInfo)=0
agora::base::IAgoraServiceEx::createCameraVideoTrackLLApiInternal
virtual agora_refptr< rtc::ILocalVideoTrackEx > createCameraVideoTrackLLApiInternal(agora_refptr< rtc::ICameraCapturer > videoSource, const char *track_id)=0
agora::base::IAgoraServiceEx::createTranscodedVideoTrackLLApiInternal
virtual agora_refptr< rtc::ILocalVideoTrackEx > createTranscodedVideoTrackLLApiInternal(agora_refptr< rtc::IVideoFrameTransceiver > transceiver, const char *id)=0
agora::base::IAgoraServiceEx::getRtcConnectionInChannel
virtual agora_refptr< rtc::IRtcConnectionEx > getRtcConnectionInChannel(const char *name, const user_id_t usrId)=0
agora::base::IAgoraServiceEx::createLocalDataChannelLLApiInternal
virtual agora_refptr< ILocalDataChannel > createLocalDataChannelLLApiInternal(const DataChannelConfig &config)=0
agora::base::AudioSessionConfiguration
Definition: IAgoraService.h:186
agora::base::IAgoraServiceEx::atExitLLApiInternal
virtual int atExitLLApiInternal()=0
agora::base::IAgoraService::initialize
virtual int initialize(const AgoraServiceConfiguration &config)=0
agora::base::IAgoraServiceEx::releaseLLApiInternal
virtual int releaseLLApiInternal()=0
agora::base::IAgoraServiceEx::setAudioSessionConfigurationLLApiInternal
virtual int setAudioSessionConfigurationLLApiInternal(const AudioSessionConfiguration &config)=0
agora::base::IAgoraServiceEx::getConnectionCountsWithChannelId
virtual int getConnectionCountsWithChannelId(const char *channelId)=0
agora::base::IAgoraServiceEx::useStringUid
virtual bool useStringUid() const =0
agora::base::MEDIA_ENGINE_EMPTY
@ MEDIA_ENGINE_EMPTY
Definition: agora_service_i.h:61
agora::base::IAgoraServiceEx
Definition: agora_service_i.h:97
agora::base::IAgoraServiceEx::getDiagnosticService
virtual rtc::IDiagnosticService * getDiagnosticService() const =0
agora::base::IAgoraServiceEx::unregisterAgoraServiceObserver
virtual int unregisterAgoraServiceObserver(IAgoraServiceObserver *observer)=0
agora::base::MediaEngineType
MediaEngineType
Definition: agora_service_i.h:53
agora::base::IAgoraServiceEx::createScreenCaptureVideoTrackLLApiInternal
virtual agora_refptr< rtc::ILocalVideoTrackEx > createScreenCaptureVideoTrackLLApiInternal(agora_refptr< rtc::IScreenCapturer > screen, const char *id)=0
agora::rtc::BitrateConstraints
Definition: bitrate_constraints.h:20
agora::base::IAgoraServiceEx::createCustomVideoTrackLLApiInternal
virtual agora_refptr< rtc::ILocalVideoTrackEx > createCustomVideoTrackLLApiInternal(agora_refptr< rtc::IVideoEncodedImageSender > videoSource, const rtc::SenderOptions &options, const char *id=nullptr)=0
agora::base::IAgoraServiceEx::createCustomAudioTrackLLApiInternal
virtual agora_refptr< rtc::ILocalAudioTrackEx > createCustomAudioTrackLLApiInternal(agora_refptr< rtc::IAudioPcmDataSender > audioSource)=0
agora::rtc::BitrateConstraints::max_bitrate_bps
int max_bitrate_bps
Definition: bitrate_constraints.h:23
agora::rtc::IAudioDeviceManagerObserver
Definition: NGIAgoraAudioDeviceManager.h:91
agora::rtc::AudioPcmDataInfo
Definition: AgoraBase.h:1520
agora::base::IAgoraServiceEx::createSyncClientLLApiInternal
virtual agora_refptr< base::ISyncClientEx > createSyncClientLLApiInternal(const SyncConfig &config)=0
agora::base::IAgoraServiceEx::createRtcConnectionEx
virtual agora_refptr< rtc::IRtcConnectionEx > createRtcConnectionEx(const rtc::RtcConnectionConfigurationEx &cfg)=0
agora::rtc::RtcConnectionConfiguration
Definition: NGIAgoraRtcConnection.h:90
agora::base::IAgoraServiceEx::createMediaPlayer
virtual aosl_ref_t createMediaPlayer(media::base::MEDIA_PLAYER_SOURCE_TYPE type)=0
agora::base::IAgoraServiceEx::createMediaPlayerAudioTrackLLApiInternal
virtual agora_refptr< rtc::ILocalAudioTrackEx > createMediaPlayerAudioTrackLLApiInternal(agora_refptr< rtc::IMediaPlayerSource > playerSource)=0
agora::base::AgoraServiceConfigEx::dataDir
const char * dataDir
Definition: agora_service_i.h:74
agora::base::IAgoraServiceEx::unregisterServiceEventObserver
virtual int unregisterServiceEventObserver(IServiceObserver *observer)=0
agora::base::IAgoraServiceEx::enableExtensionLLApiInternal
virtual int enableExtensionLLApiInternal(const char *provider_name, const char *extension_name, const char *track_id, bool auto_enable_on_track)=0
agora::base::IAgoraServiceEx::registerLocalUserAccount
virtual int registerLocalUserAccount(const char *appId, const char *userAccount)=0
agora::base::IAgoraServiceEx::destroyMediaPlayer
virtual int destroyMediaPlayer(aosl_ref_t ref_id)=0
agora::rtc::IRtcConnection
Definition: NGIAgoraRtcConnection.h:184
agora::base::IAgoraServiceEx::enableStringUid
virtual void enableStringUid(bool enabled)=0
agora::base::IAgoraServiceEx::createScreenCaptureVideoTrackLLApiInternal
virtual agora_refptr< rtc::ILocalVideoTrackEx > createScreenCaptureVideoTrackLLApiInternal(agora_refptr< rtc::IScreenCapturer2 > screen)=0
agora::base::MEDIA_ENGINE_UNKNOWN
@ MEDIA_ENGINE_UNKNOWN
Definition: agora_service_i.h:65
agora::base::IAgoraServiceEx::set_lite_initialized
virtual void set_lite_initialized(bool initialized)
Definition: agora_service_i.h:101
agora::media::CONTENT_INSPECT_CLOUD_TYPE
CONTENT_INSPECT_CLOUD_TYPE
Definition: content_inspect_i.h:35
agora::base::IAgoraServiceEx::getUidByUserAccount
virtual rtc::uid_t getUidByUserAccount(const std::string &app_id, const std::string &user_account) const =0
agora::rtc::uid_t
unsigned int uid_t
Definition: AgoraMediaBase.h:28
agora::base::IAgoraServiceEx::createRtcConnectionLLApiInternal
virtual agora_refptr< rtc::IRtcConnection > createRtcConnectionLLApiInternal(const rtc::RtcConnectionConfiguration &cfg)=0
agora::base::IAgoraServiceEx::externalAudioSinkEnabled
virtual bool externalAudioSinkEnabled() const =0
agora::DataChannelConfig
Definition: NGIAgoraDataChannel.h:18
agora::base::IAgoraServiceEx::createCustomAudioTrackLLApiInternal
virtual agora_refptr< rtc::ILocalAudioTrackEx > createCustomAudioTrackLLApiInternal(agora_refptr< rtc::IAudioEncodedFrameSender > audioSource, TMixMode mixMode)=0
agora::base::AgoraServiceConfigEx::bitrateConstraints
rtc::BitrateConstraints bitrateConstraints
Definition: agora_service_i.h:76
agora::base::IAgoraServiceEx::setLogFilterLLApiInternal
virtual int setLogFilterLLApiInternal(unsigned int filters)=0
agora::base::AgoraServiceConfigEx::apSendRequest
bool apSendRequest
Definition: agora_service_i.h:77
agora::base::IAgoraServiceEx::setExternalRemoteEglContext
virtual int setExternalRemoteEglContext(void *eglContext)=0
rtc
Definition: video_node_i.h:28
agora::base::IAgoraServiceEx::createCustomAudioTrackLLApiInternal
virtual agora_refptr< rtc::ILocalAudioTrackEx > createCustomAudioTrackLLApiInternal(agora_refptr< rtc::IAudioPcmDataSender > audioSource, bool enableAec)=0
agora::base::IAgoraServiceEx::setLogFileLLApiInternal
virtual int setLogFileLLApiInternal(const char *filePath, unsigned int fileSize)=0
agora::base::IAgoraServiceEx::registerAgoraServiceObserver
virtual int registerAgoraServiceObserver(IAgoraServiceObserver *observer)=0
agora::base::IAgoraServiceEx::createFileUploadServiceEx
virtual agora_refptr< rtc::IFileUploaderService > createFileUploadServiceEx(agora_refptr< rtc::IRtcConnection > rtcConnection, const char *appId, media::CONTENT_INSPECT_CLOUD_TYPE cloudType)=0
agora::base::IAgoraServiceEx::getOneRtcConnection
virtual rtc::IRtcConnection * getOneRtcConnection(bool admBinded) const =0