├── .gitignore ├── APIDiffs ├── api-diffs-1.0.0.md ├── api-diffs-1.0.1.md ├── api-diffs-1.0.2.md ├── api-diffs-1.0.3.md ├── api-diffs-1.1.0.md ├── api-diffs-1.1.1.md ├── api-diffs-1.1.2.md ├── api-diffs-1.1.3.md ├── api-diffs-1.1.4.md ├── api-diffs-1.1.5.md ├── api-diffs-1.1.6.md ├── api-diffs-1.2.0.md ├── api-diffs-1.2.1.md ├── api-diffs-1.2.2.md ├── api-diffs-1.2.3.md ├── api-diffs-1.2.4.md └── api-diffs-1.2.5.md ├── Example ├── PLStreamingKit.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── PLStreamingKit-Example.xcscheme ├── PLStreamingKit.xcworkspace │ └── contents.xcworkspacedata ├── PLStreamingKit │ ├── Base.lproj │ │ ├── Launch Screen.storyboard │ │ └── Main_iPhone.storyboard │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── PLAppDelegate.h │ ├── PLAppDelegate.m │ ├── PLCameraStreamingKit │ │ ├── PLAudioCaptureConfiguration.h │ │ ├── PLAudioCaptureConfiguration.m │ │ ├── PLCameraFilter.h │ │ ├── PLCameraFilter.m │ │ ├── PLCameraSource.h │ │ ├── PLCameraSource.m │ │ ├── PLCameraStreamingKit.h │ │ ├── PLCameraStreamingSession.h │ │ ├── PLCameraStreamingSession.m │ │ ├── PLGPUImageCameraFilter.h │ │ ├── PLGPUImageCameraFilter.m │ │ ├── PLMicrophoneSource.h │ │ ├── PLMicrophoneSource.m │ │ ├── PLSourceAccessProtocol.h │ │ ├── PLVideoCaptureConfiguration.h │ │ └── PLVideoCaptureConfiguration.m │ ├── PLStreamingKit-Info.plist │ ├── PLStreamingKit-Prefix.pch │ ├── PLViewController.h │ ├── PLViewController.m │ ├── Reachability.h │ ├── Reachability.m │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m ├── Podfile ├── Podfile.lock └── Pods │ ├── GPUImage │ ├── License.txt │ ├── README.md │ └── framework │ │ ├── Resources │ │ ├── lookup.png │ │ ├── lookup_amatorka.png │ │ ├── lookup_miss_etikate.png │ │ ├── lookup_soft_elegance_1.png │ │ └── lookup_soft_elegance_2.png │ │ └── Source │ │ ├── GLProgram.h │ │ ├── GLProgram.m │ │ ├── GPUImage.h │ │ ├── GPUImage3x3ConvolutionFilter.h │ │ ├── GPUImage3x3ConvolutionFilter.m │ │ ├── GPUImage3x3TextureSamplingFilter.h │ │ ├── GPUImage3x3TextureSamplingFilter.m │ │ ├── GPUImageAdaptiveThresholdFilter.h │ │ ├── GPUImageAdaptiveThresholdFilter.m │ │ ├── GPUImageAddBlendFilter.h │ │ ├── GPUImageAddBlendFilter.m │ │ ├── GPUImageAlphaBlendFilter.h │ │ ├── GPUImageAlphaBlendFilter.m │ │ ├── GPUImageAmatorkaFilter.h │ │ ├── GPUImageAmatorkaFilter.m │ │ ├── GPUImageAverageColor.h │ │ ├── GPUImageAverageColor.m │ │ ├── GPUImageAverageLuminanceThresholdFilter.h │ │ ├── GPUImageAverageLuminanceThresholdFilter.m │ │ ├── GPUImageBilateralFilter.h │ │ ├── GPUImageBilateralFilter.m │ │ ├── GPUImageBoxBlurFilter.h │ │ ├── GPUImageBoxBlurFilter.m │ │ ├── GPUImageBrightnessFilter.h │ │ ├── GPUImageBrightnessFilter.m │ │ ├── GPUImageBuffer.h │ │ ├── GPUImageBuffer.m │ │ ├── GPUImageBulgeDistortionFilter.h │ │ ├── GPUImageBulgeDistortionFilter.m │ │ ├── GPUImageCGAColorspaceFilter.h │ │ ├── GPUImageCGAColorspaceFilter.m │ │ ├── GPUImageCannyEdgeDetectionFilter.h │ │ ├── GPUImageCannyEdgeDetectionFilter.m │ │ ├── GPUImageChromaKeyBlendFilter.h │ │ ├── GPUImageChromaKeyBlendFilter.m │ │ ├── GPUImageChromaKeyFilter.h │ │ ├── GPUImageChromaKeyFilter.m │ │ ├── GPUImageClosingFilter.h │ │ ├── GPUImageClosingFilter.m │ │ ├── GPUImageColorBlendFilter.h │ │ ├── GPUImageColorBlendFilter.m │ │ ├── GPUImageColorBurnBlendFilter.h │ │ ├── GPUImageColorBurnBlendFilter.m │ │ ├── GPUImageColorDodgeBlendFilter.h │ │ ├── GPUImageColorDodgeBlendFilter.m │ │ ├── GPUImageColorInvertFilter.h │ │ ├── GPUImageColorInvertFilter.m │ │ ├── GPUImageColorMatrixFilter.h │ │ ├── GPUImageColorMatrixFilter.m │ │ ├── GPUImageColorPackingFilter.h │ │ ├── GPUImageColorPackingFilter.m │ │ ├── GPUImageContrastFilter.h │ │ ├── GPUImageContrastFilter.m │ │ ├── GPUImageCropFilter.h │ │ ├── GPUImageCropFilter.m │ │ ├── GPUImageCrosshairGenerator.h │ │ ├── GPUImageCrosshairGenerator.m │ │ ├── GPUImageCrosshatchFilter.h │ │ ├── GPUImageCrosshatchFilter.m │ │ ├── GPUImageDarkenBlendFilter.h │ │ ├── GPUImageDarkenBlendFilter.m │ │ ├── GPUImageDifferenceBlendFilter.h │ │ ├── GPUImageDifferenceBlendFilter.m │ │ ├── GPUImageDilationFilter.h │ │ ├── GPUImageDilationFilter.m │ │ ├── GPUImageDirectionalNonMaximumSuppressionFilter.h │ │ ├── GPUImageDirectionalNonMaximumSuppressionFilter.m │ │ ├── GPUImageDirectionalSobelEdgeDetectionFilter.h │ │ ├── GPUImageDirectionalSobelEdgeDetectionFilter.m │ │ ├── GPUImageDissolveBlendFilter.h │ │ ├── GPUImageDissolveBlendFilter.m │ │ ├── GPUImageDivideBlendFilter.h │ │ ├── GPUImageDivideBlendFilter.m │ │ ├── GPUImageEmbossFilter.h │ │ ├── GPUImageEmbossFilter.m │ │ ├── GPUImageErosionFilter.h │ │ ├── GPUImageErosionFilter.m │ │ ├── GPUImageExclusionBlendFilter.h │ │ ├── GPUImageExclusionBlendFilter.m │ │ ├── GPUImageExposureFilter.h │ │ ├── GPUImageExposureFilter.m │ │ ├── GPUImageFASTCornerDetectionFilter.h │ │ ├── GPUImageFASTCornerDetectionFilter.m │ │ ├── GPUImageFalseColorFilter.h │ │ ├── GPUImageFalseColorFilter.m │ │ ├── GPUImageFilter.h │ │ ├── GPUImageFilter.m │ │ ├── GPUImageFilterGroup.h │ │ ├── GPUImageFilterGroup.m │ │ ├── GPUImageFilterPipeline.h │ │ ├── GPUImageFilterPipeline.m │ │ ├── GPUImageFramebuffer.h │ │ ├── GPUImageFramebuffer.m │ │ ├── GPUImageFramebufferCache.h │ │ ├── GPUImageFramebufferCache.m │ │ ├── GPUImageGammaFilter.h │ │ ├── GPUImageGammaFilter.m │ │ ├── GPUImageGaussianBlurFilter.h │ │ ├── GPUImageGaussianBlurFilter.m │ │ ├── GPUImageGaussianBlurPositionFilter.h │ │ ├── GPUImageGaussianBlurPositionFilter.m │ │ ├── GPUImageGaussianSelectiveBlurFilter.h │ │ ├── GPUImageGaussianSelectiveBlurFilter.m │ │ ├── GPUImageGlassSphereFilter.h │ │ ├── GPUImageGlassSphereFilter.m │ │ ├── GPUImageGrayscaleFilter.h │ │ ├── GPUImageGrayscaleFilter.m │ │ ├── GPUImageHSBFilter.h │ │ ├── GPUImageHSBFilter.m │ │ ├── GPUImageHalftoneFilter.h │ │ ├── GPUImageHalftoneFilter.m │ │ ├── GPUImageHardLightBlendFilter.h │ │ ├── GPUImageHardLightBlendFilter.m │ │ ├── GPUImageHarrisCornerDetectionFilter.h │ │ ├── GPUImageHarrisCornerDetectionFilter.m │ │ ├── GPUImageHazeFilter.h │ │ ├── GPUImageHazeFilter.m │ │ ├── GPUImageHighPassFilter.h │ │ ├── GPUImageHighPassFilter.m │ │ ├── GPUImageHighlightShadowFilter.h │ │ ├── GPUImageHighlightShadowFilter.m │ │ ├── GPUImageHistogramEqualizationFilter.h │ │ ├── GPUImageHistogramEqualizationFilter.m │ │ ├── GPUImageHistogramFilter.h │ │ ├── GPUImageHistogramFilter.m │ │ ├── GPUImageHistogramGenerator.h │ │ ├── GPUImageHistogramGenerator.m │ │ ├── GPUImageHoughTransformLineDetector.h │ │ ├── GPUImageHoughTransformLineDetector.m │ │ ├── GPUImageHueBlendFilter.h │ │ ├── GPUImageHueBlendFilter.m │ │ ├── GPUImageHueFilter.h │ │ ├── GPUImageHueFilter.m │ │ ├── GPUImageJFAVoronoiFilter.h │ │ ├── GPUImageJFAVoronoiFilter.m │ │ ├── GPUImageKuwaharaFilter.h │ │ ├── GPUImageKuwaharaFilter.m │ │ ├── GPUImageKuwaharaRadius3Filter.h │ │ ├── GPUImageKuwaharaRadius3Filter.m │ │ ├── GPUImageLanczosResamplingFilter.h │ │ ├── GPUImageLanczosResamplingFilter.m │ │ ├── GPUImageLaplacianFilter.h │ │ ├── GPUImageLaplacianFilter.m │ │ ├── GPUImageLevelsFilter.h │ │ ├── GPUImageLevelsFilter.m │ │ ├── GPUImageLightenBlendFilter.h │ │ ├── GPUImageLightenBlendFilter.m │ │ ├── GPUImageLineGenerator.h │ │ ├── GPUImageLineGenerator.m │ │ ├── GPUImageLinearBurnBlendFilter.h │ │ ├── GPUImageLinearBurnBlendFilter.m │ │ ├── GPUImageLocalBinaryPatternFilter.h │ │ ├── GPUImageLocalBinaryPatternFilter.m │ │ ├── GPUImageLookupFilter.h │ │ ├── GPUImageLookupFilter.m │ │ ├── GPUImageLowPassFilter.h │ │ ├── GPUImageLowPassFilter.m │ │ ├── GPUImageLuminanceRangeFilter.h │ │ ├── GPUImageLuminanceRangeFilter.m │ │ ├── GPUImageLuminanceThresholdFilter.h │ │ ├── GPUImageLuminanceThresholdFilter.m │ │ ├── GPUImageLuminosity.h │ │ ├── GPUImageLuminosity.m │ │ ├── GPUImageLuminosityBlendFilter.h │ │ ├── GPUImageLuminosityBlendFilter.m │ │ ├── GPUImageMaskFilter.h │ │ ├── GPUImageMaskFilter.m │ │ ├── GPUImageMedianFilter.h │ │ ├── GPUImageMedianFilter.m │ │ ├── GPUImageMissEtikateFilter.h │ │ ├── GPUImageMissEtikateFilter.m │ │ ├── GPUImageMonochromeFilter.h │ │ ├── GPUImageMonochromeFilter.m │ │ ├── GPUImageMosaicFilter.h │ │ ├── GPUImageMosaicFilter.m │ │ ├── GPUImageMotionBlurFilter.h │ │ ├── GPUImageMotionBlurFilter.m │ │ ├── GPUImageMotionDetector.h │ │ ├── GPUImageMotionDetector.m │ │ ├── GPUImageMovie.h │ │ ├── GPUImageMovie.m │ │ ├── GPUImageMovieComposition.h │ │ ├── GPUImageMovieComposition.m │ │ ├── GPUImageMultiplyBlendFilter.h │ │ ├── GPUImageMultiplyBlendFilter.m │ │ ├── GPUImageNobleCornerDetectionFilter.h │ │ ├── GPUImageNobleCornerDetectionFilter.m │ │ ├── GPUImageNonMaximumSuppressionFilter.h │ │ ├── GPUImageNonMaximumSuppressionFilter.m │ │ ├── GPUImageNormalBlendFilter.h │ │ ├── GPUImageNormalBlendFilter.m │ │ ├── GPUImageOpacityFilter.h │ │ ├── GPUImageOpacityFilter.m │ │ ├── GPUImageOpeningFilter.h │ │ ├── GPUImageOpeningFilter.m │ │ ├── GPUImageOutput.h │ │ ├── GPUImageOutput.m │ │ ├── GPUImageOverlayBlendFilter.h │ │ ├── GPUImageOverlayBlendFilter.m │ │ ├── GPUImageParallelCoordinateLineTransformFilter.h │ │ ├── GPUImageParallelCoordinateLineTransformFilter.m │ │ ├── GPUImagePerlinNoiseFilter.h │ │ ├── GPUImagePerlinNoiseFilter.m │ │ ├── GPUImagePinchDistortionFilter.h │ │ ├── GPUImagePinchDistortionFilter.m │ │ ├── GPUImagePixellateFilter.h │ │ ├── GPUImagePixellateFilter.m │ │ ├── GPUImagePixellatePositionFilter.h │ │ ├── GPUImagePixellatePositionFilter.m │ │ ├── GPUImagePoissonBlendFilter.h │ │ ├── GPUImagePoissonBlendFilter.m │ │ ├── GPUImagePolarPixellateFilter.h │ │ ├── GPUImagePolarPixellateFilter.m │ │ ├── GPUImagePolkaDotFilter.h │ │ ├── GPUImagePolkaDotFilter.m │ │ ├── GPUImagePosterizeFilter.h │ │ ├── GPUImagePosterizeFilter.m │ │ ├── GPUImagePrewittEdgeDetectionFilter.h │ │ ├── GPUImagePrewittEdgeDetectionFilter.m │ │ ├── GPUImageRGBClosingFilter.h │ │ ├── GPUImageRGBClosingFilter.m │ │ ├── GPUImageRGBDilationFilter.h │ │ ├── GPUImageRGBDilationFilter.m │ │ ├── GPUImageRGBErosionFilter.h │ │ ├── GPUImageRGBErosionFilter.m │ │ ├── GPUImageRGBFilter.h │ │ ├── GPUImageRGBFilter.m │ │ ├── GPUImageRGBOpeningFilter.h │ │ ├── GPUImageRGBOpeningFilter.m │ │ ├── GPUImageRawDataInput.h │ │ ├── GPUImageRawDataInput.m │ │ ├── GPUImageRawDataOutput.h │ │ ├── GPUImageRawDataOutput.m │ │ ├── GPUImageSaturationBlendFilter.h │ │ ├── GPUImageSaturationBlendFilter.m │ │ ├── GPUImageSaturationFilter.h │ │ ├── GPUImageSaturationFilter.m │ │ ├── GPUImageScreenBlendFilter.h │ │ ├── GPUImageScreenBlendFilter.m │ │ ├── GPUImageSepiaFilter.h │ │ ├── GPUImageSepiaFilter.m │ │ ├── GPUImageSharpenFilter.h │ │ ├── GPUImageSharpenFilter.m │ │ ├── GPUImageShiTomasiFeatureDetectionFilter.h │ │ ├── GPUImageShiTomasiFeatureDetectionFilter.m │ │ ├── GPUImageSingleComponentGaussianBlurFilter.h │ │ ├── GPUImageSingleComponentGaussianBlurFilter.m │ │ ├── GPUImageSketchFilter.h │ │ ├── GPUImageSketchFilter.m │ │ ├── GPUImageSmoothToonFilter.h │ │ ├── GPUImageSmoothToonFilter.m │ │ ├── GPUImageSobelEdgeDetectionFilter.h │ │ ├── GPUImageSobelEdgeDetectionFilter.m │ │ ├── GPUImageSoftEleganceFilter.h │ │ ├── GPUImageSoftEleganceFilter.m │ │ ├── GPUImageSoftLightBlendFilter.h │ │ ├── GPUImageSoftLightBlendFilter.m │ │ ├── GPUImageSolidColorGenerator.h │ │ ├── GPUImageSolidColorGenerator.m │ │ ├── GPUImageSourceOverBlendFilter.h │ │ ├── GPUImageSourceOverBlendFilter.m │ │ ├── GPUImageSphereRefractionFilter.h │ │ ├── GPUImageSphereRefractionFilter.m │ │ ├── GPUImageStillCamera.h │ │ ├── GPUImageStillCamera.m │ │ ├── GPUImageStretchDistortionFilter.h │ │ ├── GPUImageStretchDistortionFilter.m │ │ ├── GPUImageSubtractBlendFilter.h │ │ ├── GPUImageSubtractBlendFilter.m │ │ ├── GPUImageSwirlFilter.h │ │ ├── GPUImageSwirlFilter.m │ │ ├── GPUImageTextureInput.h │ │ ├── GPUImageTextureInput.m │ │ ├── GPUImageTextureOutput.h │ │ ├── GPUImageTextureOutput.m │ │ ├── GPUImageThreeInputFilter.h │ │ ├── GPUImageThreeInputFilter.m │ │ ├── GPUImageThresholdEdgeDetectionFilter.h │ │ ├── GPUImageThresholdEdgeDetectionFilter.m │ │ ├── GPUImageThresholdSketchFilter.h │ │ ├── GPUImageThresholdSketchFilter.m │ │ ├── GPUImageThresholdedNonMaximumSuppressionFilter.h │ │ ├── GPUImageThresholdedNonMaximumSuppressionFilter.m │ │ ├── GPUImageTiltShiftFilter.h │ │ ├── GPUImageTiltShiftFilter.m │ │ ├── GPUImageToneCurveFilter.h │ │ ├── GPUImageToneCurveFilter.m │ │ ├── GPUImageToonFilter.h │ │ ├── GPUImageToonFilter.m │ │ ├── GPUImageTransformFilter.h │ │ ├── GPUImageTransformFilter.m │ │ ├── GPUImageTwoInputCrossTextureSamplingFilter.h │ │ ├── GPUImageTwoInputCrossTextureSamplingFilter.m │ │ ├── GPUImageTwoInputFilter.h │ │ ├── GPUImageTwoInputFilter.m │ │ ├── GPUImageTwoPassFilter.h │ │ ├── GPUImageTwoPassFilter.m │ │ ├── GPUImageTwoPassTextureSamplingFilter.h │ │ ├── GPUImageTwoPassTextureSamplingFilter.m │ │ ├── GPUImageUIElement.h │ │ ├── GPUImageUIElement.m │ │ ├── GPUImageUnsharpMaskFilter.h │ │ ├── GPUImageUnsharpMaskFilter.m │ │ ├── GPUImageVideoCamera.h │ │ ├── GPUImageVideoCamera.m │ │ ├── GPUImageVignetteFilter.h │ │ ├── GPUImageVignetteFilter.m │ │ ├── GPUImageVoronoiConsumerFilter.h │ │ ├── GPUImageVoronoiConsumerFilter.m │ │ ├── GPUImageWeakPixelInclusionFilter.h │ │ ├── GPUImageWeakPixelInclusionFilter.m │ │ ├── GPUImageWhiteBalanceFilter.h │ │ ├── GPUImageWhiteBalanceFilter.m │ │ ├── GPUImageXYDerivativeFilter.h │ │ ├── GPUImageXYDerivativeFilter.m │ │ ├── GPUImageZoomBlurFilter.h │ │ ├── GPUImageZoomBlurFilter.m │ │ ├── GPUImageiOSBlurFilter.h │ │ ├── GPUImageiOSBlurFilter.m │ │ └── iOS │ │ ├── Framework │ │ └── GPUImageFramework.h │ │ ├── GPUImageContext.h │ │ ├── GPUImageContext.m │ │ ├── GPUImageMovieWriter.h │ │ ├── GPUImageMovieWriter.m │ │ ├── GPUImagePicture+TextureSubimage.h │ │ ├── GPUImagePicture+TextureSubimage.m │ │ ├── GPUImagePicture.h │ │ ├── GPUImagePicture.m │ │ ├── GPUImageView.h │ │ └── GPUImageView.m │ ├── HappyDNS │ ├── HappyDNS │ │ ├── Common │ │ │ ├── QNDnsManager.h │ │ │ ├── QNDnsManager.m │ │ │ ├── QNDomain.h │ │ │ ├── QNDomain.m │ │ │ ├── QNLruCache.h │ │ │ ├── QNLruCache.m │ │ │ ├── QNNetworkInfo.h │ │ │ ├── QNNetworkInfo.m │ │ │ ├── QNRecord.h │ │ │ ├── QNRecord.m │ │ │ └── QNResolverDelegate.h │ │ ├── HappyDNS.h │ │ ├── Http │ │ │ ├── QNDnspodEnterprise.h │ │ │ ├── QNDnspodEnterprise.m │ │ │ ├── QNDnspodFree.h │ │ │ └── QNDnspodFree.m │ │ ├── Local │ │ │ ├── QNHijackingDetectWrapper.h │ │ │ ├── QNHijackingDetectWrapper.m │ │ │ ├── QNHosts.h │ │ │ ├── QNHosts.m │ │ │ ├── QNResolvUtil.h │ │ │ ├── QNResolvUtil.m │ │ │ ├── QNResolver.h │ │ │ ├── QNResolver.m │ │ │ ├── QNTxtResolver.h │ │ │ └── QNTxtResolver.m │ │ └── Util │ │ │ ├── QNDes.h │ │ │ ├── QNDes.m │ │ │ ├── QNHex.h │ │ │ ├── QNHex.m │ │ │ ├── QNIP.h │ │ │ └── QNIP.m │ ├── LICENSE │ └── README.md │ ├── Headers │ ├── Private │ │ ├── GPUImage │ │ │ ├── GLProgram.h │ │ │ ├── GPUImage.h │ │ │ ├── GPUImage3x3ConvolutionFilter.h │ │ │ ├── GPUImage3x3TextureSamplingFilter.h │ │ │ ├── GPUImageAdaptiveThresholdFilter.h │ │ │ ├── GPUImageAddBlendFilter.h │ │ │ ├── GPUImageAlphaBlendFilter.h │ │ │ ├── GPUImageAmatorkaFilter.h │ │ │ ├── GPUImageAverageColor.h │ │ │ ├── GPUImageAverageLuminanceThresholdFilter.h │ │ │ ├── GPUImageBilateralFilter.h │ │ │ ├── GPUImageBoxBlurFilter.h │ │ │ ├── GPUImageBrightnessFilter.h │ │ │ ├── GPUImageBuffer.h │ │ │ ├── GPUImageBulgeDistortionFilter.h │ │ │ ├── GPUImageCGAColorspaceFilter.h │ │ │ ├── GPUImageCannyEdgeDetectionFilter.h │ │ │ ├── GPUImageChromaKeyBlendFilter.h │ │ │ ├── GPUImageChromaKeyFilter.h │ │ │ ├── GPUImageClosingFilter.h │ │ │ ├── GPUImageColorBlendFilter.h │ │ │ ├── GPUImageColorBurnBlendFilter.h │ │ │ ├── GPUImageColorDodgeBlendFilter.h │ │ │ ├── GPUImageColorInvertFilter.h │ │ │ ├── GPUImageColorMatrixFilter.h │ │ │ ├── GPUImageColorPackingFilter.h │ │ │ ├── GPUImageContext.h │ │ │ ├── GPUImageContrastFilter.h │ │ │ ├── GPUImageCropFilter.h │ │ │ ├── GPUImageCrosshairGenerator.h │ │ │ ├── GPUImageCrosshatchFilter.h │ │ │ ├── GPUImageDarkenBlendFilter.h │ │ │ ├── GPUImageDifferenceBlendFilter.h │ │ │ ├── GPUImageDilationFilter.h │ │ │ ├── GPUImageDirectionalNonMaximumSuppressionFilter.h │ │ │ ├── GPUImageDirectionalSobelEdgeDetectionFilter.h │ │ │ ├── GPUImageDissolveBlendFilter.h │ │ │ ├── GPUImageDivideBlendFilter.h │ │ │ ├── GPUImageEmbossFilter.h │ │ │ ├── GPUImageErosionFilter.h │ │ │ ├── GPUImageExclusionBlendFilter.h │ │ │ ├── GPUImageExposureFilter.h │ │ │ ├── GPUImageFASTCornerDetectionFilter.h │ │ │ ├── GPUImageFalseColorFilter.h │ │ │ ├── GPUImageFilter.h │ │ │ ├── GPUImageFilterGroup.h │ │ │ ├── GPUImageFilterPipeline.h │ │ │ ├── GPUImageFramebuffer.h │ │ │ ├── GPUImageFramebufferCache.h │ │ │ ├── GPUImageFramework.h │ │ │ ├── GPUImageGammaFilter.h │ │ │ ├── GPUImageGaussianBlurFilter.h │ │ │ ├── GPUImageGaussianBlurPositionFilter.h │ │ │ ├── GPUImageGaussianSelectiveBlurFilter.h │ │ │ ├── GPUImageGlassSphereFilter.h │ │ │ ├── GPUImageGrayscaleFilter.h │ │ │ ├── GPUImageHSBFilter.h │ │ │ ├── GPUImageHalftoneFilter.h │ │ │ ├── GPUImageHardLightBlendFilter.h │ │ │ ├── GPUImageHarrisCornerDetectionFilter.h │ │ │ ├── GPUImageHazeFilter.h │ │ │ ├── GPUImageHighPassFilter.h │ │ │ ├── GPUImageHighlightShadowFilter.h │ │ │ ├── GPUImageHistogramEqualizationFilter.h │ │ │ ├── GPUImageHistogramFilter.h │ │ │ ├── GPUImageHistogramGenerator.h │ │ │ ├── GPUImageHoughTransformLineDetector.h │ │ │ ├── GPUImageHueBlendFilter.h │ │ │ ├── GPUImageHueFilter.h │ │ │ ├── GPUImageJFAVoronoiFilter.h │ │ │ ├── GPUImageKuwaharaFilter.h │ │ │ ├── GPUImageKuwaharaRadius3Filter.h │ │ │ ├── GPUImageLanczosResamplingFilter.h │ │ │ ├── GPUImageLaplacianFilter.h │ │ │ ├── GPUImageLevelsFilter.h │ │ │ ├── GPUImageLightenBlendFilter.h │ │ │ ├── GPUImageLineGenerator.h │ │ │ ├── GPUImageLinearBurnBlendFilter.h │ │ │ ├── GPUImageLocalBinaryPatternFilter.h │ │ │ ├── GPUImageLookupFilter.h │ │ │ ├── GPUImageLowPassFilter.h │ │ │ ├── GPUImageLuminanceRangeFilter.h │ │ │ ├── GPUImageLuminanceThresholdFilter.h │ │ │ ├── GPUImageLuminosity.h │ │ │ ├── GPUImageLuminosityBlendFilter.h │ │ │ ├── GPUImageMaskFilter.h │ │ │ ├── GPUImageMedianFilter.h │ │ │ ├── GPUImageMissEtikateFilter.h │ │ │ ├── GPUImageMonochromeFilter.h │ │ │ ├── GPUImageMosaicFilter.h │ │ │ ├── GPUImageMotionBlurFilter.h │ │ │ ├── GPUImageMotionDetector.h │ │ │ ├── GPUImageMovie.h │ │ │ ├── GPUImageMovieComposition.h │ │ │ ├── GPUImageMovieWriter.h │ │ │ ├── GPUImageMultiplyBlendFilter.h │ │ │ ├── GPUImageNobleCornerDetectionFilter.h │ │ │ ├── GPUImageNonMaximumSuppressionFilter.h │ │ │ ├── GPUImageNormalBlendFilter.h │ │ │ ├── GPUImageOpacityFilter.h │ │ │ ├── GPUImageOpeningFilter.h │ │ │ ├── GPUImageOutput.h │ │ │ ├── GPUImageOverlayBlendFilter.h │ │ │ ├── GPUImageParallelCoordinateLineTransformFilter.h │ │ │ ├── GPUImagePerlinNoiseFilter.h │ │ │ ├── GPUImagePicture+TextureSubimage.h │ │ │ ├── GPUImagePicture.h │ │ │ ├── GPUImagePinchDistortionFilter.h │ │ │ ├── GPUImagePixellateFilter.h │ │ │ ├── GPUImagePixellatePositionFilter.h │ │ │ ├── GPUImagePoissonBlendFilter.h │ │ │ ├── GPUImagePolarPixellateFilter.h │ │ │ ├── GPUImagePolkaDotFilter.h │ │ │ ├── GPUImagePosterizeFilter.h │ │ │ ├── GPUImagePrewittEdgeDetectionFilter.h │ │ │ ├── GPUImageRGBClosingFilter.h │ │ │ ├── GPUImageRGBDilationFilter.h │ │ │ ├── GPUImageRGBErosionFilter.h │ │ │ ├── GPUImageRGBFilter.h │ │ │ ├── GPUImageRGBOpeningFilter.h │ │ │ ├── GPUImageRawDataInput.h │ │ │ ├── GPUImageRawDataOutput.h │ │ │ ├── GPUImageSaturationBlendFilter.h │ │ │ ├── GPUImageSaturationFilter.h │ │ │ ├── GPUImageScreenBlendFilter.h │ │ │ ├── GPUImageSepiaFilter.h │ │ │ ├── GPUImageSharpenFilter.h │ │ │ ├── GPUImageShiTomasiFeatureDetectionFilter.h │ │ │ ├── GPUImageSingleComponentGaussianBlurFilter.h │ │ │ ├── GPUImageSketchFilter.h │ │ │ ├── GPUImageSmoothToonFilter.h │ │ │ ├── GPUImageSobelEdgeDetectionFilter.h │ │ │ ├── GPUImageSoftEleganceFilter.h │ │ │ ├── GPUImageSoftLightBlendFilter.h │ │ │ ├── GPUImageSolidColorGenerator.h │ │ │ ├── GPUImageSourceOverBlendFilter.h │ │ │ ├── GPUImageSphereRefractionFilter.h │ │ │ ├── GPUImageStillCamera.h │ │ │ ├── GPUImageStretchDistortionFilter.h │ │ │ ├── GPUImageSubtractBlendFilter.h │ │ │ ├── GPUImageSwirlFilter.h │ │ │ ├── GPUImageTextureInput.h │ │ │ ├── GPUImageTextureOutput.h │ │ │ ├── GPUImageThreeInputFilter.h │ │ │ ├── GPUImageThresholdEdgeDetectionFilter.h │ │ │ ├── GPUImageThresholdSketchFilter.h │ │ │ ├── GPUImageThresholdedNonMaximumSuppressionFilter.h │ │ │ ├── GPUImageTiltShiftFilter.h │ │ │ ├── GPUImageToneCurveFilter.h │ │ │ ├── GPUImageToonFilter.h │ │ │ ├── GPUImageTransformFilter.h │ │ │ ├── GPUImageTwoInputCrossTextureSamplingFilter.h │ │ │ ├── GPUImageTwoInputFilter.h │ │ │ ├── GPUImageTwoPassFilter.h │ │ │ ├── GPUImageTwoPassTextureSamplingFilter.h │ │ │ ├── GPUImageUIElement.h │ │ │ ├── GPUImageUnsharpMaskFilter.h │ │ │ ├── GPUImageVideoCamera.h │ │ │ ├── GPUImageView.h │ │ │ ├── GPUImageVignetteFilter.h │ │ │ ├── GPUImageVoronoiConsumerFilter.h │ │ │ ├── GPUImageWeakPixelInclusionFilter.h │ │ │ ├── GPUImageWhiteBalanceFilter.h │ │ │ ├── GPUImageXYDerivativeFilter.h │ │ │ ├── GPUImageZoomBlurFilter.h │ │ │ └── GPUImageiOSBlurFilter.h │ │ ├── HappyDNS │ │ │ ├── HappyDNS.h │ │ │ ├── QNDes.h │ │ │ ├── QNDnsManager.h │ │ │ ├── QNDnspodEnterprise.h │ │ │ ├── QNDnspodFree.h │ │ │ ├── QNDomain.h │ │ │ ├── QNHex.h │ │ │ ├── QNHijackingDetectWrapper.h │ │ │ ├── QNHosts.h │ │ │ ├── QNIP.h │ │ │ ├── QNLruCache.h │ │ │ ├── QNNetworkInfo.h │ │ │ ├── QNRecord.h │ │ │ ├── QNResolvUtil.h │ │ │ ├── QNResolver.h │ │ │ ├── QNResolverDelegate.h │ │ │ └── QNTxtResolver.h │ │ ├── KSCrash │ │ │ ├── AlignOf.h │ │ │ ├── Casting.h │ │ │ ├── Compiler.h │ │ │ ├── Container+DeepSearch.h │ │ │ ├── Demangle.h │ │ │ ├── DemangleNodes.h │ │ │ ├── Fallthrough.h │ │ │ ├── KSArchSpecific.h │ │ │ ├── KSBacktrace.h │ │ │ ├── KSBacktrace_Private.h │ │ │ ├── KSCString.h │ │ │ ├── KSCrash.h │ │ │ ├── KSCrashAdvanced.h │ │ │ ├── KSCrashC.h │ │ │ ├── KSCrashCallCompletion.h │ │ │ ├── KSCrashContext.h │ │ │ ├── KSCrashDoctor.h │ │ │ ├── KSCrashInstallation+Alert.h │ │ │ ├── KSCrashInstallation+Private.h │ │ │ ├── KSCrashInstallation.h │ │ │ ├── KSCrashInstallationConsole.h │ │ │ ├── KSCrashInstallationEmail.h │ │ │ ├── KSCrashInstallationQuincyHockey.h │ │ │ ├── KSCrashInstallationStandard.h │ │ │ ├── KSCrashInstallationVictory.h │ │ │ ├── KSCrashReport.h │ │ │ ├── KSCrashReportFields.h │ │ │ ├── KSCrashReportFilter.h │ │ │ ├── KSCrashReportFilterAlert.h │ │ │ ├── KSCrashReportFilterAppleFmt.h │ │ │ ├── KSCrashReportFilterBasic.h │ │ │ ├── KSCrashReportFilterGZip.h │ │ │ ├── KSCrashReportFilterJSON.h │ │ │ ├── KSCrashReportFilterSets.h │ │ │ ├── KSCrashReportFilterStringify.h │ │ │ ├── KSCrashReportSinkConsole.h │ │ │ ├── KSCrashReportSinkEMail.h │ │ │ ├── KSCrashReportSinkQuincyHockey.h │ │ │ ├── KSCrashReportSinkStandard.h │ │ │ ├── KSCrashReportSinkVictory.h │ │ │ ├── KSCrashReportStore.h │ │ │ ├── KSCrashReportVersion.h │ │ │ ├── KSCrashReportWriter.h │ │ │ ├── KSCrashSentry.h │ │ │ ├── KSCrashSentry_CPPException.h │ │ │ ├── KSCrashSentry_Deadlock.h │ │ │ ├── KSCrashSentry_MachException.h │ │ │ ├── KSCrashSentry_NSException.h │ │ │ ├── KSCrashSentry_Private.h │ │ │ ├── KSCrashSentry_Signal.h │ │ │ ├── KSCrashSentry_User.h │ │ │ ├── KSCrashState.h │ │ │ ├── KSCrashType.h │ │ │ ├── KSDynamicLinker.h │ │ │ ├── KSFileUtils.h │ │ │ ├── KSHTTPMultipartPostBody.h │ │ │ ├── KSHTTPRequestSender.h │ │ │ ├── KSJSONCodec.h │ │ │ ├── KSJSONCodecObjC.h │ │ │ ├── KSLogger.h │ │ │ ├── KSMach.h │ │ │ ├── KSMachApple.h │ │ │ ├── KSObjC.h │ │ │ ├── KSObjCApple.h │ │ │ ├── KSReachabilityKSCrash.h │ │ │ ├── KSSafeCollections.h │ │ │ ├── KSSignalInfo.h │ │ │ ├── KSSingleton.h │ │ │ ├── KSString.h │ │ │ ├── KSSysCtl.h │ │ │ ├── KSSystemCapabilities.h │ │ │ ├── KSSystemInfo.h │ │ │ ├── KSSystemInfoC.h │ │ │ ├── KSVarArgs.h │ │ │ ├── KSZombie.h │ │ │ ├── LLVM.h │ │ │ ├── Malloc.h │ │ │ ├── NSData+GZip.h │ │ │ ├── NSDictionary+Merge.h │ │ │ ├── NSError+SimpleConstructor.h │ │ │ ├── NSMutableData+AppendUTF8.h │ │ │ ├── NSString+Demangle.h │ │ │ ├── NSString+URLEncode.h │ │ │ ├── None.h │ │ │ ├── Optional.h │ │ │ ├── Punycode.h │ │ │ ├── RFC3339DateTool.h │ │ │ ├── StringRef.h │ │ │ ├── SwiftStrings.h │ │ │ ├── llvm-config.h │ │ │ └── type_traits.h │ │ ├── PLStreamingKit │ │ │ ├── PLAudioStreamingConfiguration.h │ │ │ ├── PLBuffer.h │ │ │ ├── PLMacroDefines.h │ │ │ ├── PLStream.h │ │ │ ├── PLStreamStatus.h │ │ │ ├── PLStreamingEnv.h │ │ │ ├── PLStreamingKit.h │ │ │ ├── PLStreamingSession.h │ │ │ ├── PLTypeDefines.h │ │ │ └── PLVideoStreamingConfiguration.h │ │ └── pili-librtmp │ │ │ ├── amf.h │ │ │ ├── bytes.h │ │ │ ├── dh.h │ │ │ ├── dhgroups.h │ │ │ ├── error.h │ │ │ ├── handshake.h │ │ │ ├── http.h │ │ │ ├── log.h │ │ │ ├── rtmp.h │ │ │ └── rtmp_sys.h │ └── Public │ │ └── PLStreamingKit │ │ ├── PLAudioStreamingConfiguration.h │ │ ├── PLBuffer.h │ │ ├── PLMacroDefines.h │ │ ├── PLStream.h │ │ ├── PLStreamStatus.h │ │ ├── PLStreamingEnv.h │ │ ├── PLStreamingKit.h │ │ ├── PLStreamingSession.h │ │ ├── PLTypeDefines.h │ │ └── PLVideoStreamingConfiguration.h │ ├── KSCrash │ ├── LICENSE │ ├── README.md │ └── Source │ │ └── KSCrash │ │ ├── Installations │ │ ├── KSCrashInstallation+Alert.h │ │ ├── KSCrashInstallation+Alert.m │ │ ├── KSCrashInstallation+Private.h │ │ ├── KSCrashInstallation.h │ │ ├── KSCrashInstallation.m │ │ ├── KSCrashInstallationConsole.h │ │ ├── KSCrashInstallationConsole.m │ │ ├── KSCrashInstallationEmail.h │ │ ├── KSCrashInstallationEmail.m │ │ ├── KSCrashInstallationQuincyHockey.h │ │ ├── KSCrashInstallationQuincyHockey.m │ │ ├── KSCrashInstallationStandard.h │ │ ├── KSCrashInstallationStandard.m │ │ ├── KSCrashInstallationVictory.h │ │ └── KSCrashInstallationVictory.m │ │ ├── Recording │ │ ├── KSCrash.h │ │ ├── KSCrash.m │ │ ├── KSCrashAdvanced.h │ │ ├── KSCrashC.c │ │ ├── KSCrashC.h │ │ ├── KSCrashContext.h │ │ ├── KSCrashDoctor.h │ │ ├── KSCrashDoctor.m │ │ ├── KSCrashReport.c │ │ ├── KSCrashReport.h │ │ ├── KSCrashReportFields.h │ │ ├── KSCrashReportStore.h │ │ ├── KSCrashReportStore.m │ │ ├── KSCrashReportVersion.h │ │ ├── KSCrashReportWriter.h │ │ ├── KSCrashState.c │ │ ├── KSCrashState.h │ │ ├── KSCrashType.c │ │ ├── KSCrashType.h │ │ ├── KSSystemCapabilities.h │ │ ├── KSSystemInfo.h │ │ ├── KSSystemInfo.m │ │ ├── KSSystemInfoC.h │ │ ├── Sentry │ │ │ ├── KSCrashSentry.c │ │ │ ├── KSCrashSentry.h │ │ │ ├── KSCrashSentry_CPPException.h │ │ │ ├── KSCrashSentry_CPPException.mm │ │ │ ├── KSCrashSentry_Deadlock.h │ │ │ ├── KSCrashSentry_Deadlock.m │ │ │ ├── KSCrashSentry_MachException.c │ │ │ ├── KSCrashSentry_MachException.h │ │ │ ├── KSCrashSentry_NSException.h │ │ │ ├── KSCrashSentry_NSException.m │ │ │ ├── KSCrashSentry_Private.h │ │ │ ├── KSCrashSentry_Signal.c │ │ │ ├── KSCrashSentry_Signal.h │ │ │ ├── KSCrashSentry_User.c │ │ │ └── KSCrashSentry_User.h │ │ └── Tools │ │ │ ├── KSArchSpecific.h │ │ │ ├── KSBacktrace.c │ │ │ ├── KSBacktrace.h │ │ │ ├── KSBacktrace_Private.h │ │ │ ├── KSCrashCallCompletion.h │ │ │ ├── KSCrashCallCompletion.m │ │ │ ├── KSDynamicLinker.c │ │ │ ├── KSDynamicLinker.h │ │ │ ├── KSFileUtils.c │ │ │ ├── KSFileUtils.h │ │ │ ├── KSJSONCodec.c │ │ │ ├── KSJSONCodec.h │ │ │ ├── KSJSONCodecObjC.h │ │ │ ├── KSJSONCodecObjC.m │ │ │ ├── KSLogger.h │ │ │ ├── KSLogger.m │ │ │ ├── KSMach.c │ │ │ ├── KSMach.h │ │ │ ├── KSMachApple.h │ │ │ ├── KSMach_Arm.c │ │ │ ├── KSMach_Arm64.c │ │ │ ├── KSMach_x86_32.c │ │ │ ├── KSMach_x86_64.c │ │ │ ├── KSObjC.c │ │ │ ├── KSObjC.h │ │ │ ├── KSObjCApple.h │ │ │ ├── KSSafeCollections.h │ │ │ ├── KSSafeCollections.m │ │ │ ├── KSSignalInfo.c │ │ │ ├── KSSignalInfo.h │ │ │ ├── KSSingleton.h │ │ │ ├── KSString.c │ │ │ ├── KSString.h │ │ │ ├── KSSysCtl.c │ │ │ ├── KSSysCtl.h │ │ │ ├── KSZombie.h │ │ │ ├── KSZombie.m │ │ │ ├── NSDictionary+Merge.h │ │ │ ├── NSDictionary+Merge.m │ │ │ ├── NSError+SimpleConstructor.h │ │ │ ├── NSError+SimpleConstructor.m │ │ │ ├── NSString+Demangle.h │ │ │ ├── NSString+Demangle.mm │ │ │ ├── RFC3339DateTool.h │ │ │ └── RFC3339DateTool.m │ │ ├── Reporting │ │ ├── Filters │ │ │ ├── KSCrashReportFilter.h │ │ │ ├── KSCrashReportFilter.m │ │ │ ├── KSCrashReportFilterAlert.h │ │ │ ├── KSCrashReportFilterAlert.m │ │ │ ├── KSCrashReportFilterAppleFmt.h │ │ │ ├── KSCrashReportFilterAppleFmt.m │ │ │ ├── KSCrashReportFilterBasic.h │ │ │ ├── KSCrashReportFilterBasic.m │ │ │ ├── KSCrashReportFilterGZip.h │ │ │ ├── KSCrashReportFilterGZip.m │ │ │ ├── KSCrashReportFilterJSON.h │ │ │ ├── KSCrashReportFilterJSON.m │ │ │ ├── KSCrashReportFilterSets.h │ │ │ ├── KSCrashReportFilterSets.m │ │ │ ├── KSCrashReportFilterStringify.h │ │ │ ├── KSCrashReportFilterStringify.m │ │ │ └── Tools │ │ │ │ ├── Container+DeepSearch.h │ │ │ │ ├── Container+DeepSearch.m │ │ │ │ ├── KSVarArgs.h │ │ │ │ ├── NSData+GZip.h │ │ │ │ └── NSData+GZip.m │ │ ├── Sinks │ │ │ ├── KSCrashReportSinkConsole.h │ │ │ ├── KSCrashReportSinkConsole.m │ │ │ ├── KSCrashReportSinkEMail.h │ │ │ ├── KSCrashReportSinkEMail.m │ │ │ ├── KSCrashReportSinkQuincyHockey.h │ │ │ ├── KSCrashReportSinkQuincyHockey.m │ │ │ ├── KSCrashReportSinkStandard.h │ │ │ ├── KSCrashReportSinkStandard.m │ │ │ ├── KSCrashReportSinkVictory.h │ │ │ └── KSCrashReportSinkVictory.m │ │ └── Tools │ │ │ ├── KSCString.h │ │ │ ├── KSCString.m │ │ │ ├── KSHTTPMultipartPostBody.h │ │ │ ├── KSHTTPMultipartPostBody.m │ │ │ ├── KSHTTPRequestSender.h │ │ │ ├── KSHTTPRequestSender.m │ │ │ ├── KSReachabilityKSCrash.h │ │ │ ├── KSReachabilityKSCrash.m │ │ │ ├── NSMutableData+AppendUTF8.h │ │ │ ├── NSMutableData+AppendUTF8.m │ │ │ ├── NSString+URLEncode.h │ │ │ └── NSString+URLEncode.m │ │ ├── llvm │ │ ├── ADT │ │ │ ├── None.h │ │ │ ├── Optional.h │ │ │ └── StringRef.h │ │ ├── Config │ │ │ └── llvm-config.h │ │ └── Support │ │ │ ├── AlignOf.h │ │ │ ├── Casting.h │ │ │ ├── Compiler.h │ │ │ └── type_traits.h │ │ └── swift │ │ ├── Basic │ │ ├── Demangle.cpp │ │ ├── Demangle.h │ │ ├── DemangleNodes.h │ │ ├── Fallthrough.h │ │ ├── LLVM.h │ │ ├── Malloc.h │ │ ├── Punycode.cpp │ │ └── Punycode.h │ │ └── SwiftStrings.h │ ├── Local Podspecs │ └── PLStreamingKit.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ └── project.pbxproj │ ├── Target Support Files │ ├── GPUImage │ │ ├── GPUImage-dummy.m │ │ ├── GPUImage-prefix.pch │ │ ├── GPUImage-umbrella.h │ │ ├── GPUImage.modulemap │ │ ├── GPUImage.xcconfig │ │ └── Info.plist │ ├── HappyDNS │ │ ├── HappyDNS-dummy.m │ │ ├── HappyDNS-prefix.pch │ │ ├── HappyDNS-umbrella.h │ │ ├── HappyDNS.modulemap │ │ ├── HappyDNS.xcconfig │ │ └── Info.plist │ ├── KSCrash │ │ ├── Info.plist │ │ ├── KSCrash-dummy.m │ │ ├── KSCrash-prefix.pch │ │ ├── KSCrash-umbrella.h │ │ ├── KSCrash.modulemap │ │ └── KSCrash.xcconfig │ ├── Pods-PLStreamingKit_Example │ │ ├── Info.plist │ │ ├── Pods-PLStreamingKit_Example-acknowledgements.markdown │ │ ├── Pods-PLStreamingKit_Example-acknowledgements.plist │ │ ├── Pods-PLStreamingKit_Example-dummy.m │ │ ├── Pods-PLStreamingKit_Example-frameworks.sh │ │ ├── Pods-PLStreamingKit_Example-resources.sh │ │ ├── Pods-PLStreamingKit_Example-umbrella.h │ │ ├── Pods-PLStreamingKit_Example.debug.xcconfig │ │ ├── Pods-PLStreamingKit_Example.modulemap │ │ └── Pods-PLStreamingKit_Example.release.xcconfig │ ├── Pods-PLStreamingKit_Tests │ │ ├── Info.plist │ │ ├── Pods-PLStreamingKit_Tests-acknowledgements.markdown │ │ ├── Pods-PLStreamingKit_Tests-acknowledgements.plist │ │ ├── Pods-PLStreamingKit_Tests-dummy.m │ │ ├── Pods-PLStreamingKit_Tests-frameworks.sh │ │ ├── Pods-PLStreamingKit_Tests-resources.sh │ │ ├── Pods-PLStreamingKit_Tests-umbrella.h │ │ ├── Pods-PLStreamingKit_Tests.debug.xcconfig │ │ ├── Pods-PLStreamingKit_Tests.modulemap │ │ └── Pods-PLStreamingKit_Tests.release.xcconfig │ └── pili-librtmp │ │ ├── Info.plist │ │ ├── pili-librtmp-dummy.m │ │ ├── pili-librtmp-prefix.pch │ │ ├── pili-librtmp-umbrella.h │ │ ├── pili-librtmp.modulemap │ │ └── pili-librtmp.xcconfig │ └── pili-librtmp │ ├── LICENSE │ ├── Pod │ └── Classes │ │ └── 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 │ └── README.md ├── LICENSE ├── PLStreamingKit.podspec ├── Pod ├── Assets │ └── .gitkeep ├── Classes │ └── .gitkeep └── Library │ ├── include │ └── PLStreamingKit │ │ ├── PLAudioStreamingConfiguration.h │ │ ├── PLBuffer.h │ │ ├── PLMacroDefines.h │ │ ├── PLStream.h │ │ ├── PLStreamStatus.h │ │ ├── PLStreamingEnv.h │ │ ├── PLStreamingKit.h │ │ ├── PLStreamingSession.h │ │ ├── PLTypeDefines.h │ │ └── PLVideoStreamingConfiguration.h │ └── lib │ └── libPLStreamingKit.a ├── README.md ├── ReleaseNotes ├── release-notes-1.0.0.md ├── release-notes-1.0.1.md ├── release-notes-1.0.2.md ├── release-notes-1.0.3.md ├── release-notes-1.1.0.md ├── release-notes-1.1.1.md ├── release-notes-1.1.2.md ├── release-notes-1.1.3.md ├── release-notes-1.1.4.md ├── release-notes-1.1.5.md ├── release-notes-1.1.6.md ├── release-notes-1.2.0.md ├── release-notes-1.2.1.md ├── release-notes-1.2.2.md ├── release-notes-1.2.3.md ├── release-notes-1.2.4.md └── release-notes-1.2.5.md ├── header-doc.png └── screensnap ├── broadcast-extension-create.png ├── creatproject-02.jpg ├── creatproject.jpg ├── extension-cocoapods.png └── permession.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/.gitignore -------------------------------------------------------------------------------- /APIDiffs/api-diffs-1.0.0.md: -------------------------------------------------------------------------------- 1 | # PLCameraStreamingKit 1.0.0 API Differences 2 | 3 | ## General Headers 4 | 5 | All new -------------------------------------------------------------------------------- /APIDiffs/api-diffs-1.0.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/APIDiffs/api-diffs-1.0.1.md -------------------------------------------------------------------------------- /APIDiffs/api-diffs-1.0.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/APIDiffs/api-diffs-1.0.2.md -------------------------------------------------------------------------------- /APIDiffs/api-diffs-1.0.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/APIDiffs/api-diffs-1.0.3.md -------------------------------------------------------------------------------- /APIDiffs/api-diffs-1.1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/APIDiffs/api-diffs-1.1.0.md -------------------------------------------------------------------------------- /APIDiffs/api-diffs-1.1.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/APIDiffs/api-diffs-1.1.1.md -------------------------------------------------------------------------------- /APIDiffs/api-diffs-1.1.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/APIDiffs/api-diffs-1.1.2.md -------------------------------------------------------------------------------- /APIDiffs/api-diffs-1.1.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/APIDiffs/api-diffs-1.1.3.md -------------------------------------------------------------------------------- /APIDiffs/api-diffs-1.1.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/APIDiffs/api-diffs-1.1.4.md -------------------------------------------------------------------------------- /APIDiffs/api-diffs-1.1.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/APIDiffs/api-diffs-1.1.5.md -------------------------------------------------------------------------------- /APIDiffs/api-diffs-1.1.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/APIDiffs/api-diffs-1.1.6.md -------------------------------------------------------------------------------- /APIDiffs/api-diffs-1.2.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/APIDiffs/api-diffs-1.2.0.md -------------------------------------------------------------------------------- /APIDiffs/api-diffs-1.2.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/APIDiffs/api-diffs-1.2.1.md -------------------------------------------------------------------------------- /APIDiffs/api-diffs-1.2.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/APIDiffs/api-diffs-1.2.2.md -------------------------------------------------------------------------------- /APIDiffs/api-diffs-1.2.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/APIDiffs/api-diffs-1.2.3.md -------------------------------------------------------------------------------- /APIDiffs/api-diffs-1.2.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/APIDiffs/api-diffs-1.2.4.md -------------------------------------------------------------------------------- /APIDiffs/api-diffs-1.2.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/APIDiffs/api-diffs-1.2.5.md -------------------------------------------------------------------------------- /Example/PLStreamingKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/PLStreamingKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/PLStreamingKit.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/PLStreamingKit.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/PLStreamingKit/Base.lproj/Launch Screen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/PLStreamingKit/Base.lproj/Launch Screen.storyboard -------------------------------------------------------------------------------- /Example/PLStreamingKit/Base.lproj/Main_iPhone.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/PLStreamingKit/Base.lproj/Main_iPhone.storyboard -------------------------------------------------------------------------------- /Example/PLStreamingKit/PLAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/PLStreamingKit/PLAppDelegate.h -------------------------------------------------------------------------------- /Example/PLStreamingKit/PLAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/PLStreamingKit/PLAppDelegate.m -------------------------------------------------------------------------------- /Example/PLStreamingKit/PLCameraStreamingKit/PLCameraFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/PLStreamingKit/PLCameraStreamingKit/PLCameraFilter.h -------------------------------------------------------------------------------- /Example/PLStreamingKit/PLCameraStreamingKit/PLCameraFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/PLStreamingKit/PLCameraStreamingKit/PLCameraFilter.m -------------------------------------------------------------------------------- /Example/PLStreamingKit/PLCameraStreamingKit/PLCameraSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/PLStreamingKit/PLCameraStreamingKit/PLCameraSource.h -------------------------------------------------------------------------------- /Example/PLStreamingKit/PLCameraStreamingKit/PLCameraSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/PLStreamingKit/PLCameraStreamingKit/PLCameraSource.m -------------------------------------------------------------------------------- /Example/PLStreamingKit/PLCameraStreamingKit/PLCameraStreamingKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/PLStreamingKit/PLCameraStreamingKit/PLCameraStreamingKit.h -------------------------------------------------------------------------------- /Example/PLStreamingKit/PLCameraStreamingKit/PLGPUImageCameraFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/PLStreamingKit/PLCameraStreamingKit/PLGPUImageCameraFilter.h -------------------------------------------------------------------------------- /Example/PLStreamingKit/PLCameraStreamingKit/PLGPUImageCameraFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/PLStreamingKit/PLCameraStreamingKit/PLGPUImageCameraFilter.m -------------------------------------------------------------------------------- /Example/PLStreamingKit/PLCameraStreamingKit/PLMicrophoneSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/PLStreamingKit/PLCameraStreamingKit/PLMicrophoneSource.h -------------------------------------------------------------------------------- /Example/PLStreamingKit/PLCameraStreamingKit/PLMicrophoneSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/PLStreamingKit/PLCameraStreamingKit/PLMicrophoneSource.m -------------------------------------------------------------------------------- /Example/PLStreamingKit/PLCameraStreamingKit/PLSourceAccessProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/PLStreamingKit/PLCameraStreamingKit/PLSourceAccessProtocol.h -------------------------------------------------------------------------------- /Example/PLStreamingKit/PLStreamingKit-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/PLStreamingKit/PLStreamingKit-Info.plist -------------------------------------------------------------------------------- /Example/PLStreamingKit/PLStreamingKit-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/PLStreamingKit/PLStreamingKit-Prefix.pch -------------------------------------------------------------------------------- /Example/PLStreamingKit/PLViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/PLStreamingKit/PLViewController.h -------------------------------------------------------------------------------- /Example/PLStreamingKit/PLViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/PLStreamingKit/PLViewController.m -------------------------------------------------------------------------------- /Example/PLStreamingKit/Reachability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/PLStreamingKit/Reachability.h -------------------------------------------------------------------------------- /Example/PLStreamingKit/Reachability.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/PLStreamingKit/Reachability.m -------------------------------------------------------------------------------- /Example/PLStreamingKit/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/PLStreamingKit/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/PLStreamingKit/main.m -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/GPUImage/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/License.txt -------------------------------------------------------------------------------- /Example/Pods/GPUImage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/README.md -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Resources/lookup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Resources/lookup.png -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Resources/lookup_amatorka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Resources/lookup_amatorka.png -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Resources/lookup_miss_etikate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Resources/lookup_miss_etikate.png -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Resources/lookup_soft_elegance_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Resources/lookup_soft_elegance_1.png -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Resources/lookup_soft_elegance_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Resources/lookup_soft_elegance_2.png -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GLProgram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GLProgram.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GLProgram.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GLProgram.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImage.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageAddBlendFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageAddBlendFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageAddBlendFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageAddBlendFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageAlphaBlendFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageAlphaBlendFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageAlphaBlendFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageAlphaBlendFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageAmatorkaFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageAmatorkaFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageAmatorkaFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageAmatorkaFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageAverageColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageAverageColor.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageAverageColor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageAverageColor.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageBilateralFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageBilateralFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageBilateralFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageBilateralFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageBoxBlurFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageBoxBlurFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageBoxBlurFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageBoxBlurFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageBrightnessFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageBrightnessFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageBrightnessFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageBrightnessFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageBuffer.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageBuffer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageBuffer.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageCGAColorspaceFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageCGAColorspaceFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageCGAColorspaceFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageCGAColorspaceFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageChromaKeyFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageChromaKeyFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageChromaKeyFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageChromaKeyFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageClosingFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageClosingFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageClosingFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageClosingFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageColorBlendFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageColorBlendFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageColorBlendFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageColorBlendFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageColorInvertFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageColorInvertFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageColorInvertFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageColorInvertFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageColorMatrixFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageColorMatrixFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageColorMatrixFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageColorMatrixFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageColorPackingFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageColorPackingFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageColorPackingFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageColorPackingFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageContrastFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageContrastFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageContrastFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageContrastFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageCropFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageCropFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageCropFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageCropFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageCrosshairGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageCrosshairGenerator.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageCrosshairGenerator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageCrosshairGenerator.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageCrosshatchFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageCrosshatchFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageCrosshatchFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageCrosshatchFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageDarkenBlendFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageDarkenBlendFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageDarkenBlendFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageDarkenBlendFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageDilationFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageDilationFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageDilationFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageDilationFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageDissolveBlendFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageDissolveBlendFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageDissolveBlendFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageDissolveBlendFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageDivideBlendFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageDivideBlendFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageDivideBlendFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageDivideBlendFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageEmbossFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageEmbossFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageEmbossFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageEmbossFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageErosionFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageErosionFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageErosionFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageErosionFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageExposureFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageExposureFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageExposureFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageExposureFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageFalseColorFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageFalseColorFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageFalseColorFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageFalseColorFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageFilterGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageFilterGroup.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageFilterGroup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageFilterGroup.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageFilterPipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageFilterPipeline.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageFilterPipeline.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageFilterPipeline.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageFramebuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageFramebuffer.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageFramebuffer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageFramebuffer.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageFramebufferCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageFramebufferCache.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageFramebufferCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageFramebufferCache.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageGammaFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageGammaFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageGammaFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageGammaFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageGaussianBlurFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageGaussianBlurFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageGaussianBlurFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageGaussianBlurFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageGlassSphereFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageGlassSphereFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageGlassSphereFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageGlassSphereFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageGrayscaleFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageGrayscaleFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageGrayscaleFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageGrayscaleFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageHSBFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageHSBFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageHSBFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageHSBFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageHalftoneFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageHalftoneFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageHalftoneFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageHalftoneFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageHazeFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageHazeFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageHazeFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageHazeFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageHighPassFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageHighPassFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageHighPassFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageHighPassFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageHistogramFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageHistogramFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageHistogramFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageHistogramFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageHistogramGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageHistogramGenerator.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageHistogramGenerator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageHistogramGenerator.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageHueBlendFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageHueBlendFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageHueBlendFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageHueBlendFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageHueFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageHueFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageHueFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageHueFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageJFAVoronoiFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageJFAVoronoiFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageJFAVoronoiFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageJFAVoronoiFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageKuwaharaFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageKuwaharaFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageKuwaharaFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageKuwaharaFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageLaplacianFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageLaplacianFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageLaplacianFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageLaplacianFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageLevelsFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageLevelsFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageLevelsFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageLevelsFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageLightenBlendFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageLightenBlendFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageLightenBlendFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageLightenBlendFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageLineGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageLineGenerator.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageLineGenerator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageLineGenerator.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageLookupFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageLookupFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageLookupFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageLookupFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageLowPassFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageLowPassFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageLowPassFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageLowPassFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageLuminosity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageLuminosity.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageLuminosity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageLuminosity.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageMaskFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageMaskFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageMaskFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageMaskFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageMedianFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageMedianFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageMedianFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageMedianFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageMissEtikateFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageMissEtikateFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageMissEtikateFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageMissEtikateFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageMonochromeFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageMonochromeFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageMonochromeFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageMonochromeFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageMosaicFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageMosaicFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageMosaicFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageMosaicFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageMotionBlurFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageMotionBlurFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageMotionBlurFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageMotionBlurFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageMotionDetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageMotionDetector.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageMotionDetector.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageMotionDetector.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageMovie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageMovie.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageMovie.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageMovie.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageMovieComposition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageMovieComposition.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageMovieComposition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageMovieComposition.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageMultiplyBlendFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageMultiplyBlendFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageMultiplyBlendFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageMultiplyBlendFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageNormalBlendFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageNormalBlendFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageNormalBlendFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageNormalBlendFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageOpacityFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageOpacityFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageOpacityFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageOpacityFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageOpeningFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageOpeningFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageOpeningFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageOpeningFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageOutput.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageOutput.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageOutput.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageOverlayBlendFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageOverlayBlendFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageOverlayBlendFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageOverlayBlendFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImagePerlinNoiseFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImagePerlinNoiseFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImagePerlinNoiseFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImagePerlinNoiseFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImagePixellateFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImagePixellateFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImagePixellateFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImagePixellateFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImagePoissonBlendFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImagePoissonBlendFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImagePoissonBlendFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImagePoissonBlendFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImagePolkaDotFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImagePolkaDotFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImagePolkaDotFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImagePolkaDotFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImagePosterizeFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImagePosterizeFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImagePosterizeFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImagePosterizeFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageRGBClosingFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageRGBClosingFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageRGBClosingFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageRGBClosingFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageRGBDilationFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageRGBDilationFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageRGBDilationFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageRGBDilationFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageRGBErosionFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageRGBErosionFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageRGBErosionFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageRGBErosionFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageRGBFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageRGBFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageRGBFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageRGBFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageRGBOpeningFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageRGBOpeningFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageRGBOpeningFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageRGBOpeningFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageRawDataInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageRawDataInput.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageRawDataInput.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageRawDataInput.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageRawDataOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageRawDataOutput.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageRawDataOutput.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageRawDataOutput.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageSaturationFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageSaturationFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageSaturationFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageSaturationFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageScreenBlendFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageScreenBlendFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageScreenBlendFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageScreenBlendFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageSepiaFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageSepiaFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageSepiaFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageSepiaFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageSharpenFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageSharpenFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageSharpenFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageSharpenFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageSketchFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageSketchFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageSketchFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageSketchFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageSmoothToonFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageSmoothToonFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageSmoothToonFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageSmoothToonFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageSoftEleganceFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageSoftEleganceFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageSoftEleganceFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageSoftEleganceFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageSolidColorGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageSolidColorGenerator.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageSolidColorGenerator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageSolidColorGenerator.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageStillCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageStillCamera.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageStillCamera.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageStillCamera.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageSubtractBlendFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageSubtractBlendFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageSubtractBlendFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageSubtractBlendFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageSwirlFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageSwirlFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageSwirlFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageSwirlFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageTextureInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageTextureInput.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageTextureInput.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageTextureInput.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageTextureOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageTextureOutput.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageTextureOutput.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageTextureOutput.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageThreeInputFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageThreeInputFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageThreeInputFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageThreeInputFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageTiltShiftFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageTiltShiftFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageTiltShiftFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageTiltShiftFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageToneCurveFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageToneCurveFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageToneCurveFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageToneCurveFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageToonFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageToonFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageToonFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageToonFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageTransformFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageTransformFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageTransformFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageTransformFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageTwoInputFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageTwoInputFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageTwoInputFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageTwoInputFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageTwoPassFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageTwoPassFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageTwoPassFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageTwoPassFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageUIElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageUIElement.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageUIElement.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageUIElement.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageUnsharpMaskFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageUnsharpMaskFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageUnsharpMaskFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageUnsharpMaskFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageVideoCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageVideoCamera.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageVideoCamera.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageVideoCamera.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageVignetteFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageVignetteFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageVignetteFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageVignetteFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageWhiteBalanceFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageWhiteBalanceFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageWhiteBalanceFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageWhiteBalanceFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageXYDerivativeFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageXYDerivativeFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageXYDerivativeFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageXYDerivativeFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageZoomBlurFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageZoomBlurFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageZoomBlurFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageZoomBlurFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageiOSBlurFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageiOSBlurFilter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/GPUImageiOSBlurFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/GPUImageiOSBlurFilter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/iOS/GPUImageContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/iOS/GPUImageContext.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/iOS/GPUImageContext.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/iOS/GPUImageContext.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/iOS/GPUImageMovieWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/iOS/GPUImageMovieWriter.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/iOS/GPUImageMovieWriter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/iOS/GPUImageMovieWriter.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/iOS/GPUImagePicture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/iOS/GPUImagePicture.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/iOS/GPUImagePicture.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/iOS/GPUImagePicture.m -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/iOS/GPUImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/iOS/GPUImageView.h -------------------------------------------------------------------------------- /Example/Pods/GPUImage/framework/Source/iOS/GPUImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/GPUImage/framework/Source/iOS/GPUImageView.m -------------------------------------------------------------------------------- /Example/Pods/HappyDNS/HappyDNS/Common/QNDnsManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/HappyDNS/HappyDNS/Common/QNDnsManager.h -------------------------------------------------------------------------------- /Example/Pods/HappyDNS/HappyDNS/Common/QNDnsManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/HappyDNS/HappyDNS/Common/QNDnsManager.m -------------------------------------------------------------------------------- /Example/Pods/HappyDNS/HappyDNS/Common/QNDomain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/HappyDNS/HappyDNS/Common/QNDomain.h -------------------------------------------------------------------------------- /Example/Pods/HappyDNS/HappyDNS/Common/QNDomain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/HappyDNS/HappyDNS/Common/QNDomain.m -------------------------------------------------------------------------------- /Example/Pods/HappyDNS/HappyDNS/Common/QNLruCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/HappyDNS/HappyDNS/Common/QNLruCache.h -------------------------------------------------------------------------------- /Example/Pods/HappyDNS/HappyDNS/Common/QNLruCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/HappyDNS/HappyDNS/Common/QNLruCache.m -------------------------------------------------------------------------------- /Example/Pods/HappyDNS/HappyDNS/Common/QNNetworkInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/HappyDNS/HappyDNS/Common/QNNetworkInfo.h -------------------------------------------------------------------------------- /Example/Pods/HappyDNS/HappyDNS/Common/QNNetworkInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/HappyDNS/HappyDNS/Common/QNNetworkInfo.m -------------------------------------------------------------------------------- /Example/Pods/HappyDNS/HappyDNS/Common/QNRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/HappyDNS/HappyDNS/Common/QNRecord.h -------------------------------------------------------------------------------- /Example/Pods/HappyDNS/HappyDNS/Common/QNRecord.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/HappyDNS/HappyDNS/Common/QNRecord.m -------------------------------------------------------------------------------- /Example/Pods/HappyDNS/HappyDNS/Common/QNResolverDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/HappyDNS/HappyDNS/Common/QNResolverDelegate.h -------------------------------------------------------------------------------- /Example/Pods/HappyDNS/HappyDNS/HappyDNS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/HappyDNS/HappyDNS/HappyDNS.h -------------------------------------------------------------------------------- /Example/Pods/HappyDNS/HappyDNS/Http/QNDnspodEnterprise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/HappyDNS/HappyDNS/Http/QNDnspodEnterprise.h -------------------------------------------------------------------------------- /Example/Pods/HappyDNS/HappyDNS/Http/QNDnspodEnterprise.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/HappyDNS/HappyDNS/Http/QNDnspodEnterprise.m -------------------------------------------------------------------------------- /Example/Pods/HappyDNS/HappyDNS/Http/QNDnspodFree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/HappyDNS/HappyDNS/Http/QNDnspodFree.h -------------------------------------------------------------------------------- /Example/Pods/HappyDNS/HappyDNS/Http/QNDnspodFree.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/HappyDNS/HappyDNS/Http/QNDnspodFree.m -------------------------------------------------------------------------------- /Example/Pods/HappyDNS/HappyDNS/Local/QNHijackingDetectWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/HappyDNS/HappyDNS/Local/QNHijackingDetectWrapper.h -------------------------------------------------------------------------------- /Example/Pods/HappyDNS/HappyDNS/Local/QNHijackingDetectWrapper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/HappyDNS/HappyDNS/Local/QNHijackingDetectWrapper.m -------------------------------------------------------------------------------- /Example/Pods/HappyDNS/HappyDNS/Local/QNHosts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/HappyDNS/HappyDNS/Local/QNHosts.h -------------------------------------------------------------------------------- /Example/Pods/HappyDNS/HappyDNS/Local/QNHosts.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/HappyDNS/HappyDNS/Local/QNHosts.m -------------------------------------------------------------------------------- /Example/Pods/HappyDNS/HappyDNS/Local/QNResolvUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/HappyDNS/HappyDNS/Local/QNResolvUtil.h -------------------------------------------------------------------------------- /Example/Pods/HappyDNS/HappyDNS/Local/QNResolvUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/HappyDNS/HappyDNS/Local/QNResolvUtil.m -------------------------------------------------------------------------------- /Example/Pods/HappyDNS/HappyDNS/Local/QNResolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/HappyDNS/HappyDNS/Local/QNResolver.h -------------------------------------------------------------------------------- /Example/Pods/HappyDNS/HappyDNS/Local/QNResolver.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/HappyDNS/HappyDNS/Local/QNResolver.m -------------------------------------------------------------------------------- /Example/Pods/HappyDNS/HappyDNS/Local/QNTxtResolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/HappyDNS/HappyDNS/Local/QNTxtResolver.h -------------------------------------------------------------------------------- /Example/Pods/HappyDNS/HappyDNS/Local/QNTxtResolver.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/HappyDNS/HappyDNS/Local/QNTxtResolver.m -------------------------------------------------------------------------------- /Example/Pods/HappyDNS/HappyDNS/Util/QNDes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/HappyDNS/HappyDNS/Util/QNDes.h -------------------------------------------------------------------------------- /Example/Pods/HappyDNS/HappyDNS/Util/QNDes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/HappyDNS/HappyDNS/Util/QNDes.m -------------------------------------------------------------------------------- /Example/Pods/HappyDNS/HappyDNS/Util/QNHex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/HappyDNS/HappyDNS/Util/QNHex.h -------------------------------------------------------------------------------- /Example/Pods/HappyDNS/HappyDNS/Util/QNHex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/HappyDNS/HappyDNS/Util/QNHex.m -------------------------------------------------------------------------------- /Example/Pods/HappyDNS/HappyDNS/Util/QNIP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/HappyDNS/HappyDNS/Util/QNIP.h -------------------------------------------------------------------------------- /Example/Pods/HappyDNS/HappyDNS/Util/QNIP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/HappyDNS/HappyDNS/Util/QNIP.m -------------------------------------------------------------------------------- /Example/Pods/HappyDNS/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/HappyDNS/LICENSE -------------------------------------------------------------------------------- /Example/Pods/HappyDNS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/HappyDNS/README.md -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GLProgram.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GLProgram.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImage.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImage.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImage3x3ConvolutionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImage3x3ConvolutionFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImage3x3TextureSamplingFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImage3x3TextureSamplingFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageAdaptiveThresholdFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageAdaptiveThresholdFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageAddBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageAddBlendFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageAlphaBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageAlphaBlendFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageAmatorkaFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageAmatorkaFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageAverageColor.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageAverageColor.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageAverageLuminanceThresholdFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageAverageLuminanceThresholdFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageBilateralFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageBilateralFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageBoxBlurFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageBoxBlurFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageBrightnessFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageBrightnessFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageBuffer.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageBuffer.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageBulgeDistortionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageBulgeDistortionFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageCGAColorspaceFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageCGAColorspaceFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageCannyEdgeDetectionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageCannyEdgeDetectionFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageChromaKeyBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageChromaKeyBlendFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageChromaKeyFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageChromaKeyFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageClosingFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageClosingFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageColorBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageColorBlendFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageColorBurnBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageColorBurnBlendFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageColorDodgeBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageColorDodgeBlendFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageColorInvertFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageColorInvertFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageColorMatrixFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageColorMatrixFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageColorPackingFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageColorPackingFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageContext.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/iOS/GPUImageContext.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageContrastFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageContrastFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageCropFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageCropFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageCrosshairGenerator.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageCrosshairGenerator.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageCrosshatchFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageCrosshatchFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageDarkenBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageDarkenBlendFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageDifferenceBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageDifferenceBlendFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageDilationFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageDilationFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageDirectionalNonMaximumSuppressionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageDirectionalNonMaximumSuppressionFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageDirectionalSobelEdgeDetectionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageDirectionalSobelEdgeDetectionFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageDissolveBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageDissolveBlendFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageDivideBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageDivideBlendFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageEmbossFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageEmbossFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageErosionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageErosionFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageExclusionBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageExclusionBlendFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageExposureFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageExposureFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageFASTCornerDetectionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageFASTCornerDetectionFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageFalseColorFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageFalseColorFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageFilterGroup.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageFilterGroup.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageFilterPipeline.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageFilterPipeline.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageFramebuffer.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageFramebuffer.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageFramebufferCache.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageFramebufferCache.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageFramework.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/iOS/Framework/GPUImageFramework.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageGammaFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageGammaFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageGaussianBlurFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageGaussianBlurFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageGaussianBlurPositionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageGaussianBlurPositionFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageGaussianSelectiveBlurFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageGaussianSelectiveBlurFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageGlassSphereFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageGlassSphereFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageGrayscaleFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageGrayscaleFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageHSBFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageHSBFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageHalftoneFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageHalftoneFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageHardLightBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageHardLightBlendFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageHarrisCornerDetectionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageHarrisCornerDetectionFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageHazeFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageHazeFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageHighPassFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageHighPassFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageHighlightShadowFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageHighlightShadowFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageHistogramEqualizationFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageHistogramEqualizationFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageHistogramFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageHistogramFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageHistogramGenerator.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageHistogramGenerator.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageHoughTransformLineDetector.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageHoughTransformLineDetector.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageHueBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageHueBlendFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageHueFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageHueFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageJFAVoronoiFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageJFAVoronoiFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageKuwaharaFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageKuwaharaFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageKuwaharaRadius3Filter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageKuwaharaRadius3Filter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageLanczosResamplingFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageLanczosResamplingFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageLaplacianFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageLaplacianFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageLevelsFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageLevelsFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageLightenBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageLightenBlendFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageLineGenerator.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageLineGenerator.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageLinearBurnBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageLinearBurnBlendFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageLocalBinaryPatternFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageLocalBinaryPatternFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageLookupFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageLookupFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageLowPassFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageLowPassFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageLuminanceRangeFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageLuminanceRangeFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageLuminanceThresholdFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageLuminanceThresholdFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageLuminosity.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageLuminosity.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageLuminosityBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageLuminosityBlendFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageMaskFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageMaskFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageMedianFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageMedianFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageMissEtikateFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageMissEtikateFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageMonochromeFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageMonochromeFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageMosaicFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageMosaicFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageMotionBlurFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageMotionBlurFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageMotionDetector.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageMotionDetector.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageMovie.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageMovie.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageMovieComposition.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageMovieComposition.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageMovieWriter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/iOS/GPUImageMovieWriter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageMultiplyBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageMultiplyBlendFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageNobleCornerDetectionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageNobleCornerDetectionFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageNonMaximumSuppressionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageNonMaximumSuppressionFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageNormalBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageNormalBlendFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageOpacityFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageOpacityFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageOpeningFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageOpeningFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageOutput.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageOutput.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageOverlayBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageOverlayBlendFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageParallelCoordinateLineTransformFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageParallelCoordinateLineTransformFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImagePerlinNoiseFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImagePerlinNoiseFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImagePicture+TextureSubimage.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/iOS/GPUImagePicture+TextureSubimage.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImagePicture.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/iOS/GPUImagePicture.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImagePinchDistortionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImagePinchDistortionFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImagePixellateFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImagePixellateFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImagePixellatePositionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImagePixellatePositionFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImagePoissonBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImagePoissonBlendFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImagePolarPixellateFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImagePolarPixellateFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImagePolkaDotFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImagePolkaDotFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImagePosterizeFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImagePosterizeFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImagePrewittEdgeDetectionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImagePrewittEdgeDetectionFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageRGBClosingFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageRGBClosingFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageRGBDilationFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageRGBDilationFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageRGBErosionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageRGBErosionFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageRGBFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageRGBFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageRGBOpeningFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageRGBOpeningFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageRawDataInput.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageRawDataInput.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageRawDataOutput.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageRawDataOutput.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageSaturationBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageSaturationBlendFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageSaturationFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageSaturationFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageScreenBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageScreenBlendFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageSepiaFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageSepiaFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageSharpenFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageSharpenFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageShiTomasiFeatureDetectionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageShiTomasiFeatureDetectionFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageSingleComponentGaussianBlurFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageSingleComponentGaussianBlurFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageSketchFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageSketchFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageSmoothToonFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageSmoothToonFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageSobelEdgeDetectionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageSobelEdgeDetectionFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageSoftEleganceFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageSoftEleganceFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageSoftLightBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageSoftLightBlendFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageSolidColorGenerator.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageSolidColorGenerator.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageSourceOverBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageSourceOverBlendFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageSphereRefractionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageSphereRefractionFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageStillCamera.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageStillCamera.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageStretchDistortionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageStretchDistortionFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageSubtractBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageSubtractBlendFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageSwirlFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageSwirlFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageTextureInput.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageTextureInput.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageTextureOutput.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageTextureOutput.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageThreeInputFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageThreeInputFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageThresholdEdgeDetectionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageThresholdEdgeDetectionFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageThresholdSketchFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageThresholdSketchFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageThresholdedNonMaximumSuppressionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageThresholdedNonMaximumSuppressionFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageTiltShiftFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageTiltShiftFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageToneCurveFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageToneCurveFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageToonFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageToonFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageTransformFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageTransformFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageTwoInputCrossTextureSamplingFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageTwoInputCrossTextureSamplingFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageTwoInputFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageTwoInputFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageTwoPassFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageTwoPassFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageTwoPassTextureSamplingFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageTwoPassTextureSamplingFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageUIElement.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageUIElement.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageUnsharpMaskFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageUnsharpMaskFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageVideoCamera.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageVideoCamera.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageView.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/iOS/GPUImageView.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageVignetteFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageVignetteFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageVoronoiConsumerFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageVoronoiConsumerFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageWeakPixelInclusionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageWeakPixelInclusionFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageWhiteBalanceFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageWhiteBalanceFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageXYDerivativeFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageXYDerivativeFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageZoomBlurFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageZoomBlurFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageiOSBlurFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageiOSBlurFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/HappyDNS/HappyDNS.h: -------------------------------------------------------------------------------- 1 | ../../../HappyDNS/HappyDNS/HappyDNS.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/HappyDNS/QNDes.h: -------------------------------------------------------------------------------- 1 | ../../../HappyDNS/HappyDNS/Util/QNDes.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/HappyDNS/QNDnsManager.h: -------------------------------------------------------------------------------- 1 | ../../../HappyDNS/HappyDNS/Common/QNDnsManager.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/HappyDNS/QNDnspodEnterprise.h: -------------------------------------------------------------------------------- 1 | ../../../HappyDNS/HappyDNS/Http/QNDnspodEnterprise.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/HappyDNS/QNDnspodFree.h: -------------------------------------------------------------------------------- 1 | ../../../HappyDNS/HappyDNS/Http/QNDnspodFree.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/HappyDNS/QNDomain.h: -------------------------------------------------------------------------------- 1 | ../../../HappyDNS/HappyDNS/Common/QNDomain.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/HappyDNS/QNHex.h: -------------------------------------------------------------------------------- 1 | ../../../HappyDNS/HappyDNS/Util/QNHex.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/HappyDNS/QNHijackingDetectWrapper.h: -------------------------------------------------------------------------------- 1 | ../../../HappyDNS/HappyDNS/Local/QNHijackingDetectWrapper.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/HappyDNS/QNHosts.h: -------------------------------------------------------------------------------- 1 | ../../../HappyDNS/HappyDNS/Local/QNHosts.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/HappyDNS/QNIP.h: -------------------------------------------------------------------------------- 1 | ../../../HappyDNS/HappyDNS/Util/QNIP.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/HappyDNS/QNLruCache.h: -------------------------------------------------------------------------------- 1 | ../../../HappyDNS/HappyDNS/Common/QNLruCache.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/HappyDNS/QNNetworkInfo.h: -------------------------------------------------------------------------------- 1 | ../../../HappyDNS/HappyDNS/Common/QNNetworkInfo.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/HappyDNS/QNRecord.h: -------------------------------------------------------------------------------- 1 | ../../../HappyDNS/HappyDNS/Common/QNRecord.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/HappyDNS/QNResolvUtil.h: -------------------------------------------------------------------------------- 1 | ../../../HappyDNS/HappyDNS/Local/QNResolvUtil.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/HappyDNS/QNResolver.h: -------------------------------------------------------------------------------- 1 | ../../../HappyDNS/HappyDNS/Local/QNResolver.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/HappyDNS/QNResolverDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../HappyDNS/HappyDNS/Common/QNResolverDelegate.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/HappyDNS/QNTxtResolver.h: -------------------------------------------------------------------------------- 1 | ../../../HappyDNS/HappyDNS/Local/QNTxtResolver.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/AlignOf.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/llvm/Support/AlignOf.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/Casting.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/llvm/Support/Casting.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/Compiler.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/llvm/Support/Compiler.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/Container+DeepSearch.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Reporting/Filters/Tools/Container+DeepSearch.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/Demangle.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/swift/Basic/Demangle.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/DemangleNodes.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/swift/Basic/DemangleNodes.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/Fallthrough.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/swift/Basic/Fallthrough.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/KSArchSpecific.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Recording/Tools/KSArchSpecific.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/KSBacktrace.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Recording/Tools/KSBacktrace.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/KSBacktrace_Private.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Recording/Tools/KSBacktrace_Private.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/KSCString.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Reporting/Tools/KSCString.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/KSCrash.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Recording/KSCrash.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/KSCrashAdvanced.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Recording/KSCrashAdvanced.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/KSCrashC.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Recording/KSCrashC.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/KSCrashCallCompletion.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Recording/Tools/KSCrashCallCompletion.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/KSCrashContext.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Recording/KSCrashContext.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/KSCrashDoctor.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Recording/KSCrashDoctor.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/KSCrashInstallation+Alert.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Installations/KSCrashInstallation+Alert.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/KSCrashInstallation+Private.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Installations/KSCrashInstallation+Private.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/KSCrashInstallation.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Installations/KSCrashInstallation.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/KSCrashInstallationConsole.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Installations/KSCrashInstallationConsole.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/KSCrashInstallationEmail.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Installations/KSCrashInstallationEmail.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/KSCrashInstallationQuincyHockey.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Installations/KSCrashInstallationQuincyHockey.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/KSCrashInstallationStandard.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Installations/KSCrashInstallationStandard.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/KSCrashInstallationVictory.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Installations/KSCrashInstallationVictory.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/KSCrashReport.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Recording/KSCrashReport.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/KSCrashReportFields.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Recording/KSCrashReportFields.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/KSCrashReportFilter.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Reporting/Filters/KSCrashReportFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/KSCrashReportFilterAlert.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Reporting/Filters/KSCrashReportFilterAlert.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/KSCrashReportFilterAppleFmt.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Reporting/Filters/KSCrashReportFilterAppleFmt.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/KSCrashReportFilterBasic.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Reporting/Filters/KSCrashReportFilterBasic.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/KSCrashReportFilterGZip.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Reporting/Filters/KSCrashReportFilterGZip.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/KSCrashReportFilterJSON.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Reporting/Filters/KSCrashReportFilterJSON.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/KSCrashReportFilterSets.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Reporting/Filters/KSCrashReportFilterSets.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/KSCrashReportFilterStringify.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Reporting/Filters/KSCrashReportFilterStringify.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/KSCrashReportSinkConsole.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Reporting/Sinks/KSCrashReportSinkConsole.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/KSCrashReportSinkEMail.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Reporting/Sinks/KSCrashReportSinkEMail.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/KSCrashReportSinkQuincyHockey.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Reporting/Sinks/KSCrashReportSinkQuincyHockey.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/KSCrashReportSinkStandard.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Reporting/Sinks/KSCrashReportSinkStandard.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/KSCrashReportSinkVictory.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Reporting/Sinks/KSCrashReportSinkVictory.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/KSCrashReportStore.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Recording/KSCrashReportStore.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/KSCrashReportVersion.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Recording/KSCrashReportVersion.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/KSCrashReportWriter.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Recording/KSCrashReportWriter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/KSCrashSentry.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Recording/Sentry/KSCrashSentry.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/KSCrashSentry_CPPException.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Recording/Sentry/KSCrashSentry_CPPException.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/KSCrashSentry_Deadlock.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Recording/Sentry/KSCrashSentry_Deadlock.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/KSCrashSentry_MachException.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Recording/Sentry/KSCrashSentry_MachException.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/KSCrashSentry_NSException.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Recording/Sentry/KSCrashSentry_NSException.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/KSCrashSentry_Private.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Recording/Sentry/KSCrashSentry_Private.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/KSCrashSentry_Signal.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Recording/Sentry/KSCrashSentry_Signal.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/KSCrashSentry_User.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Recording/Sentry/KSCrashSentry_User.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/KSCrashState.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Recording/KSCrashState.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/KSCrashType.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Recording/KSCrashType.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/KSDynamicLinker.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Recording/Tools/KSDynamicLinker.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/KSFileUtils.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Recording/Tools/KSFileUtils.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/KSHTTPMultipartPostBody.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Reporting/Tools/KSHTTPMultipartPostBody.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/KSHTTPRequestSender.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Reporting/Tools/KSHTTPRequestSender.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/KSJSONCodec.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Recording/Tools/KSJSONCodec.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/KSJSONCodecObjC.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Recording/Tools/KSJSONCodecObjC.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/KSLogger.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Recording/Tools/KSLogger.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/KSMach.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Recording/Tools/KSMach.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/KSMachApple.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Recording/Tools/KSMachApple.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/KSObjC.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Recording/Tools/KSObjC.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/KSObjCApple.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Recording/Tools/KSObjCApple.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/KSReachabilityKSCrash.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Reporting/Tools/KSReachabilityKSCrash.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/KSSafeCollections.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Recording/Tools/KSSafeCollections.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/KSSignalInfo.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Recording/Tools/KSSignalInfo.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/KSSingleton.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Recording/Tools/KSSingleton.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/KSString.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Recording/Tools/KSString.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/KSSysCtl.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Recording/Tools/KSSysCtl.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/KSSystemCapabilities.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Recording/KSSystemCapabilities.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/KSSystemInfo.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Recording/KSSystemInfo.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/KSSystemInfoC.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Recording/KSSystemInfoC.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/KSVarArgs.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Reporting/Filters/Tools/KSVarArgs.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/KSZombie.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Recording/Tools/KSZombie.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/LLVM.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/swift/Basic/LLVM.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/Malloc.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/swift/Basic/Malloc.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/NSData+GZip.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Reporting/Filters/Tools/NSData+GZip.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/NSDictionary+Merge.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Recording/Tools/NSDictionary+Merge.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/NSError+SimpleConstructor.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Recording/Tools/NSError+SimpleConstructor.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/NSMutableData+AppendUTF8.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Reporting/Tools/NSMutableData+AppendUTF8.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/NSString+Demangle.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Recording/Tools/NSString+Demangle.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/NSString+URLEncode.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Reporting/Tools/NSString+URLEncode.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/None.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/llvm/ADT/None.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/Optional.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/llvm/ADT/Optional.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/Punycode.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/swift/Basic/Punycode.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/RFC3339DateTool.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/Recording/Tools/RFC3339DateTool.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/StringRef.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/llvm/ADT/StringRef.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/SwiftStrings.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/swift/SwiftStrings.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/llvm-config.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/llvm/Config/llvm-config.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KSCrash/type_traits.h: -------------------------------------------------------------------------------- 1 | ../../../KSCrash/Source/KSCrash/llvm/Support/type_traits.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/PLStreamingKit/PLAudioStreamingConfiguration.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Library/include/PLStreamingKit/PLAudioStreamingConfiguration.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/PLStreamingKit/PLBuffer.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Library/include/PLStreamingKit/PLBuffer.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/PLStreamingKit/PLMacroDefines.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Library/include/PLStreamingKit/PLMacroDefines.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/PLStreamingKit/PLStream.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Library/include/PLStreamingKit/PLStream.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/PLStreamingKit/PLStreamStatus.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Library/include/PLStreamingKit/PLStreamStatus.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/PLStreamingKit/PLStreamingEnv.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Library/include/PLStreamingKit/PLStreamingEnv.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/PLStreamingKit/PLStreamingKit.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Library/include/PLStreamingKit/PLStreamingKit.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/PLStreamingKit/PLStreamingSession.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Library/include/PLStreamingKit/PLStreamingSession.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/PLStreamingKit/PLTypeDefines.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Library/include/PLStreamingKit/PLTypeDefines.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/PLStreamingKit/PLVideoStreamingConfiguration.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Library/include/PLStreamingKit/PLVideoStreamingConfiguration.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pili-librtmp/amf.h: -------------------------------------------------------------------------------- 1 | ../../../pili-librtmp/Pod/Classes/pili-librtmp/amf.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pili-librtmp/bytes.h: -------------------------------------------------------------------------------- 1 | ../../../pili-librtmp/Pod/Classes/pili-librtmp/bytes.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pili-librtmp/dh.h: -------------------------------------------------------------------------------- 1 | ../../../pili-librtmp/Pod/Classes/pili-librtmp/dh.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pili-librtmp/dhgroups.h: -------------------------------------------------------------------------------- 1 | ../../../pili-librtmp/Pod/Classes/pili-librtmp/dhgroups.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pili-librtmp/error.h: -------------------------------------------------------------------------------- 1 | ../../../pili-librtmp/Pod/Classes/pili-librtmp/error.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pili-librtmp/handshake.h: -------------------------------------------------------------------------------- 1 | ../../../pili-librtmp/Pod/Classes/pili-librtmp/handshake.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pili-librtmp/http.h: -------------------------------------------------------------------------------- 1 | ../../../pili-librtmp/Pod/Classes/pili-librtmp/http.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pili-librtmp/log.h: -------------------------------------------------------------------------------- 1 | ../../../pili-librtmp/Pod/Classes/pili-librtmp/log.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pili-librtmp/rtmp.h: -------------------------------------------------------------------------------- 1 | ../../../pili-librtmp/Pod/Classes/pili-librtmp/rtmp.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pili-librtmp/rtmp_sys.h: -------------------------------------------------------------------------------- 1 | ../../../pili-librtmp/Pod/Classes/pili-librtmp/rtmp_sys.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/PLStreamingKit/PLAudioStreamingConfiguration.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Library/include/PLStreamingKit/PLAudioStreamingConfiguration.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/PLStreamingKit/PLBuffer.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Library/include/PLStreamingKit/PLBuffer.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/PLStreamingKit/PLMacroDefines.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Library/include/PLStreamingKit/PLMacroDefines.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/PLStreamingKit/PLStream.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Library/include/PLStreamingKit/PLStream.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/PLStreamingKit/PLStreamStatus.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Library/include/PLStreamingKit/PLStreamStatus.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/PLStreamingKit/PLStreamingEnv.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Library/include/PLStreamingKit/PLStreamingEnv.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/PLStreamingKit/PLStreamingKit.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Library/include/PLStreamingKit/PLStreamingKit.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/PLStreamingKit/PLStreamingSession.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Library/include/PLStreamingKit/PLStreamingSession.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/PLStreamingKit/PLTypeDefines.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Library/include/PLStreamingKit/PLTypeDefines.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/PLStreamingKit/PLVideoStreamingConfiguration.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Library/include/PLStreamingKit/PLVideoStreamingConfiguration.h -------------------------------------------------------------------------------- /Example/Pods/KSCrash/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/KSCrash/LICENSE -------------------------------------------------------------------------------- /Example/Pods/KSCrash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/KSCrash/README.md -------------------------------------------------------------------------------- /Example/Pods/KSCrash/Source/KSCrash/Recording/KSCrash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/KSCrash/Source/KSCrash/Recording/KSCrash.h -------------------------------------------------------------------------------- /Example/Pods/KSCrash/Source/KSCrash/Recording/KSCrash.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/KSCrash/Source/KSCrash/Recording/KSCrash.m -------------------------------------------------------------------------------- /Example/Pods/KSCrash/Source/KSCrash/Recording/KSCrashAdvanced.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/KSCrash/Source/KSCrash/Recording/KSCrashAdvanced.h -------------------------------------------------------------------------------- /Example/Pods/KSCrash/Source/KSCrash/Recording/KSCrashC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/KSCrash/Source/KSCrash/Recording/KSCrashC.c -------------------------------------------------------------------------------- /Example/Pods/KSCrash/Source/KSCrash/Recording/KSCrashC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/KSCrash/Source/KSCrash/Recording/KSCrashC.h -------------------------------------------------------------------------------- /Example/Pods/KSCrash/Source/KSCrash/Recording/KSCrashContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/KSCrash/Source/KSCrash/Recording/KSCrashContext.h -------------------------------------------------------------------------------- /Example/Pods/KSCrash/Source/KSCrash/Recording/KSCrashDoctor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/KSCrash/Source/KSCrash/Recording/KSCrashDoctor.h -------------------------------------------------------------------------------- /Example/Pods/KSCrash/Source/KSCrash/Recording/KSCrashDoctor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/KSCrash/Source/KSCrash/Recording/KSCrashDoctor.m -------------------------------------------------------------------------------- /Example/Pods/KSCrash/Source/KSCrash/Recording/KSCrashReport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/KSCrash/Source/KSCrash/Recording/KSCrashReport.c -------------------------------------------------------------------------------- /Example/Pods/KSCrash/Source/KSCrash/Recording/KSCrashReport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/KSCrash/Source/KSCrash/Recording/KSCrashReport.h -------------------------------------------------------------------------------- /Example/Pods/KSCrash/Source/KSCrash/Recording/KSCrashReportFields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/KSCrash/Source/KSCrash/Recording/KSCrashReportFields.h -------------------------------------------------------------------------------- /Example/Pods/KSCrash/Source/KSCrash/Recording/KSCrashReportStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/KSCrash/Source/KSCrash/Recording/KSCrashReportStore.h -------------------------------------------------------------------------------- /Example/Pods/KSCrash/Source/KSCrash/Recording/KSCrashReportStore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/KSCrash/Source/KSCrash/Recording/KSCrashReportStore.m -------------------------------------------------------------------------------- /Example/Pods/KSCrash/Source/KSCrash/Recording/KSCrashReportVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/KSCrash/Source/KSCrash/Recording/KSCrashReportVersion.h -------------------------------------------------------------------------------- /Example/Pods/KSCrash/Source/KSCrash/Recording/KSCrashState.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/KSCrash/Source/KSCrash/Recording/KSCrashState.c -------------------------------------------------------------------------------- /Example/Pods/KSCrash/Source/KSCrash/Recording/KSCrashState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/KSCrash/Source/KSCrash/Recording/KSCrashState.h -------------------------------------------------------------------------------- /Example/Pods/KSCrash/Source/KSCrash/Recording/KSCrashType.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/KSCrash/Source/KSCrash/Recording/KSCrashType.c -------------------------------------------------------------------------------- /Example/Pods/KSCrash/Source/KSCrash/Recording/KSCrashType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/KSCrash/Source/KSCrash/Recording/KSCrashType.h -------------------------------------------------------------------------------- /Example/Pods/KSCrash/Source/KSCrash/Recording/KSSystemInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/KSCrash/Source/KSCrash/Recording/KSSystemInfo.h -------------------------------------------------------------------------------- /Example/Pods/KSCrash/Source/KSCrash/Recording/KSSystemInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/KSCrash/Source/KSCrash/Recording/KSSystemInfo.m -------------------------------------------------------------------------------- /Example/Pods/KSCrash/Source/KSCrash/Recording/KSSystemInfoC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/KSCrash/Source/KSCrash/Recording/KSSystemInfoC.h -------------------------------------------------------------------------------- /Example/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSBacktrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSBacktrace.c -------------------------------------------------------------------------------- /Example/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSBacktrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSBacktrace.h -------------------------------------------------------------------------------- /Example/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSFileUtils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSFileUtils.c -------------------------------------------------------------------------------- /Example/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSFileUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSFileUtils.h -------------------------------------------------------------------------------- /Example/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSJSONCodec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSJSONCodec.c -------------------------------------------------------------------------------- /Example/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSJSONCodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSJSONCodec.h -------------------------------------------------------------------------------- /Example/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSLogger.h -------------------------------------------------------------------------------- /Example/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSLogger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSLogger.m -------------------------------------------------------------------------------- /Example/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSMach.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSMach.c -------------------------------------------------------------------------------- /Example/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSMach.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSMach.h -------------------------------------------------------------------------------- /Example/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSMachApple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSMachApple.h -------------------------------------------------------------------------------- /Example/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSMach_Arm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSMach_Arm.c -------------------------------------------------------------------------------- /Example/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSObjC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSObjC.c -------------------------------------------------------------------------------- /Example/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSObjC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSObjC.h -------------------------------------------------------------------------------- /Example/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSObjCApple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSObjCApple.h -------------------------------------------------------------------------------- /Example/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSSingleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSSingleton.h -------------------------------------------------------------------------------- /Example/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSString.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSString.c -------------------------------------------------------------------------------- /Example/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSString.h -------------------------------------------------------------------------------- /Example/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSSysCtl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSSysCtl.c -------------------------------------------------------------------------------- /Example/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSSysCtl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSSysCtl.h -------------------------------------------------------------------------------- /Example/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSZombie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSZombie.h -------------------------------------------------------------------------------- /Example/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSZombie.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSZombie.m -------------------------------------------------------------------------------- /Example/Pods/KSCrash/Source/KSCrash/Reporting/Tools/KSCString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/KSCrash/Source/KSCrash/Reporting/Tools/KSCString.h -------------------------------------------------------------------------------- /Example/Pods/KSCrash/Source/KSCrash/Reporting/Tools/KSCString.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/KSCrash/Source/KSCrash/Reporting/Tools/KSCString.m -------------------------------------------------------------------------------- /Example/Pods/KSCrash/Source/KSCrash/llvm/ADT/None.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/KSCrash/Source/KSCrash/llvm/ADT/None.h -------------------------------------------------------------------------------- /Example/Pods/KSCrash/Source/KSCrash/llvm/ADT/Optional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/KSCrash/Source/KSCrash/llvm/ADT/Optional.h -------------------------------------------------------------------------------- /Example/Pods/KSCrash/Source/KSCrash/llvm/ADT/StringRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/KSCrash/Source/KSCrash/llvm/ADT/StringRef.h -------------------------------------------------------------------------------- /Example/Pods/KSCrash/Source/KSCrash/llvm/Config/llvm-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/KSCrash/Source/KSCrash/llvm/Config/llvm-config.h -------------------------------------------------------------------------------- /Example/Pods/KSCrash/Source/KSCrash/llvm/Support/AlignOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/KSCrash/Source/KSCrash/llvm/Support/AlignOf.h -------------------------------------------------------------------------------- /Example/Pods/KSCrash/Source/KSCrash/llvm/Support/Casting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/KSCrash/Source/KSCrash/llvm/Support/Casting.h -------------------------------------------------------------------------------- /Example/Pods/KSCrash/Source/KSCrash/llvm/Support/Compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/KSCrash/Source/KSCrash/llvm/Support/Compiler.h -------------------------------------------------------------------------------- /Example/Pods/KSCrash/Source/KSCrash/llvm/Support/type_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/KSCrash/Source/KSCrash/llvm/Support/type_traits.h -------------------------------------------------------------------------------- /Example/Pods/KSCrash/Source/KSCrash/swift/Basic/Demangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/KSCrash/Source/KSCrash/swift/Basic/Demangle.cpp -------------------------------------------------------------------------------- /Example/Pods/KSCrash/Source/KSCrash/swift/Basic/Demangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/KSCrash/Source/KSCrash/swift/Basic/Demangle.h -------------------------------------------------------------------------------- /Example/Pods/KSCrash/Source/KSCrash/swift/Basic/DemangleNodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/KSCrash/Source/KSCrash/swift/Basic/DemangleNodes.h -------------------------------------------------------------------------------- /Example/Pods/KSCrash/Source/KSCrash/swift/Basic/Fallthrough.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/KSCrash/Source/KSCrash/swift/Basic/Fallthrough.h -------------------------------------------------------------------------------- /Example/Pods/KSCrash/Source/KSCrash/swift/Basic/LLVM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/KSCrash/Source/KSCrash/swift/Basic/LLVM.h -------------------------------------------------------------------------------- /Example/Pods/KSCrash/Source/KSCrash/swift/Basic/Malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/KSCrash/Source/KSCrash/swift/Basic/Malloc.h -------------------------------------------------------------------------------- /Example/Pods/KSCrash/Source/KSCrash/swift/Basic/Punycode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/KSCrash/Source/KSCrash/swift/Basic/Punycode.cpp -------------------------------------------------------------------------------- /Example/Pods/KSCrash/Source/KSCrash/swift/Basic/Punycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/KSCrash/Source/KSCrash/swift/Basic/Punycode.h -------------------------------------------------------------------------------- /Example/Pods/KSCrash/Source/KSCrash/swift/SwiftStrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/KSCrash/Source/KSCrash/swift/SwiftStrings.h -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/PLStreamingKit.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/Local Podspecs/PLStreamingKit.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/GPUImage/GPUImage-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/Target Support Files/GPUImage/GPUImage-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/GPUImage/GPUImage-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/Target Support Files/GPUImage/GPUImage-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/GPUImage/GPUImage-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/Target Support Files/GPUImage/GPUImage-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/GPUImage/GPUImage.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/Target Support Files/GPUImage/GPUImage.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/GPUImage/GPUImage.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/Target Support Files/GPUImage/GPUImage.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/GPUImage/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/Target Support Files/GPUImage/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/HappyDNS/HappyDNS-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/Target Support Files/HappyDNS/HappyDNS-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/HappyDNS/HappyDNS-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/Target Support Files/HappyDNS/HappyDNS-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/HappyDNS/HappyDNS-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/Target Support Files/HappyDNS/HappyDNS-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/HappyDNS/HappyDNS.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/Target Support Files/HappyDNS/HappyDNS.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/HappyDNS/HappyDNS.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/Target Support Files/HappyDNS/HappyDNS.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/HappyDNS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/Target Support Files/HappyDNS/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/KSCrash/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/Target Support Files/KSCrash/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/KSCrash/KSCrash-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/Target Support Files/KSCrash/KSCrash-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/KSCrash/KSCrash-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/Target Support Files/KSCrash/KSCrash-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/KSCrash/KSCrash-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/Target Support Files/KSCrash/KSCrash-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/KSCrash/KSCrash.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/Target Support Files/KSCrash/KSCrash.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/KSCrash/KSCrash.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/Target Support Files/KSCrash/KSCrash.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/pili-librtmp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/Target Support Files/pili-librtmp/Info.plist -------------------------------------------------------------------------------- /Example/Pods/pili-librtmp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/pili-librtmp/LICENSE -------------------------------------------------------------------------------- /Example/Pods/pili-librtmp/Pod/Classes/pili-librtmp/amf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/pili-librtmp/Pod/Classes/pili-librtmp/amf.c -------------------------------------------------------------------------------- /Example/Pods/pili-librtmp/Pod/Classes/pili-librtmp/amf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/pili-librtmp/Pod/Classes/pili-librtmp/amf.h -------------------------------------------------------------------------------- /Example/Pods/pili-librtmp/Pod/Classes/pili-librtmp/bytes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/pili-librtmp/Pod/Classes/pili-librtmp/bytes.h -------------------------------------------------------------------------------- /Example/Pods/pili-librtmp/Pod/Classes/pili-librtmp/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/pili-librtmp/Pod/Classes/pili-librtmp/dh.h -------------------------------------------------------------------------------- /Example/Pods/pili-librtmp/Pod/Classes/pili-librtmp/dhgroups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/pili-librtmp/Pod/Classes/pili-librtmp/dhgroups.h -------------------------------------------------------------------------------- /Example/Pods/pili-librtmp/Pod/Classes/pili-librtmp/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/pili-librtmp/Pod/Classes/pili-librtmp/error.c -------------------------------------------------------------------------------- /Example/Pods/pili-librtmp/Pod/Classes/pili-librtmp/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/pili-librtmp/Pod/Classes/pili-librtmp/error.h -------------------------------------------------------------------------------- /Example/Pods/pili-librtmp/Pod/Classes/pili-librtmp/handshake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/pili-librtmp/Pod/Classes/pili-librtmp/handshake.h -------------------------------------------------------------------------------- /Example/Pods/pili-librtmp/Pod/Classes/pili-librtmp/hashswf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/pili-librtmp/Pod/Classes/pili-librtmp/hashswf.c -------------------------------------------------------------------------------- /Example/Pods/pili-librtmp/Pod/Classes/pili-librtmp/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/pili-librtmp/Pod/Classes/pili-librtmp/http.h -------------------------------------------------------------------------------- /Example/Pods/pili-librtmp/Pod/Classes/pili-librtmp/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/pili-librtmp/Pod/Classes/pili-librtmp/log.c -------------------------------------------------------------------------------- /Example/Pods/pili-librtmp/Pod/Classes/pili-librtmp/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/pili-librtmp/Pod/Classes/pili-librtmp/log.h -------------------------------------------------------------------------------- /Example/Pods/pili-librtmp/Pod/Classes/pili-librtmp/parseurl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/pili-librtmp/Pod/Classes/pili-librtmp/parseurl.c -------------------------------------------------------------------------------- /Example/Pods/pili-librtmp/Pod/Classes/pili-librtmp/rtmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/pili-librtmp/Pod/Classes/pili-librtmp/rtmp.c -------------------------------------------------------------------------------- /Example/Pods/pili-librtmp/Pod/Classes/pili-librtmp/rtmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/pili-librtmp/Pod/Classes/pili-librtmp/rtmp.h -------------------------------------------------------------------------------- /Example/Pods/pili-librtmp/Pod/Classes/pili-librtmp/rtmp_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Example/Pods/pili-librtmp/Pod/Classes/pili-librtmp/rtmp_sys.h -------------------------------------------------------------------------------- /Example/Pods/pili-librtmp/README.md: -------------------------------------------------------------------------------- 1 | # librtmp 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/LICENSE -------------------------------------------------------------------------------- /PLStreamingKit.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/PLStreamingKit.podspec -------------------------------------------------------------------------------- /Pod/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Library/include/PLStreamingKit/PLBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Pod/Library/include/PLStreamingKit/PLBuffer.h -------------------------------------------------------------------------------- /Pod/Library/include/PLStreamingKit/PLMacroDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Pod/Library/include/PLStreamingKit/PLMacroDefines.h -------------------------------------------------------------------------------- /Pod/Library/include/PLStreamingKit/PLStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Pod/Library/include/PLStreamingKit/PLStream.h -------------------------------------------------------------------------------- /Pod/Library/include/PLStreamingKit/PLStreamStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Pod/Library/include/PLStreamingKit/PLStreamStatus.h -------------------------------------------------------------------------------- /Pod/Library/include/PLStreamingKit/PLStreamingEnv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Pod/Library/include/PLStreamingKit/PLStreamingEnv.h -------------------------------------------------------------------------------- /Pod/Library/include/PLStreamingKit/PLStreamingKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Pod/Library/include/PLStreamingKit/PLStreamingKit.h -------------------------------------------------------------------------------- /Pod/Library/include/PLStreamingKit/PLStreamingSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Pod/Library/include/PLStreamingKit/PLStreamingSession.h -------------------------------------------------------------------------------- /Pod/Library/include/PLStreamingKit/PLTypeDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Pod/Library/include/PLStreamingKit/PLTypeDefines.h -------------------------------------------------------------------------------- /Pod/Library/lib/libPLStreamingKit.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/Pod/Library/lib/libPLStreamingKit.a -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/README.md -------------------------------------------------------------------------------- /ReleaseNotes/release-notes-1.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/ReleaseNotes/release-notes-1.0.0.md -------------------------------------------------------------------------------- /ReleaseNotes/release-notes-1.0.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/ReleaseNotes/release-notes-1.0.1.md -------------------------------------------------------------------------------- /ReleaseNotes/release-notes-1.0.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/ReleaseNotes/release-notes-1.0.2.md -------------------------------------------------------------------------------- /ReleaseNotes/release-notes-1.0.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/ReleaseNotes/release-notes-1.0.3.md -------------------------------------------------------------------------------- /ReleaseNotes/release-notes-1.1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/ReleaseNotes/release-notes-1.1.0.md -------------------------------------------------------------------------------- /ReleaseNotes/release-notes-1.1.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/ReleaseNotes/release-notes-1.1.1.md -------------------------------------------------------------------------------- /ReleaseNotes/release-notes-1.1.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/ReleaseNotes/release-notes-1.1.2.md -------------------------------------------------------------------------------- /ReleaseNotes/release-notes-1.1.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/ReleaseNotes/release-notes-1.1.3.md -------------------------------------------------------------------------------- /ReleaseNotes/release-notes-1.1.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/ReleaseNotes/release-notes-1.1.4.md -------------------------------------------------------------------------------- /ReleaseNotes/release-notes-1.1.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/ReleaseNotes/release-notes-1.1.5.md -------------------------------------------------------------------------------- /ReleaseNotes/release-notes-1.1.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/ReleaseNotes/release-notes-1.1.6.md -------------------------------------------------------------------------------- /ReleaseNotes/release-notes-1.2.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/ReleaseNotes/release-notes-1.2.0.md -------------------------------------------------------------------------------- /ReleaseNotes/release-notes-1.2.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/ReleaseNotes/release-notes-1.2.1.md -------------------------------------------------------------------------------- /ReleaseNotes/release-notes-1.2.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/ReleaseNotes/release-notes-1.2.2.md -------------------------------------------------------------------------------- /ReleaseNotes/release-notes-1.2.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/ReleaseNotes/release-notes-1.2.3.md -------------------------------------------------------------------------------- /ReleaseNotes/release-notes-1.2.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/ReleaseNotes/release-notes-1.2.4.md -------------------------------------------------------------------------------- /ReleaseNotes/release-notes-1.2.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/ReleaseNotes/release-notes-1.2.5.md -------------------------------------------------------------------------------- /header-doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/header-doc.png -------------------------------------------------------------------------------- /screensnap/broadcast-extension-create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/screensnap/broadcast-extension-create.png -------------------------------------------------------------------------------- /screensnap/creatproject-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/screensnap/creatproject-02.jpg -------------------------------------------------------------------------------- /screensnap/creatproject.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/screensnap/creatproject.jpg -------------------------------------------------------------------------------- /screensnap/extension-cocoapods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/screensnap/extension-cocoapods.png -------------------------------------------------------------------------------- /screensnap/permession.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pili-engineering/PLStreamingKit/HEAD/screensnap/permession.jpg --------------------------------------------------------------------------------