Meeting SDK for iOS API Reference
Loading...
Searching...
No Matches
MobileRTCAudioRawData.h
Go to the documentation of this file.
1
6#import <Foundation/Foundation.h>
7
12@interface MobileRTCAudioRawData : NSObject
13
17@property (nonatomic, assign) char * _Nullable 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
Represents audio raw data received from the SDK.
NSInteger bufferLen
Audio buffer data lenth.
NSDate * timeStamp
TimeStamp of audio data.
NSInteger releaseRef()
Minus reference count.
BOOL canAddRef()
Can add reference count or not.
NSInteger sampleRate
Audio sampling rate.
NSInteger channelNum
Number of audio channels.
char *_Nullable buffer
Data pointer of audio buffer data.
BOOL addRef()
Add reference count.