iOS SDK API Reference
Loading...
Searching...
No Matches
MobileRTCAudioRawData.h
Go to the documentation of this file.
1//
2// MobileRTCAudioRawData.h
3// MobileRTC
4//
5// Created by Zoom Video Communications on 2019/8/6.
6// Copyright © 2019 Zoom Video Communications, Inc. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10
11@interface MobileRTCAudioRawData : NSObject
12
16@property (nonatomic, assign) char *buffer;
17
21@property (nonatomic, assign) NSInteger bufferLen;
22
26@property (nonatomic, assign) NSInteger sampleRate;
27
31@property (nonatomic, assign) NSInteger channelNum;
32
36- (BOOL)canAddRef;
37
41- (BOOL)addRef;
42
46- (NSInteger)releaseRef;
47
48@end
49
NSInteger bufferLen
Audio buffer data lenth.
NSInteger releaseRef()
Minus reference count.
BOOL canAddRef()
Can add reference count or not.
NSInteger sampleRate
Audio sampling rate.
char * buffer
Data pointer of audio buffer data.
NSInteger channelNum
Number of audio channels.
BOOL addRef()
Add reference count.