Video SDK for iOS API Reference
Loading...
Searching...
No Matches
ZoomVideoSDKAudioRawData.h
Go to the documentation of this file.
1
6#import <Foundation/Foundation.h>
7
12@interface ZoomVideoSDKAudioRawData : NSObject
13
17@property (nonatomic, assign, nullable) char *buffer;
18
22@property (nonatomic, assign) NSInteger bufferLen;
23
27@property (nonatomic, assign) NSInteger sampleRate;
28
32@property (nonatomic, assign) NSInteger channelNum;
33
37@property(nonatomic, strong, nullable) NSDate *timeStamp;
38
44- (BOOL)canAddRef;
45
51- (BOOL)addRef;
52
58- (NSInteger)releaseRef;
59
60@end
61
A class that contains the information of audio raw data.
NSInteger sampleRate
Gets the audio sampling rate.
BOOL addRef()
Increases reference count by 1. Adding a reference will ensure that the raw data buffer will not be r...
NSInteger bufferLen
Gets the audio buffer data length.
NSInteger channelNum
Gets the number of audio channels.
BOOL canAddRef()
Determines whether the reference count for the interface pointer can be increased.
char * buffer
Gets the pointer of audio buffer data.
NSDate * timeStamp
Gets the timestamp of audio data.
NSInteger releaseRef()
Decreases reference count by 1.