10#import <Foundation/Foundation.h>
11#import <ZoomSDK/ZoomSDKErrors.h>
12#import <ZoomSDK/ZoomSDKRenderer.h>
18NS_ASSUME_NONNULL_BEGIN
70@protocol ZoomSDKAudioRawDataDelegate <NSObject>
82- (void)onOneWayAudioRawDataReceived:(
ZoomSDKAudioRawData*_Nullable)data nodeID:(
unsigned int)nodeID DEPRECATED_MSG_ATTRIBUTE("Use -onOneWayAudioRawDataReceived: userID: instead");
88- (void)onOneWayAudioRawDataReceived:(
ZoomSDKAudioRawData*_Nullable)data userID:(
unsigned int)userID;
93- (void)onShareAudioRawDataReceived:(
ZoomSDKAudioRawData*_Nullable)data DEPRECATED_MSG_ATTRIBUTE("Use -onShareAudioRawDataReceived: userID: instead");
99- (void)onShareAudioRawDataReceived:(
ZoomSDKAudioRawData*_Nullable)data userID:(
unsigned int)userID;
105- (void)onOneWayInterpreterAudioRawDataReceived:(
ZoomSDKAudioRawData*)data strLanguageName:(NSString*)languageName;
120@property(nonatomic, assign, nullable)id<ZoomSDKAudioRawDataDelegate> delegate;
125@property(nonatomic, assign)BOOL audioWithInterpreters;
ZoomSDKError
Enumeration of common errors of SDK.
Helper to subscribe or unsubscribe audio raw data.
id< ZoomSDKAudioRawDataDelegate > _delegate
Represents audio raw data received from the SDK.
int releaseData()
Release the object, if you has add ref, remeber to call this api to release when you wantn't to use t...
unsigned int getChannelNum()
Get the channel number of this data.
char *_Nullable getBuffer()
Get the buffer data.
BOOL canAddRef()
Get if this object can add ref.
long long getTimeStamp()
Get the timestamp of the raw data.
unsigned int getSampleRate()
Get the sample rate of this data.
BOOL addRef()
Add reference for this object, if you doesn't add ref, this object will be released when the callback...
unsigned int getBufferLen()
Get the buffer length of this data.
Configure external audio source as virtual microphone input.
Controller for managing raw data helpers and sources.
ZoomSDKAudioRawDataHelper * _audioRawDataHelper
ZoomSDKRawDataShareSourceController * _rawDataShareSourceHelper
ZoomSDKRawDataAudioSourceController * _rawDataAudioSourceHelper
ZoomSDKRawDataVideoSourceController * _rawDataVideoSourceHelper
Manage external source for share video and share audio in meeting.
Subscribe to raw video or share data and handle rendering.