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
43- (BOOL)canAddRef;
44
49- (BOOL)addRef;
50
55- (NSInteger)releaseRef;
56
57@end
58
A Class contains the information of audio raw data.
NSInteger sampleRate
Audio sampling rate.
BOOL addRef()
Increase reference count by 1. Adding a reference will ensure that the raw data buffer will not be re...
NSInteger bufferLen
Audio buffer data length.
NSInteger channelNum
Number of audio channels.
BOOL canAddRef()
Determine if the reference count for the interface pointer can be increased.
char * buffer
Pointer of audio buffer data.
NSDate * timeStamp
TimeStamp of audio data.
NSInteger releaseRef()
Decrease reference count by 1.