├── .gitignore ├── AudioUnit通话 ├── RecordAndPlay.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── RecordAndPlay │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── SKYAudioUnitManager.h │ ├── SKYAudioUnitManager.m │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── RecordAndPlayTests │ ├── Info.plist │ └── RecordAndPlayTests.m └── RecordAndPlayUITests │ ├── Info.plist │ └── RecordAndPlayUITests.m ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueTopsky/AudioUnit/HEAD/.gitignore -------------------------------------------------------------------------------- /AudioUnit通话/RecordAndPlay.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueTopsky/AudioUnit/HEAD/AudioUnit通话/RecordAndPlay.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AudioUnit通话/RecordAndPlay.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueTopsky/AudioUnit/HEAD/AudioUnit通话/RecordAndPlay.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /AudioUnit通话/RecordAndPlay/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueTopsky/AudioUnit/HEAD/AudioUnit通话/RecordAndPlay/AppDelegate.h -------------------------------------------------------------------------------- /AudioUnit通话/RecordAndPlay/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueTopsky/AudioUnit/HEAD/AudioUnit通话/RecordAndPlay/AppDelegate.m -------------------------------------------------------------------------------- /AudioUnit通话/RecordAndPlay/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueTopsky/AudioUnit/HEAD/AudioUnit通话/RecordAndPlay/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /AudioUnit通话/RecordAndPlay/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueTopsky/AudioUnit/HEAD/AudioUnit通话/RecordAndPlay/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /AudioUnit通话/RecordAndPlay/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueTopsky/AudioUnit/HEAD/AudioUnit通话/RecordAndPlay/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /AudioUnit通话/RecordAndPlay/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueTopsky/AudioUnit/HEAD/AudioUnit通话/RecordAndPlay/Info.plist -------------------------------------------------------------------------------- /AudioUnit通话/RecordAndPlay/SKYAudioUnitManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueTopsky/AudioUnit/HEAD/AudioUnit通话/RecordAndPlay/SKYAudioUnitManager.h -------------------------------------------------------------------------------- /AudioUnit通话/RecordAndPlay/SKYAudioUnitManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueTopsky/AudioUnit/HEAD/AudioUnit通话/RecordAndPlay/SKYAudioUnitManager.m -------------------------------------------------------------------------------- /AudioUnit通话/RecordAndPlay/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueTopsky/AudioUnit/HEAD/AudioUnit通话/RecordAndPlay/ViewController.h -------------------------------------------------------------------------------- /AudioUnit通话/RecordAndPlay/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueTopsky/AudioUnit/HEAD/AudioUnit通话/RecordAndPlay/ViewController.m -------------------------------------------------------------------------------- /AudioUnit通话/RecordAndPlay/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueTopsky/AudioUnit/HEAD/AudioUnit通话/RecordAndPlay/main.m -------------------------------------------------------------------------------- /AudioUnit通话/RecordAndPlayTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueTopsky/AudioUnit/HEAD/AudioUnit通话/RecordAndPlayTests/Info.plist -------------------------------------------------------------------------------- /AudioUnit通话/RecordAndPlayTests/RecordAndPlayTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueTopsky/AudioUnit/HEAD/AudioUnit通话/RecordAndPlayTests/RecordAndPlayTests.m -------------------------------------------------------------------------------- /AudioUnit通话/RecordAndPlayUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueTopsky/AudioUnit/HEAD/AudioUnit通话/RecordAndPlayUITests/Info.plist -------------------------------------------------------------------------------- /AudioUnit通话/RecordAndPlayUITests/RecordAndPlayUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueTopsky/AudioUnit/HEAD/AudioUnit通话/RecordAndPlayUITests/RecordAndPlayUITests.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueTopsky/AudioUnit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # AudioUnit 2 | 利用AudioUnit实现语音通话,里面包含了回声消除 3 | --------------------------------------------------------------------------------