gitextract_pi2h2uel/ ├── MLRecorder/ │ ├── AFNetwoking/ │ │ ├── AFNetworking/ │ │ │ ├── AFNetworking.h │ │ │ ├── NSURLConnection/ │ │ │ │ ├── AFHTTPRequestOperation.h │ │ │ │ ├── AFHTTPRequestOperation.m │ │ │ │ ├── AFHTTPRequestOperationManager.h │ │ │ │ ├── AFHTTPRequestOperationManager.m │ │ │ │ ├── AFURLConnectionOperation.h │ │ │ │ └── AFURLConnectionOperation.m │ │ │ ├── NSURLSession/ │ │ │ │ ├── AFHTTPSessionManager.h │ │ │ │ ├── AFHTTPSessionManager.m │ │ │ │ ├── AFURLSessionManager.h │ │ │ │ └── AFURLSessionManager.m │ │ │ ├── Reachability/ │ │ │ │ ├── AFNetworkReachabilityManager.h │ │ │ │ └── AFNetworkReachabilityManager.m │ │ │ ├── Security/ │ │ │ │ ├── AFSecurityPolicy.h │ │ │ │ └── AFSecurityPolicy.m │ │ │ └── Serialization/ │ │ │ ├── AFURLRequestSerialization.h │ │ │ ├── AFURLRequestSerialization.m │ │ │ ├── AFURLResponseSerialization.h │ │ │ └── AFURLResponseSerialization.m │ │ └── UIKit+AFNetworking/ │ │ ├── AFNetworkActivityIndicatorManager.h │ │ ├── AFNetworkActivityIndicatorManager.m │ │ ├── UIActivityIndicatorView+AFNetworking.h │ │ ├── UIActivityIndicatorView+AFNetworking.m │ │ ├── UIAlertView+AFNetworking.h │ │ ├── UIAlertView+AFNetworking.m │ │ ├── UIButton+AFNetworking.h │ │ ├── UIButton+AFNetworking.m │ │ ├── UIImageView+AFNetworking.h │ │ ├── UIImageView+AFNetworking.m │ │ ├── UIKit+AFNetworking.h │ │ ├── UIProgressView+AFNetworking.h │ │ ├── UIProgressView+AFNetworking.m │ │ ├── UIRefreshControl+AFNetworking.h │ │ ├── UIRefreshControl+AFNetworking.m │ │ ├── UIWebView+AFNetworking.h │ │ └── UIWebView+AFNetworking.m │ ├── AmrRecordInBufferWriter.h │ ├── AmrRecordInBufferWriter.m │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj/ │ │ └── Main.storyboard │ ├── CafRecordInBufferWriter.h │ ├── CafRecordInBufferWriter.m │ ├── Debug.h │ ├── Images.xcassets/ │ │ ├── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage/ │ │ └── Contents.json │ ├── MLAudioPlayer/ │ │ ├── AmrPlayerReader.h │ │ ├── AmrPlayerReader.m │ │ ├── MLAudioPlayer.h │ │ └── MLAudioPlayer.m │ ├── MLAudioRealTimePlayer/ │ │ ├── MLAudioRealTimePlayer.h │ │ └── MLAudioRealTimePlayer.m │ ├── MLAudioRecorder/ │ │ ├── AmrRecordWriter.h │ │ ├── AmrRecordWriter.m │ │ ├── CafRecordWriter.h │ │ ├── CafRecordWriter.m │ │ ├── MLAudioMeterObserver.h │ │ ├── MLAudioMeterObserver.m │ │ ├── MLAudioRecorder.h │ │ ├── MLAudioRecorder.m │ │ ├── Mp3RecordWriter.h │ │ ├── Mp3RecordWriter.m │ │ ├── amr_en_de/ │ │ │ ├── include/ │ │ │ │ ├── opencore-amrnb/ │ │ │ │ │ ├── interf_dec.h │ │ │ │ │ └── interf_enc.h │ │ │ │ └── opencore-amrwb/ │ │ │ │ ├── dec_if.h │ │ │ │ └── if_rom.h │ │ │ └── lib/ │ │ │ ├── libopencore-amrnb.a │ │ │ └── libopencore-amrwb.a │ │ └── mp3_en_de/ │ │ └── lame.framework/ │ │ ├── Headers/ │ │ │ └── lame.h │ │ └── lame │ ├── MLPlayVoiceButton/ │ │ ├── MLAmrPlayer.h │ │ ├── MLAmrPlayer.m │ │ ├── MLDataCache/ │ │ │ ├── MLDataCache.h │ │ │ └── MLDataCache.m │ │ ├── MLDataResponseSerializer/ │ │ │ ├── MLDataResponseSerializer.h │ │ │ └── MLDataResponseSerializer.m │ │ ├── MLPlayVoiceButton.h │ │ └── MLPlayVoiceButton.m │ ├── MLRecorder-Info.plist │ ├── MLRecorder-Prefix.pch │ ├── PlayNetworkVoiceViewController.h │ ├── PlayNetworkVoiceViewController.m │ ├── RealTimeViewController.h │ ├── RealTimeViewController.m │ ├── ViewController.h │ ├── ViewController.m │ ├── en.lproj/ │ │ └── InfoPlist.strings │ ├── main.m │ ├── test.amr │ └── test2.amr ├── MLRecorder.xcodeproj/ │ ├── project.pbxproj │ ├── project.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata/ │ │ └── molon.xcuserdatad/ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata/ │ └── molon.xcuserdatad/ │ └── xcschemes/ │ ├── MLRecorder.xcscheme │ └── xcschememanagement.plist ├── MLRecorderTests/ │ ├── MLRecorderTests-Info.plist │ ├── MLRecorderTests.m │ └── en.lproj/ │ └── InfoPlist.strings ├── README.md ├── record1.amr └── record2.amr