session-ios/Signal/src/audio/incall_audio/RemoteIOBufferListWrapper.h

19 lines
481 B
Objective-C

#import <AVFoundation/AVFoundation.h>
#import <AudioToolbox/AudioToolbox.h>
#import <Foundation/Foundation.h>
/**
*
* RemoteIOBufferListWrapper is used by RemoteIOAudio to manage an audio buffer list.
*
**/
@interface RemoteIOBufferListWrapper : NSObject
@property (nonatomic, assign) NSUInteger sampleCount;
@property (nonatomic, readonly) AudioBufferList *audioBufferList;
+ (RemoteIOBufferListWrapper *)remoteIOBufferListWithMonoBufferSize:(NSUInteger)bufferSize;
@end