├── .gitignore ├── LFLiveKit-ReplayKit.podspec ├── LFLiveKit-ReplayKit ├── LFLiveKit.h ├── LFLiveSession.h ├── LFLiveSession.m ├── Vendor │ └── pili-librtmp │ │ ├── amf.c │ │ ├── amf.h │ │ ├── bytes.h │ │ ├── dh.h │ │ ├── dhgroups.h │ │ ├── error.c │ │ ├── error.h │ │ ├── handshake.h │ │ ├── hashswf.c │ │ ├── http.h │ │ ├── log.c │ │ ├── log.h │ │ ├── parseurl.c │ │ ├── rtmp.c │ │ ├── rtmp.h │ │ └── rtmp_sys.h ├── coder │ ├── H264 │ │ ├── LFAVEncoder.h │ │ ├── LFAVEncoder.mm │ │ ├── LFMP4Atom.h │ │ ├── LFMP4Atom.m │ │ ├── LFNALUnit.cpp │ │ ├── LFNALUnit.h │ │ ├── LFVideoEncoder.h │ │ └── LFVideoEncoder.m │ ├── LFAudioEncoding.h │ ├── LFH264VideoEncoder.h │ ├── LFH264VideoEncoder.mm │ ├── LFHardwareAudioEncoder.h │ ├── LFHardwareAudioEncoder.m │ ├── LFHardwareVideoEncoder.h │ ├── LFHardwareVideoEncoder.m │ └── LFVideoEncoding.h ├── configuration │ ├── LFLiveAudioConfiguration.h │ ├── LFLiveAudioConfiguration.m │ ├── LFLiveVideoConfiguration.h │ └── LFLiveVideoConfiguration.m ├── objects │ ├── LFAudioFrame.h │ ├── LFAudioFrame.m │ ├── LFFrame.h │ ├── LFFrame.m │ ├── LFLiveDebug.h │ ├── LFLiveDebug.m │ ├── LFLiveStreamInfo.h │ ├── LFLiveStreamInfo.m │ ├── LFVideoFrame.h │ └── LFVideoFrame.m └── publish │ ├── LFStreamRTMPSocket.h │ ├── LFStreamRtmpSocket.m │ ├── LFStreamSocket.h │ ├── LFStreamingBuffer.h │ ├── LFStreamingBuffer.m │ ├── NSMutableArray+LFAdd.h │ └── NSMutableArray+LFAdd.m ├── LICENSE ├── README.md ├── _config.yml └── samples ├── Icon.png └── LFLiveKitDemo ├── LFLiveKitDemo.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── LFLiveKitDemo.xcworkspace └── contents.xcworkspacedata ├── LFLiveKitDemo ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── ViewController.h ├── ViewController.m └── main.m ├── Podfile ├── Podfile.lock ├── Pods ├── Headers │ ├── Private │ │ └── LFLiveKit-ReplayKit │ │ │ ├── LFAVEncoder.h │ │ │ ├── LFAudioEncoding.h │ │ │ ├── LFAudioFrame.h │ │ │ ├── LFFrame.h │ │ │ ├── LFH264VideoEncoder.h │ │ │ ├── LFHardwareAudioEncoder.h │ │ │ ├── LFHardwareVideoEncoder.h │ │ │ ├── LFLiveAudioConfiguration.h │ │ │ ├── LFLiveDebug.h │ │ │ ├── LFLiveKit.h │ │ │ ├── LFLiveSession.h │ │ │ ├── LFLiveStreamInfo.h │ │ │ ├── LFLiveVideoConfiguration.h │ │ │ ├── LFMP4Atom.h │ │ │ ├── LFNALUnit.h │ │ │ ├── LFStreamRTMPSocket.h │ │ │ ├── LFStreamSocket.h │ │ │ ├── LFStreamingBuffer.h │ │ │ ├── LFVideoEncoder.h │ │ │ ├── LFVideoEncoding.h │ │ │ ├── LFVideoFrame.h │ │ │ ├── NSMutableArray+LFAdd.h │ │ │ ├── amf.h │ │ │ ├── bytes.h │ │ │ ├── dh.h │ │ │ ├── dhgroups.h │ │ │ ├── error.h │ │ │ ├── handshake.h │ │ │ ├── http.h │ │ │ ├── log.h │ │ │ ├── rtmp.h │ │ │ └── rtmp_sys.h │ └── Public │ │ └── LFLiveKit-ReplayKit │ │ ├── LFAudioFrame.h │ │ ├── LFFrame.h │ │ ├── LFLiveAudioConfiguration.h │ │ ├── LFLiveDebug.h │ │ ├── LFLiveKit.h │ │ ├── LFLiveSession.h │ │ ├── LFLiveStreamInfo.h │ │ ├── LFLiveVideoConfiguration.h │ │ └── LFVideoFrame.h ├── Local Podspecs │ ├── LFLiveKit-Recoder.podspec.json │ ├── LFLiveKit-ReplayKit.podspec.json │ └── LFLiveKit.podspec.json ├── Manifest.lock ├── Pods.xcodeproj │ └── project.pbxproj └── Target Support Files │ ├── LFLiveKit-ReplayKit-iOS11.0 │ ├── LFLiveKit-ReplayKit-iOS11.0-dummy.m │ ├── LFLiveKit-ReplayKit-iOS11.0-prefix.pch │ └── LFLiveKit-ReplayKit-iOS11.0.xcconfig │ ├── LFLiveKit-ReplayKit-iOS8.0 │ ├── LFLiveKit-ReplayKit-iOS8.0-dummy.m │ ├── LFLiveKit-ReplayKit-iOS8.0-prefix.pch │ └── LFLiveKit-ReplayKit-iOS8.0.xcconfig │ ├── Pods-LFLiveKitDemo │ ├── Pods-LFLiveKitDemo-acknowledgements.markdown │ ├── Pods-LFLiveKitDemo-acknowledgements.plist │ ├── Pods-LFLiveKitDemo-dummy.m │ ├── Pods-LFLiveKitDemo.debug.xcconfig │ └── Pods-LFLiveKitDemo.release.xcconfig │ └── Pods-Recoder │ ├── Pods-Recoder-acknowledgements.markdown │ ├── Pods-Recoder-acknowledgements.plist │ ├── Pods-Recoder-dummy.m │ ├── Pods-Recoder.debug.xcconfig │ └── Pods-Recoder.release.xcconfig ├── Recoder ├── Info.plist ├── SampleHandler.h ├── SampleHandler.m ├── ZFUploadTool.h └── ZFUploadTool.m └── RecoderSetupUI ├── BroadcastSetupViewController.h ├── BroadcastSetupViewController.m └── Info.plist /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/.gitignore -------------------------------------------------------------------------------- /LFLiveKit-ReplayKit.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/LFLiveKit-ReplayKit.podspec -------------------------------------------------------------------------------- /LFLiveKit-ReplayKit/LFLiveKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/LFLiveKit-ReplayKit/LFLiveKit.h -------------------------------------------------------------------------------- /LFLiveKit-ReplayKit/LFLiveSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/LFLiveKit-ReplayKit/LFLiveSession.h -------------------------------------------------------------------------------- /LFLiveKit-ReplayKit/LFLiveSession.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/LFLiveKit-ReplayKit/LFLiveSession.m -------------------------------------------------------------------------------- /LFLiveKit-ReplayKit/Vendor/pili-librtmp/amf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/LFLiveKit-ReplayKit/Vendor/pili-librtmp/amf.c -------------------------------------------------------------------------------- /LFLiveKit-ReplayKit/Vendor/pili-librtmp/amf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/LFLiveKit-ReplayKit/Vendor/pili-librtmp/amf.h -------------------------------------------------------------------------------- /LFLiveKit-ReplayKit/Vendor/pili-librtmp/bytes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/LFLiveKit-ReplayKit/Vendor/pili-librtmp/bytes.h -------------------------------------------------------------------------------- /LFLiveKit-ReplayKit/Vendor/pili-librtmp/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/LFLiveKit-ReplayKit/Vendor/pili-librtmp/dh.h -------------------------------------------------------------------------------- /LFLiveKit-ReplayKit/Vendor/pili-librtmp/dhgroups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/LFLiveKit-ReplayKit/Vendor/pili-librtmp/dhgroups.h -------------------------------------------------------------------------------- /LFLiveKit-ReplayKit/Vendor/pili-librtmp/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/LFLiveKit-ReplayKit/Vendor/pili-librtmp/error.c -------------------------------------------------------------------------------- /LFLiveKit-ReplayKit/Vendor/pili-librtmp/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/LFLiveKit-ReplayKit/Vendor/pili-librtmp/error.h -------------------------------------------------------------------------------- /LFLiveKit-ReplayKit/Vendor/pili-librtmp/handshake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/LFLiveKit-ReplayKit/Vendor/pili-librtmp/handshake.h -------------------------------------------------------------------------------- /LFLiveKit-ReplayKit/Vendor/pili-librtmp/hashswf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/LFLiveKit-ReplayKit/Vendor/pili-librtmp/hashswf.c -------------------------------------------------------------------------------- /LFLiveKit-ReplayKit/Vendor/pili-librtmp/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/LFLiveKit-ReplayKit/Vendor/pili-librtmp/http.h -------------------------------------------------------------------------------- /LFLiveKit-ReplayKit/Vendor/pili-librtmp/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/LFLiveKit-ReplayKit/Vendor/pili-librtmp/log.c -------------------------------------------------------------------------------- /LFLiveKit-ReplayKit/Vendor/pili-librtmp/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/LFLiveKit-ReplayKit/Vendor/pili-librtmp/log.h -------------------------------------------------------------------------------- /LFLiveKit-ReplayKit/Vendor/pili-librtmp/parseurl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/LFLiveKit-ReplayKit/Vendor/pili-librtmp/parseurl.c -------------------------------------------------------------------------------- /LFLiveKit-ReplayKit/Vendor/pili-librtmp/rtmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/LFLiveKit-ReplayKit/Vendor/pili-librtmp/rtmp.c -------------------------------------------------------------------------------- /LFLiveKit-ReplayKit/Vendor/pili-librtmp/rtmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/LFLiveKit-ReplayKit/Vendor/pili-librtmp/rtmp.h -------------------------------------------------------------------------------- /LFLiveKit-ReplayKit/Vendor/pili-librtmp/rtmp_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/LFLiveKit-ReplayKit/Vendor/pili-librtmp/rtmp_sys.h -------------------------------------------------------------------------------- /LFLiveKit-ReplayKit/coder/H264/LFAVEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/LFLiveKit-ReplayKit/coder/H264/LFAVEncoder.h -------------------------------------------------------------------------------- /LFLiveKit-ReplayKit/coder/H264/LFAVEncoder.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/LFLiveKit-ReplayKit/coder/H264/LFAVEncoder.mm -------------------------------------------------------------------------------- /LFLiveKit-ReplayKit/coder/H264/LFMP4Atom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/LFLiveKit-ReplayKit/coder/H264/LFMP4Atom.h -------------------------------------------------------------------------------- /LFLiveKit-ReplayKit/coder/H264/LFMP4Atom.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/LFLiveKit-ReplayKit/coder/H264/LFMP4Atom.m -------------------------------------------------------------------------------- /LFLiveKit-ReplayKit/coder/H264/LFNALUnit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/LFLiveKit-ReplayKit/coder/H264/LFNALUnit.cpp -------------------------------------------------------------------------------- /LFLiveKit-ReplayKit/coder/H264/LFNALUnit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/LFLiveKit-ReplayKit/coder/H264/LFNALUnit.h -------------------------------------------------------------------------------- /LFLiveKit-ReplayKit/coder/H264/LFVideoEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/LFLiveKit-ReplayKit/coder/H264/LFVideoEncoder.h -------------------------------------------------------------------------------- /LFLiveKit-ReplayKit/coder/H264/LFVideoEncoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/LFLiveKit-ReplayKit/coder/H264/LFVideoEncoder.m -------------------------------------------------------------------------------- /LFLiveKit-ReplayKit/coder/LFAudioEncoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/LFLiveKit-ReplayKit/coder/LFAudioEncoding.h -------------------------------------------------------------------------------- /LFLiveKit-ReplayKit/coder/LFH264VideoEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/LFLiveKit-ReplayKit/coder/LFH264VideoEncoder.h -------------------------------------------------------------------------------- /LFLiveKit-ReplayKit/coder/LFH264VideoEncoder.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/LFLiveKit-ReplayKit/coder/LFH264VideoEncoder.mm -------------------------------------------------------------------------------- /LFLiveKit-ReplayKit/coder/LFHardwareAudioEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/LFLiveKit-ReplayKit/coder/LFHardwareAudioEncoder.h -------------------------------------------------------------------------------- /LFLiveKit-ReplayKit/coder/LFHardwareAudioEncoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/LFLiveKit-ReplayKit/coder/LFHardwareAudioEncoder.m -------------------------------------------------------------------------------- /LFLiveKit-ReplayKit/coder/LFHardwareVideoEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/LFLiveKit-ReplayKit/coder/LFHardwareVideoEncoder.h -------------------------------------------------------------------------------- /LFLiveKit-ReplayKit/coder/LFHardwareVideoEncoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/LFLiveKit-ReplayKit/coder/LFHardwareVideoEncoder.m -------------------------------------------------------------------------------- /LFLiveKit-ReplayKit/coder/LFVideoEncoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/LFLiveKit-ReplayKit/coder/LFVideoEncoding.h -------------------------------------------------------------------------------- /LFLiveKit-ReplayKit/configuration/LFLiveAudioConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/LFLiveKit-ReplayKit/configuration/LFLiveAudioConfiguration.h -------------------------------------------------------------------------------- /LFLiveKit-ReplayKit/configuration/LFLiveAudioConfiguration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/LFLiveKit-ReplayKit/configuration/LFLiveAudioConfiguration.m -------------------------------------------------------------------------------- /LFLiveKit-ReplayKit/configuration/LFLiveVideoConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/LFLiveKit-ReplayKit/configuration/LFLiveVideoConfiguration.h -------------------------------------------------------------------------------- /LFLiveKit-ReplayKit/configuration/LFLiveVideoConfiguration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/LFLiveKit-ReplayKit/configuration/LFLiveVideoConfiguration.m -------------------------------------------------------------------------------- /LFLiveKit-ReplayKit/objects/LFAudioFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/LFLiveKit-ReplayKit/objects/LFAudioFrame.h -------------------------------------------------------------------------------- /LFLiveKit-ReplayKit/objects/LFAudioFrame.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/LFLiveKit-ReplayKit/objects/LFAudioFrame.m -------------------------------------------------------------------------------- /LFLiveKit-ReplayKit/objects/LFFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/LFLiveKit-ReplayKit/objects/LFFrame.h -------------------------------------------------------------------------------- /LFLiveKit-ReplayKit/objects/LFFrame.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/LFLiveKit-ReplayKit/objects/LFFrame.m -------------------------------------------------------------------------------- /LFLiveKit-ReplayKit/objects/LFLiveDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/LFLiveKit-ReplayKit/objects/LFLiveDebug.h -------------------------------------------------------------------------------- /LFLiveKit-ReplayKit/objects/LFLiveDebug.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/LFLiveKit-ReplayKit/objects/LFLiveDebug.m -------------------------------------------------------------------------------- /LFLiveKit-ReplayKit/objects/LFLiveStreamInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/LFLiveKit-ReplayKit/objects/LFLiveStreamInfo.h -------------------------------------------------------------------------------- /LFLiveKit-ReplayKit/objects/LFLiveStreamInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/LFLiveKit-ReplayKit/objects/LFLiveStreamInfo.m -------------------------------------------------------------------------------- /LFLiveKit-ReplayKit/objects/LFVideoFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/LFLiveKit-ReplayKit/objects/LFVideoFrame.h -------------------------------------------------------------------------------- /LFLiveKit-ReplayKit/objects/LFVideoFrame.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/LFLiveKit-ReplayKit/objects/LFVideoFrame.m -------------------------------------------------------------------------------- /LFLiveKit-ReplayKit/publish/LFStreamRTMPSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/LFLiveKit-ReplayKit/publish/LFStreamRTMPSocket.h -------------------------------------------------------------------------------- /LFLiveKit-ReplayKit/publish/LFStreamRtmpSocket.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/LFLiveKit-ReplayKit/publish/LFStreamRtmpSocket.m -------------------------------------------------------------------------------- /LFLiveKit-ReplayKit/publish/LFStreamSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/LFLiveKit-ReplayKit/publish/LFStreamSocket.h -------------------------------------------------------------------------------- /LFLiveKit-ReplayKit/publish/LFStreamingBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/LFLiveKit-ReplayKit/publish/LFStreamingBuffer.h -------------------------------------------------------------------------------- /LFLiveKit-ReplayKit/publish/LFStreamingBuffer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/LFLiveKit-ReplayKit/publish/LFStreamingBuffer.m -------------------------------------------------------------------------------- /LFLiveKit-ReplayKit/publish/NSMutableArray+LFAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/LFLiveKit-ReplayKit/publish/NSMutableArray+LFAdd.h -------------------------------------------------------------------------------- /LFLiveKit-ReplayKit/publish/NSMutableArray+LFAdd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/LFLiveKit-ReplayKit/publish/NSMutableArray+LFAdd.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/_config.yml -------------------------------------------------------------------------------- /samples/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/samples/Icon.png -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/LFLiveKitDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/samples/LFLiveKitDemo/LFLiveKitDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/LFLiveKitDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/samples/LFLiveKitDemo/LFLiveKitDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/LFLiveKitDemo.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/samples/LFLiveKitDemo/LFLiveKitDemo.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/LFLiveKitDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/samples/LFLiveKitDemo/LFLiveKitDemo/AppDelegate.h -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/LFLiveKitDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/samples/LFLiveKitDemo/LFLiveKitDemo/AppDelegate.m -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/LFLiveKitDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/samples/LFLiveKitDemo/LFLiveKitDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/LFLiveKitDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/samples/LFLiveKitDemo/LFLiveKitDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/LFLiveKitDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/samples/LFLiveKitDemo/LFLiveKitDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/LFLiveKitDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/samples/LFLiveKitDemo/LFLiveKitDemo/Info.plist -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/LFLiveKitDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/samples/LFLiveKitDemo/LFLiveKitDemo/ViewController.h -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/LFLiveKitDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/samples/LFLiveKitDemo/LFLiveKitDemo/ViewController.m -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/LFLiveKitDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/samples/LFLiveKitDemo/LFLiveKitDemo/main.m -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/samples/LFLiveKitDemo/Podfile -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/samples/LFLiveKitDemo/Podfile.lock -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/Pods/Headers/Private/LFLiveKit-ReplayKit/LFAVEncoder.h: -------------------------------------------------------------------------------- 1 | ../../../../../../LFLiveKit-ReplayKit/coder/H264/LFAVEncoder.h -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/Pods/Headers/Private/LFLiveKit-ReplayKit/LFAudioEncoding.h: -------------------------------------------------------------------------------- 1 | ../../../../../../LFLiveKit-ReplayKit/coder/LFAudioEncoding.h -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/Pods/Headers/Private/LFLiveKit-ReplayKit/LFAudioFrame.h: -------------------------------------------------------------------------------- 1 | ../../../../../../LFLiveKit-ReplayKit/objects/LFAudioFrame.h -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/Pods/Headers/Private/LFLiveKit-ReplayKit/LFFrame.h: -------------------------------------------------------------------------------- 1 | ../../../../../../LFLiveKit-ReplayKit/objects/LFFrame.h -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/Pods/Headers/Private/LFLiveKit-ReplayKit/LFH264VideoEncoder.h: -------------------------------------------------------------------------------- 1 | ../../../../../../LFLiveKit-ReplayKit/coder/LFH264VideoEncoder.h -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/Pods/Headers/Private/LFLiveKit-ReplayKit/LFHardwareAudioEncoder.h: -------------------------------------------------------------------------------- 1 | ../../../../../../LFLiveKit-ReplayKit/coder/LFHardwareAudioEncoder.h -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/Pods/Headers/Private/LFLiveKit-ReplayKit/LFHardwareVideoEncoder.h: -------------------------------------------------------------------------------- 1 | ../../../../../../LFLiveKit-ReplayKit/coder/LFHardwareVideoEncoder.h -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/Pods/Headers/Private/LFLiveKit-ReplayKit/LFLiveAudioConfiguration.h: -------------------------------------------------------------------------------- 1 | ../../../../../../LFLiveKit-ReplayKit/configuration/LFLiveAudioConfiguration.h -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/Pods/Headers/Private/LFLiveKit-ReplayKit/LFLiveDebug.h: -------------------------------------------------------------------------------- 1 | ../../../../../../LFLiveKit-ReplayKit/objects/LFLiveDebug.h -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/Pods/Headers/Private/LFLiveKit-ReplayKit/LFLiveKit.h: -------------------------------------------------------------------------------- 1 | ../../../../../../LFLiveKit-ReplayKit/LFLiveKit.h -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/Pods/Headers/Private/LFLiveKit-ReplayKit/LFLiveSession.h: -------------------------------------------------------------------------------- 1 | ../../../../../../LFLiveKit-ReplayKit/LFLiveSession.h -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/Pods/Headers/Private/LFLiveKit-ReplayKit/LFLiveStreamInfo.h: -------------------------------------------------------------------------------- 1 | ../../../../../../LFLiveKit-ReplayKit/objects/LFLiveStreamInfo.h -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/Pods/Headers/Private/LFLiveKit-ReplayKit/LFLiveVideoConfiguration.h: -------------------------------------------------------------------------------- 1 | ../../../../../../LFLiveKit-ReplayKit/configuration/LFLiveVideoConfiguration.h -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/Pods/Headers/Private/LFLiveKit-ReplayKit/LFMP4Atom.h: -------------------------------------------------------------------------------- 1 | ../../../../../../LFLiveKit-ReplayKit/coder/H264/LFMP4Atom.h -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/Pods/Headers/Private/LFLiveKit-ReplayKit/LFNALUnit.h: -------------------------------------------------------------------------------- 1 | ../../../../../../LFLiveKit-ReplayKit/coder/H264/LFNALUnit.h -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/Pods/Headers/Private/LFLiveKit-ReplayKit/LFStreamRTMPSocket.h: -------------------------------------------------------------------------------- 1 | ../../../../../../LFLiveKit-ReplayKit/publish/LFStreamRTMPSocket.h -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/Pods/Headers/Private/LFLiveKit-ReplayKit/LFStreamSocket.h: -------------------------------------------------------------------------------- 1 | ../../../../../../LFLiveKit-ReplayKit/publish/LFStreamSocket.h -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/Pods/Headers/Private/LFLiveKit-ReplayKit/LFStreamingBuffer.h: -------------------------------------------------------------------------------- 1 | ../../../../../../LFLiveKit-ReplayKit/publish/LFStreamingBuffer.h -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/Pods/Headers/Private/LFLiveKit-ReplayKit/LFVideoEncoder.h: -------------------------------------------------------------------------------- 1 | ../../../../../../LFLiveKit-ReplayKit/coder/H264/LFVideoEncoder.h -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/Pods/Headers/Private/LFLiveKit-ReplayKit/LFVideoEncoding.h: -------------------------------------------------------------------------------- 1 | ../../../../../../LFLiveKit-ReplayKit/coder/LFVideoEncoding.h -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/Pods/Headers/Private/LFLiveKit-ReplayKit/LFVideoFrame.h: -------------------------------------------------------------------------------- 1 | ../../../../../../LFLiveKit-ReplayKit/objects/LFVideoFrame.h -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/Pods/Headers/Private/LFLiveKit-ReplayKit/NSMutableArray+LFAdd.h: -------------------------------------------------------------------------------- 1 | ../../../../../../LFLiveKit-ReplayKit/publish/NSMutableArray+LFAdd.h -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/Pods/Headers/Private/LFLiveKit-ReplayKit/amf.h: -------------------------------------------------------------------------------- 1 | ../../../../../../LFLiveKit-ReplayKit/Vendor/pili-librtmp/amf.h -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/Pods/Headers/Private/LFLiveKit-ReplayKit/bytes.h: -------------------------------------------------------------------------------- 1 | ../../../../../../LFLiveKit-ReplayKit/Vendor/pili-librtmp/bytes.h -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/Pods/Headers/Private/LFLiveKit-ReplayKit/dh.h: -------------------------------------------------------------------------------- 1 | ../../../../../../LFLiveKit-ReplayKit/Vendor/pili-librtmp/dh.h -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/Pods/Headers/Private/LFLiveKit-ReplayKit/dhgroups.h: -------------------------------------------------------------------------------- 1 | ../../../../../../LFLiveKit-ReplayKit/Vendor/pili-librtmp/dhgroups.h -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/Pods/Headers/Private/LFLiveKit-ReplayKit/error.h: -------------------------------------------------------------------------------- 1 | ../../../../../../LFLiveKit-ReplayKit/Vendor/pili-librtmp/error.h -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/Pods/Headers/Private/LFLiveKit-ReplayKit/handshake.h: -------------------------------------------------------------------------------- 1 | ../../../../../../LFLiveKit-ReplayKit/Vendor/pili-librtmp/handshake.h -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/Pods/Headers/Private/LFLiveKit-ReplayKit/http.h: -------------------------------------------------------------------------------- 1 | ../../../../../../LFLiveKit-ReplayKit/Vendor/pili-librtmp/http.h -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/Pods/Headers/Private/LFLiveKit-ReplayKit/log.h: -------------------------------------------------------------------------------- 1 | ../../../../../../LFLiveKit-ReplayKit/Vendor/pili-librtmp/log.h -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/Pods/Headers/Private/LFLiveKit-ReplayKit/rtmp.h: -------------------------------------------------------------------------------- 1 | ../../../../../../LFLiveKit-ReplayKit/Vendor/pili-librtmp/rtmp.h -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/Pods/Headers/Private/LFLiveKit-ReplayKit/rtmp_sys.h: -------------------------------------------------------------------------------- 1 | ../../../../../../LFLiveKit-ReplayKit/Vendor/pili-librtmp/rtmp_sys.h -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/Pods/Headers/Public/LFLiveKit-ReplayKit/LFAudioFrame.h: -------------------------------------------------------------------------------- 1 | ../../../../../../LFLiveKit-ReplayKit/objects/LFAudioFrame.h -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/Pods/Headers/Public/LFLiveKit-ReplayKit/LFFrame.h: -------------------------------------------------------------------------------- 1 | ../../../../../../LFLiveKit-ReplayKit/objects/LFFrame.h -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/Pods/Headers/Public/LFLiveKit-ReplayKit/LFLiveAudioConfiguration.h: -------------------------------------------------------------------------------- 1 | ../../../../../../LFLiveKit-ReplayKit/configuration/LFLiveAudioConfiguration.h -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/Pods/Headers/Public/LFLiveKit-ReplayKit/LFLiveDebug.h: -------------------------------------------------------------------------------- 1 | ../../../../../../LFLiveKit-ReplayKit/objects/LFLiveDebug.h -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/Pods/Headers/Public/LFLiveKit-ReplayKit/LFLiveKit.h: -------------------------------------------------------------------------------- 1 | ../../../../../../LFLiveKit-ReplayKit/LFLiveKit.h -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/Pods/Headers/Public/LFLiveKit-ReplayKit/LFLiveSession.h: -------------------------------------------------------------------------------- 1 | ../../../../../../LFLiveKit-ReplayKit/LFLiveSession.h -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/Pods/Headers/Public/LFLiveKit-ReplayKit/LFLiveStreamInfo.h: -------------------------------------------------------------------------------- 1 | ../../../../../../LFLiveKit-ReplayKit/objects/LFLiveStreamInfo.h -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/Pods/Headers/Public/LFLiveKit-ReplayKit/LFLiveVideoConfiguration.h: -------------------------------------------------------------------------------- 1 | ../../../../../../LFLiveKit-ReplayKit/configuration/LFLiveVideoConfiguration.h -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/Pods/Headers/Public/LFLiveKit-ReplayKit/LFVideoFrame.h: -------------------------------------------------------------------------------- 1 | ../../../../../../LFLiveKit-ReplayKit/objects/LFVideoFrame.h -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/Pods/Local Podspecs/LFLiveKit-Recoder.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/samples/LFLiveKitDemo/Pods/Local Podspecs/LFLiveKit-Recoder.podspec.json -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/Pods/Local Podspecs/LFLiveKit-ReplayKit.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/samples/LFLiveKitDemo/Pods/Local Podspecs/LFLiveKit-ReplayKit.podspec.json -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/Pods/Local Podspecs/LFLiveKit.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/samples/LFLiveKitDemo/Pods/Local Podspecs/LFLiveKit.podspec.json -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/samples/LFLiveKitDemo/Pods/Manifest.lock -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/samples/LFLiveKitDemo/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/Pods/Target Support Files/LFLiveKit-ReplayKit-iOS11.0/LFLiveKit-ReplayKit-iOS11.0-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/samples/LFLiveKitDemo/Pods/Target Support Files/LFLiveKit-ReplayKit-iOS11.0/LFLiveKit-ReplayKit-iOS11.0-dummy.m -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/Pods/Target Support Files/LFLiveKit-ReplayKit-iOS11.0/LFLiveKit-ReplayKit-iOS11.0-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/samples/LFLiveKitDemo/Pods/Target Support Files/LFLiveKit-ReplayKit-iOS11.0/LFLiveKit-ReplayKit-iOS11.0-prefix.pch -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/Pods/Target Support Files/LFLiveKit-ReplayKit-iOS11.0/LFLiveKit-ReplayKit-iOS11.0.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/samples/LFLiveKitDemo/Pods/Target Support Files/LFLiveKit-ReplayKit-iOS11.0/LFLiveKit-ReplayKit-iOS11.0.xcconfig -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/Pods/Target Support Files/LFLiveKit-ReplayKit-iOS8.0/LFLiveKit-ReplayKit-iOS8.0-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/samples/LFLiveKitDemo/Pods/Target Support Files/LFLiveKit-ReplayKit-iOS8.0/LFLiveKit-ReplayKit-iOS8.0-dummy.m -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/Pods/Target Support Files/LFLiveKit-ReplayKit-iOS8.0/LFLiveKit-ReplayKit-iOS8.0-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/samples/LFLiveKitDemo/Pods/Target Support Files/LFLiveKit-ReplayKit-iOS8.0/LFLiveKit-ReplayKit-iOS8.0-prefix.pch -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/Pods/Target Support Files/LFLiveKit-ReplayKit-iOS8.0/LFLiveKit-ReplayKit-iOS8.0.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/samples/LFLiveKitDemo/Pods/Target Support Files/LFLiveKit-ReplayKit-iOS8.0/LFLiveKit-ReplayKit-iOS8.0.xcconfig -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/Pods/Target Support Files/Pods-LFLiveKitDemo/Pods-LFLiveKitDemo-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/samples/LFLiveKitDemo/Pods/Target Support Files/Pods-LFLiveKitDemo/Pods-LFLiveKitDemo-acknowledgements.markdown -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/Pods/Target Support Files/Pods-LFLiveKitDemo/Pods-LFLiveKitDemo-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/samples/LFLiveKitDemo/Pods/Target Support Files/Pods-LFLiveKitDemo/Pods-LFLiveKitDemo-acknowledgements.plist -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/Pods/Target Support Files/Pods-LFLiveKitDemo/Pods-LFLiveKitDemo-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/samples/LFLiveKitDemo/Pods/Target Support Files/Pods-LFLiveKitDemo/Pods-LFLiveKitDemo-dummy.m -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/Pods/Target Support Files/Pods-LFLiveKitDemo/Pods-LFLiveKitDemo.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/samples/LFLiveKitDemo/Pods/Target Support Files/Pods-LFLiveKitDemo/Pods-LFLiveKitDemo.debug.xcconfig -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/Pods/Target Support Files/Pods-LFLiveKitDemo/Pods-LFLiveKitDemo.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/samples/LFLiveKitDemo/Pods/Target Support Files/Pods-LFLiveKitDemo/Pods-LFLiveKitDemo.release.xcconfig -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/Pods/Target Support Files/Pods-Recoder/Pods-Recoder-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/samples/LFLiveKitDemo/Pods/Target Support Files/Pods-Recoder/Pods-Recoder-acknowledgements.markdown -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/Pods/Target Support Files/Pods-Recoder/Pods-Recoder-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/samples/LFLiveKitDemo/Pods/Target Support Files/Pods-Recoder/Pods-Recoder-acknowledgements.plist -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/Pods/Target Support Files/Pods-Recoder/Pods-Recoder-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/samples/LFLiveKitDemo/Pods/Target Support Files/Pods-Recoder/Pods-Recoder-dummy.m -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/Pods/Target Support Files/Pods-Recoder/Pods-Recoder.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/samples/LFLiveKitDemo/Pods/Target Support Files/Pods-Recoder/Pods-Recoder.debug.xcconfig -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/Pods/Target Support Files/Pods-Recoder/Pods-Recoder.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/samples/LFLiveKitDemo/Pods/Target Support Files/Pods-Recoder/Pods-Recoder.release.xcconfig -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/Recoder/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/samples/LFLiveKitDemo/Recoder/Info.plist -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/Recoder/SampleHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/samples/LFLiveKitDemo/Recoder/SampleHandler.h -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/Recoder/SampleHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/samples/LFLiveKitDemo/Recoder/SampleHandler.m -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/Recoder/ZFUploadTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/samples/LFLiveKitDemo/Recoder/ZFUploadTool.h -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/Recoder/ZFUploadTool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/samples/LFLiveKitDemo/Recoder/ZFUploadTool.m -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/RecoderSetupUI/BroadcastSetupViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/samples/LFLiveKitDemo/RecoderSetupUI/BroadcastSetupViewController.h -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/RecoderSetupUI/BroadcastSetupViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/samples/LFLiveKitDemo/RecoderSetupUI/BroadcastSetupViewController.m -------------------------------------------------------------------------------- /samples/LFLiveKitDemo/RecoderSetupUI/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luo-Kuang/LFLiveKit-ReplayKit/HEAD/samples/LFLiveKitDemo/RecoderSetupUI/Info.plist --------------------------------------------------------------------------------