-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathCoreAudio.swift
45 lines (45 loc) · 1.44 KB
/
CoreAudio.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
@exported import CoreAudio
struct UnsafeMutableAudioBufferListPointer {
init(_ p: UnsafeMutablePointer<AudioBufferList>)
var count: Int {
get {}
nonmutating set(newValue) {}
}
var _audioBuffersPointer: UnsafeMutablePointer<AudioBuffer> {
get {}
}
var unsafePointer: UnsafePointer<AudioBufferList> {
get {}
}
var unsafeMutablePointer: UnsafeMutablePointer<AudioBufferList>
}
extension UnsafeMutableBufferPointer {
init(_ audioBuffer: AudioBuffer)
}
extension AudioBufferList {
static func sizeInBytes(maximumBuffers maximumBuffers: Int) -> Int
static func allocate(maximumBuffers maximumBuffers: Int) -> UnsafeMutableAudioBufferListPointer
}
extension AudioBuffer {
init<T>(_ typedBuffer: UnsafeMutableBufferPointer<T>, numberOfChannels: Int)
}
extension UnsafeMutableAudioBufferListPointer : MutableCollectionType, CollectionType, SequenceType, _CollectionDefaultsType, _CollectionGeneratorDefaultsType {
func generate() -> IndexingGenerator<UnsafeMutableAudioBufferListPointer>
var startIndex: Int {
get {}
}
var endIndex: Int {
get {}
}
subscript (index: Int) -> AudioBuffer {
get {}
nonmutating set(newValue) {}
}
typealias Index = Int
typealias _Element = AudioBuffer
typealias Generator = IndexingGenerator<UnsafeMutableAudioBufferListPointer>
typealias _prext_SubSlice = _prext_Slice<UnsafeMutableAudioBufferListPointer>
}
extension UnsafeBufferPointer {
init(_ audioBuffer: AudioBuffer)
}