├── PitchDetectorExample.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── kevinmurphy.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── kevinmurphy.xcuserdatad │ └── xcschemes │ ├── PitchDetectorExample.xcscheme │ └── xcschememanagement.plist ├── PitchDetectorExample ├── AppDelegate.h ├── AppDelegate.m ├── AudioController.h ├── AudioController.m ├── FreqViewController.h ├── FreqViewController.m ├── PitchDetector.h ├── PitchDetector.m ├── PitchDetectorExample-Info.plist ├── PitchDetectorExample-Prefix.pch ├── TPCircularBuffer.c ├── TPCircularBuffer.h ├── en.lproj │ └── InfoPlist.strings └── main.m └── README.txt /PitchDetectorExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlypatrick/PitchDetectorExample/HEAD/PitchDetectorExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /PitchDetectorExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlypatrick/PitchDetectorExample/HEAD/PitchDetectorExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /PitchDetectorExample.xcodeproj/project.xcworkspace/xcuserdata/kevinmurphy.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlypatrick/PitchDetectorExample/HEAD/PitchDetectorExample.xcodeproj/project.xcworkspace/xcuserdata/kevinmurphy.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /PitchDetectorExample.xcodeproj/xcuserdata/kevinmurphy.xcuserdatad/xcschemes/PitchDetectorExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlypatrick/PitchDetectorExample/HEAD/PitchDetectorExample.xcodeproj/xcuserdata/kevinmurphy.xcuserdatad/xcschemes/PitchDetectorExample.xcscheme -------------------------------------------------------------------------------- /PitchDetectorExample.xcodeproj/xcuserdata/kevinmurphy.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlypatrick/PitchDetectorExample/HEAD/PitchDetectorExample.xcodeproj/xcuserdata/kevinmurphy.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /PitchDetectorExample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlypatrick/PitchDetectorExample/HEAD/PitchDetectorExample/AppDelegate.h -------------------------------------------------------------------------------- /PitchDetectorExample/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlypatrick/PitchDetectorExample/HEAD/PitchDetectorExample/AppDelegate.m -------------------------------------------------------------------------------- /PitchDetectorExample/AudioController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlypatrick/PitchDetectorExample/HEAD/PitchDetectorExample/AudioController.h -------------------------------------------------------------------------------- /PitchDetectorExample/AudioController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlypatrick/PitchDetectorExample/HEAD/PitchDetectorExample/AudioController.m -------------------------------------------------------------------------------- /PitchDetectorExample/FreqViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlypatrick/PitchDetectorExample/HEAD/PitchDetectorExample/FreqViewController.h -------------------------------------------------------------------------------- /PitchDetectorExample/FreqViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlypatrick/PitchDetectorExample/HEAD/PitchDetectorExample/FreqViewController.m -------------------------------------------------------------------------------- /PitchDetectorExample/PitchDetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlypatrick/PitchDetectorExample/HEAD/PitchDetectorExample/PitchDetector.h -------------------------------------------------------------------------------- /PitchDetectorExample/PitchDetector.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlypatrick/PitchDetectorExample/HEAD/PitchDetectorExample/PitchDetector.m -------------------------------------------------------------------------------- /PitchDetectorExample/PitchDetectorExample-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlypatrick/PitchDetectorExample/HEAD/PitchDetectorExample/PitchDetectorExample-Info.plist -------------------------------------------------------------------------------- /PitchDetectorExample/PitchDetectorExample-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlypatrick/PitchDetectorExample/HEAD/PitchDetectorExample/PitchDetectorExample-Prefix.pch -------------------------------------------------------------------------------- /PitchDetectorExample/TPCircularBuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlypatrick/PitchDetectorExample/HEAD/PitchDetectorExample/TPCircularBuffer.c -------------------------------------------------------------------------------- /PitchDetectorExample/TPCircularBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlypatrick/PitchDetectorExample/HEAD/PitchDetectorExample/TPCircularBuffer.h -------------------------------------------------------------------------------- /PitchDetectorExample/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /PitchDetectorExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlypatrick/PitchDetectorExample/HEAD/PitchDetectorExample/main.m -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlypatrick/PitchDetectorExample/HEAD/README.txt --------------------------------------------------------------------------------