mirror of
https://github.com/HaishinKit/HaishinKit.swift.git
synced 2026-06-06 20:17:36 +00:00
10 lines
277 B
Swift
10 lines
277 B
Swift
import AVFoundation
|
|
import Foundation
|
|
|
|
/// An object that apply an audio effect.
|
|
open class AudioEffect: NSObject {
|
|
/// Executes to apply an audio effect.
|
|
open func execute(_ buffer: UnsafeMutableAudioBufferListPointer?, format: AudioStreamBasicDescription?) {
|
|
}
|
|
}
|