mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-04 15:05:36 +00:00
21 lines
461 B
Objective-C
21 lines
461 B
Objective-C
//
|
|
// AudioQueue.h
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 14/01/2016.
|
|
// Copyright © 2016 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface AudioQueue : NSObject
|
|
|
|
- (instancetype)initWithSamplingRate:(Float64)samplingRate;
|
|
- (void)enqueueAudioBuffer:(const int16_t *)buffer numberOfSamples:(size_t)lengthInSamples;
|
|
|
|
@property (nonatomic, readonly) Float64 samplingRate;
|
|
|
|
+ (Float64)preferredSamplingRate;
|
|
|
|
@end
|