├── .gitignore ├── DYVideoCamera.podspec ├── DYVideoCamera.xcodeproj └── project.pbxproj ├── DYVideoCamera ├── Assets │ ├── .gitkeep │ └── a.png ├── Classes │ ├── .gitkeep │ ├── DYFilterEntity.h │ ├── DYMusicCategory.h │ ├── DYMusicEntity.h │ ├── DYUI │ │ ├── DYFilterEntityViewModel.h │ │ ├── DYFilterEntityViewModel.m │ │ ├── DYOnlineMusicLibraryViewController.h │ │ ├── DYOnlineMusicLibraryViewController.m │ │ ├── DYSegmentPrograssView.h │ │ ├── DYSegmentPrograssView.m │ │ ├── DYVideoEditorViewController.h │ │ ├── DYVideoEditorViewController.m │ │ ├── DYVideoFilterCollectionViewCell.h │ │ ├── DYVideoFilterCollectionViewCell.m │ │ ├── DYVideoNavViewController.h │ │ ├── DYVideoNavViewController.m │ │ ├── DYVideoRecoderViewController.h │ │ └── DYVideoRecoderViewController.m │ ├── DYVMConstants+Private.h │ ├── DYVMConstants+Private.m │ ├── DYVideoEditorController │ │ ├── DYVideoEditorController.h │ │ ├── DYVideoEditorController.m │ │ ├── SAResizibleBubble.h │ │ ├── SAResizibleBubble.m │ │ ├── SASliderLeft.h │ │ ├── SASliderLeft.m │ │ ├── SASliderRight.h │ │ ├── SASliderRight.m │ │ ├── SAVideoRangeSlider.h │ │ └── SAVideoRangeSlider.m │ ├── DYVideoModule.h │ ├── DYVideoModuleDataSource.h │ ├── DYVideoSDK │ │ ├── DYCameraEngine.h │ │ ├── DYCameraEngine.m │ │ ├── DYFilterEngine.h │ │ ├── DYFilterEngine.m │ │ ├── DYGPUImageMovieWriter.h │ │ ├── DYGPUImageMovieWriter.m │ │ ├── DYSDKFilterResources │ │ │ ├── DYGPUImageEmptyFilter.h │ │ │ ├── DYGPUImageEmptyFilter.m │ │ │ ├── DYGPUImageLookupFilter.h │ │ │ ├── DYGPUImageLookupFilter.m │ │ │ ├── GPUImageBeautifyFilter.h │ │ │ └── GPUImageBeautifyFilter.m │ │ ├── DYVideoProcess.h │ │ ├── DYVideoProcess.m │ │ ├── DYVideoProcessEngine.h │ │ ├── DYVideoProcessEngine.m │ │ └── DYVideoSDK.h │ ├── DYvideoAlbum │ │ ├── DYAssetModel.h │ │ ├── DYAssetModel.m │ │ ├── DYImageManager.h │ │ ├── DYImageManager.m │ │ ├── DYVideoAlbumCollectionViewCell.h │ │ ├── DYVideoAlbumCollectionViewCell.m │ │ ├── DYVideoAlbumPlayerViewController.h │ │ ├── DYVideoAlbumPlayerViewController.m │ │ ├── DYVideoPickerController.h │ │ └── DYVideoPickerController.m │ └── OTScreenshotHelper │ │ ├── Private │ │ ├── ComOpenThreadOTScreenshotHelperSwizzleHelper.h │ │ ├── ComOpenThreadOTScreenshotHelperSwizzleHelper.m │ │ ├── UIView+ComOpenThreadOTScreenshotHelperStatusBarReference.h │ │ └── UIView+ComOpenThreadOTScreenshotHelperStatusBarReference.m │ │ └── Public │ │ ├── OTScreenshotHelper.h │ │ └── OTScreenshotHelper.m └── Media.xcassets │ ├── Contents.json │ ├── circle.imageset │ ├── Contents.json │ └── circle.pdf │ ├── icBeautiful.imageset │ ├── Contents.json │ └── icBeautiful.pdf │ ├── icBeautifulSelected.imageset │ ├── Contents.json │ └── icBeautifulSelected.pdf │ ├── icBlackback.imageset │ ├── Contents.json │ └── icBlackback.pdf │ ├── icCamera.imageset │ ├── Contents.json │ └── icCamera.pdf │ ├── icCancel.imageset │ ├── Contents.json │ └── icCancel.pdf │ ├── icDefault.imageset │ ├── Contents.json │ └── icDefault.pdf │ ├── icDelete.imageset │ ├── Contents.json │ └── icDelete.pdf │ ├── icFilter.imageset │ ├── Contents.json │ └── icFilter.pdf │ ├── icFilterSeleted.imageset │ ├── Contents.json │ └── icFilterSeleted.pdf │ ├── icLeftSlider.imageset │ ├── Contents.json │ └── icLeftSlider.pdf │ ├── icMusic.imageset │ ├── Contents.json │ └── icMusic.pdf │ ├── icMusic19.imageset │ ├── Contents.json │ └── icMusic19.pdf │ ├── icPlay.imageset │ ├── Contents.json │ └── icPlay.pdf │ ├── icRightSlider.imageset │ ├── Contents.json │ └── icRightSlider.pdf │ ├── icShadow.imageset │ ├── Contents.json │ └── icShadow.pdf │ ├── icSmallplay.imageset │ ├── Contents.json │ └── icSmallplay.pdf │ ├── icVideo.imageset │ ├── Contents.json │ └── icVideo.pdf │ ├── icVideoAlbumPlayBtn.imageset │ ├── Contents.json │ └── icVideoAlbumPlayBtn.pdf │ ├── icVideoAlbumSelected.imageset │ ├── Contents.json │ └── icVideoAlbumSelected.pdf │ ├── icVideocut.imageset │ ├── Contents.json │ └── icVideocut.pdf │ ├── icWhiteback.imageset │ ├── Contents.json │ └── icWhiteback.pdf │ ├── music_loading.dataset │ ├── Contents.json │ └── music_loading.json │ └── playingblack.dataset │ ├── Contents.json │ └── playingblack.json ├── Example ├── DYVideoCamera.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── DYVideoCamera-Example.xcscheme │ └── xcuserdata │ │ └── videopls.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── DYVideoCamera.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── videopls.xcuserdatad │ │ └── UserInterfaceState.xcuserstate ├── DYVideoCamera │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── DYAppDelegate.h │ ├── DYAppDelegate.m │ ├── DYVideoCamera-Info.plist │ ├── DYVideoCamera-Prefix.pch │ ├── DYViewController.h │ ├── DYViewController.m │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── FX10.imageset │ │ │ ├── Contents.json │ │ │ └── FX10.png │ │ ├── IMG_1907_复古Filter_1.3.4.imageset │ │ │ ├── Contents.json │ │ │ └── IMG_1907_复古Filter_1.3.4.jpg │ │ ├── IMG_1907_清新Filter_1.3.2.imageset │ │ │ ├── Contents.json │ │ │ └── IMG_1907_清新Filter_1.3.2.jpg │ │ ├── IMG_1942_复古Filter_1.3.3.imageset │ │ │ ├── Contents.json │ │ │ └── IMG_1942_复古Filter_1.3.3.jpg │ │ ├── IMG_1942_清新Filter_1.3.1.imageset │ │ │ ├── Contents.json │ │ │ └── IMG_1942_清新Filter_1.3.1.jpg │ │ ├── TEST_1.3.3.imageset │ │ │ ├── Contents.json │ │ │ └── TEST_1.3.3.png │ │ ├── filter_1.3.10黑白1.tif.imageset │ │ │ ├── Contents.json │ │ │ └── filter_1.3.10黑白1.tif.png │ │ ├── filter_1.3.11黑白2.imageset │ │ │ ├── Contents.json │ │ │ └── filter_1.3.11黑白2.png │ │ ├── filter_1.3.11黑白2.tif.imageset │ │ │ ├── Contents.json │ │ │ └── filter_1.3.11黑白2.tif.png │ │ ├── filter_1.3.12波普.tif.imageset │ │ │ ├── Contents.json │ │ │ └── filter_1.3.12波普.tif.png │ │ ├── filter_1.3.12黑白3.tif.imageset │ │ │ ├── Contents.json │ │ │ └── filter_1.3.12黑白3.tif.png │ │ ├── filter_1.3.13高怪.tif.imageset │ │ │ ├── Contents.json │ │ │ └── filter_1.3.13高怪.tif.png │ │ ├── filter_1.3.13黑白3.tif.imageset │ │ │ ├── Contents.json │ │ │ └── filter_1.3.13黑白3.tif.png │ │ ├── filter_1.3.14暗房.tif.imageset │ │ │ ├── Contents.json │ │ │ └── filter_1.3.14暗房.tif.png │ │ ├── filter_1.3.1白天紫色.tif.imageset │ │ │ ├── Contents.json │ │ │ └── filter_1.3.1白天紫色.tif.png │ │ ├── filter_1.3.1野餐.tif.imageset │ │ │ ├── Contents.json │ │ │ └── filter_1.3.1野餐.tif.png │ │ ├── filter_1.3.2波普.tif.imageset │ │ │ ├── Contents.json │ │ │ └── filter_1.3.2波普.tif.png │ │ ├── filter_1.3.2清新.imageset │ │ │ ├── Contents.json │ │ │ └── filter_1.3.2清新.png │ │ ├── filter_1.3.2清新.tif.imageset │ │ │ ├── Contents.json │ │ │ └── filter_1.3.2清新.tif.png │ │ ├── filter_1.3.2清新2.imageset │ │ │ ├── Contents.json │ │ │ └── filter_1.3.2清新2.png │ │ ├── filter_1.3.3夜晚紫色.tif.imageset │ │ │ ├── Contents.json │ │ │ └── filter_1.3.3夜晚紫色.tif.png │ │ ├── filter_1.3.3过曝.tif.imageset │ │ │ ├── Contents.json │ │ │ └── filter_1.3.3过曝.tif.png │ │ ├── filter_1.3.4粉红.imageset │ │ │ ├── Contents.json │ │ │ └── filter_1.3.4粉红.png │ │ ├── filter_1.3.4粉红.tif.imageset │ │ │ ├── Contents.json │ │ │ └── filter_1.3.4粉红.tif.png │ │ ├── filter_1.3.4粉红2.imageset │ │ │ ├── Contents.json │ │ │ └── filter_1.3.4粉红2.png │ │ ├── filter_1.3.5低饱和.imageset │ │ │ ├── Contents.json │ │ │ └── filter_1.3.5低饱和.png │ │ ├── filter_1.3.5低饱和.tif.imageset │ │ │ ├── Contents.json │ │ │ └── filter_1.3.5低饱和.tif.png │ │ ├── filter_1.3.6红绿突出.tif.imageset │ │ │ ├── Contents.json │ │ │ └── filter_1.3.6红绿突出.tif.png │ │ ├── filter_1.3.7黄绿突出.tif.imageset │ │ │ ├── Contents.json │ │ │ └── filter_1.3.7黄绿突出.tif.png │ │ ├── filter_1.3.8高饱和.tif.imageset │ │ │ ├── Contents.json │ │ │ └── filter_1.3.8高饱和.tif.png │ │ ├── filter_1.3.9夜生活.tif.imageset │ │ │ ├── Contents.json │ │ │ └── filter_1.3.9夜生活.tif.png │ │ ├── musicItems │ │ │ ├── Contents.json │ │ │ ├── icClassical.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icClassical.pdf │ │ │ ├── icClassicalSelected.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icClassicalSelected.pdf │ │ │ ├── icExciting.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icExciting.pdf │ │ │ ├── icExcitingSelected.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icExcitingSelected.pdf │ │ │ ├── icHappy.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icHappy.pdf │ │ │ ├── icHappySelected.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icHappySelected.pdf │ │ │ ├── icHot.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icHot.pdf │ │ │ ├── icHotSelected.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icHotSelected.pdf │ │ │ ├── icLove.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icLove.pdf │ │ │ ├── icLoveSelected.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icLoveSelected.pdf │ │ │ ├── icMovie.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icMovie.pdf │ │ │ ├── icMovieSelected.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icMovieSelected.pdf │ │ │ ├── icNew.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icNew.pdf │ │ │ ├── icNewSelected.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icNewSelected.pdf │ │ │ ├── icQuiet.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icQuiet.pdf │ │ │ ├── icQuietSelected.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icQuietSelected.pdf │ │ │ ├── icSad.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icSad.pdf │ │ │ └── icSadSelected.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icSadSelected.pdf │ │ ├── 日系清新-红.imageset │ │ │ ├── Contents.json │ │ │ └── 日系清新-红.png │ │ ├── 日系清新-绿.imageset │ │ │ ├── Contents.json │ │ │ └── 日系清新-绿.png │ │ ├── 日系清新-蓝.imageset │ │ │ ├── Contents.json │ │ │ └── 日系清新-蓝.png │ │ └── 红色反色.imageset │ │ │ ├── Contents.json │ │ │ └── 红色反色.png │ ├── Models │ │ ├── FilterEntity.h │ │ ├── FilterEntity.m │ │ ├── MusicCategory.h │ │ ├── MusicCategory.m │ │ ├── MusicEntity.h │ │ ├── MusicEntity.m │ │ ├── VideoModuleDataSourceMock.h │ │ └── VideoModuleDataSourceMock.m │ ├── UIAlertController+Window.h │ ├── UIAlertController+Window.m │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m ├── Podfile ├── Pods │ ├── Headers │ │ ├── Private │ │ │ ├── CocoaAsyncSocket │ │ │ │ ├── GCDAsyncSocket.h │ │ │ │ └── GCDAsyncUdpSocket.h │ │ │ ├── CocoaLumberjack │ │ │ │ ├── CLIColor.h │ │ │ │ ├── CocoaLumberjack.h │ │ │ │ ├── DDASLLogCapture.h │ │ │ │ ├── DDASLLogger.h │ │ │ │ ├── DDAbstractDatabaseLogger.h │ │ │ │ ├── DDAssertMacros.h │ │ │ │ ├── DDContextFilterLogFormatter.h │ │ │ │ ├── DDDispatchQueueLogFormatter.h │ │ │ │ ├── DDFileLogger+Buffering.h │ │ │ │ ├── DDFileLogger+Internal.h │ │ │ │ ├── DDFileLogger.h │ │ │ │ ├── DDLegacyMacros.h │ │ │ │ ├── DDLog+LOGV.h │ │ │ │ ├── DDLog.h │ │ │ │ ├── DDLogMacros.h │ │ │ │ ├── DDLoggerNames.h │ │ │ │ ├── DDMultiFormatter.h │ │ │ │ ├── DDOSLogger.h │ │ │ │ └── DDTTYLogger.h │ │ │ ├── DYVideoCamera │ │ │ │ ├── ComOpenThreadOTScreenshotHelperSwizzleHelper.h │ │ │ │ ├── DYAssetModel.h │ │ │ │ ├── DYCameraEngine.h │ │ │ │ ├── DYFilterEngine.h │ │ │ │ ├── DYFilterEntity.h │ │ │ │ ├── DYFilterEntityViewModel.h │ │ │ │ ├── DYGPUImageEmptyFilter.h │ │ │ │ ├── DYGPUImageLookupFilter.h │ │ │ │ ├── DYGPUImageMovieWriter.h │ │ │ │ ├── DYImageManager.h │ │ │ │ ├── DYMusicCategory.h │ │ │ │ ├── DYMusicEntity.h │ │ │ │ ├── DYOnlineMusicLibraryViewController.h │ │ │ │ ├── DYSegmentPrograssView.h │ │ │ │ ├── DYVMConstants+Private.h │ │ │ │ ├── DYVideoAlbumCollectionViewCell.h │ │ │ │ ├── DYVideoAlbumPlayerViewController.h │ │ │ │ ├── DYVideoEditorController.h │ │ │ │ ├── DYVideoEditorViewController.h │ │ │ │ ├── DYVideoFilterCollectionViewCell.h │ │ │ │ ├── DYVideoModule.h │ │ │ │ ├── DYVideoModuleDataSource.h │ │ │ │ ├── DYVideoNavViewController.h │ │ │ │ ├── DYVideoPickerController.h │ │ │ │ ├── DYVideoProcess.h │ │ │ │ ├── DYVideoProcessEngine.h │ │ │ │ ├── DYVideoRecoderViewController.h │ │ │ │ ├── DYVideoSDK.h │ │ │ │ ├── GPUImageBeautifyFilter.h │ │ │ │ ├── OTScreenshotHelper.h │ │ │ │ ├── SAResizibleBubble.h │ │ │ │ ├── SASliderLeft.h │ │ │ │ ├── SASliderRight.h │ │ │ │ ├── SAVideoRangeSlider.h │ │ │ │ └── UIView+ComOpenThreadOTScreenshotHelperStatusBarReference.h │ │ │ ├── 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 │ │ │ │ ├── GPUImageColorConversion.h │ │ │ │ ├── GPUImageColorDodgeBlendFilter.h │ │ │ │ ├── GPUImageColorInvertFilter.h │ │ │ │ ├── GPUImageColorLocalBinaryPatternFilter.h │ │ │ │ ├── GPUImageColorMatrixFilter.h │ │ │ │ ├── GPUImageColorPackingFilter.h │ │ │ │ ├── GPUImageColourFASTFeatureDetector.h │ │ │ │ ├── GPUImageColourFASTSamplingOperation.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 │ │ │ │ ├── GPUImageFourInputFilter.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 │ │ │ │ ├── GPUImageHighlightShadowTintFilter.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 │ │ │ │ ├── GPUImageSkinToneFilter.h │ │ │ │ ├── GPUImageSmoothToonFilter.h │ │ │ │ ├── GPUImageSobelEdgeDetectionFilter.h │ │ │ │ ├── GPUImageSoftEleganceFilter.h │ │ │ │ ├── GPUImageSoftLightBlendFilter.h │ │ │ │ ├── GPUImageSolarizeFilter.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 │ │ │ │ ├── GPUImageVibranceFilter.h │ │ │ │ ├── GPUImageVideoCamera.h │ │ │ │ ├── GPUImageView.h │ │ │ │ ├── GPUImageVignetteFilter.h │ │ │ │ ├── GPUImageVoronoiConsumerFilter.h │ │ │ │ ├── GPUImageWeakPixelInclusionFilter.h │ │ │ │ ├── GPUImageWhiteBalanceFilter.h │ │ │ │ ├── GPUImageXYDerivativeFilter.h │ │ │ │ ├── GPUImageZoomBlurFilter.h │ │ │ │ └── GPUImageiOSBlurFilter.h │ │ │ ├── MBProgressHUD │ │ │ │ └── MBProgressHUD.h │ │ │ ├── Masonry │ │ │ │ ├── MASCompositeConstraint.h │ │ │ │ ├── MASConstraint+Private.h │ │ │ │ ├── MASConstraint.h │ │ │ │ ├── MASConstraintMaker.h │ │ │ │ ├── MASLayoutConstraint.h │ │ │ │ ├── MASUtilities.h │ │ │ │ ├── MASViewAttribute.h │ │ │ │ ├── MASViewConstraint.h │ │ │ │ ├── Masonry.h │ │ │ │ ├── NSArray+MASAdditions.h │ │ │ │ ├── NSArray+MASShorthandAdditions.h │ │ │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ │ │ ├── View+MASAdditions.h │ │ │ │ ├── View+MASShorthandAdditions.h │ │ │ │ └── ViewController+MASAdditions.h │ │ │ └── lottie-ios_Oc │ │ │ │ ├── CALayer+Compat.h │ │ │ │ ├── CGGeometry+LOTAdditions.h │ │ │ │ ├── LOTAnimatedControl.h │ │ │ │ ├── LOTAnimatedSwitch.h │ │ │ │ ├── LOTAnimationCache.h │ │ │ │ ├── LOTAnimationTransitionController.h │ │ │ │ ├── LOTAnimationView.h │ │ │ │ ├── LOTAnimationView_Compat.h │ │ │ │ ├── LOTAnimationView_Internal.h │ │ │ │ ├── LOTAnimatorNode.h │ │ │ │ ├── LOTArrayInterpolator.h │ │ │ │ ├── LOTAsset.h │ │ │ │ ├── LOTAssetGroup.h │ │ │ │ ├── LOTBezierData.h │ │ │ │ ├── LOTBezierPath.h │ │ │ │ ├── LOTBlockCallback.h │ │ │ │ ├── LOTCacheProvider.h │ │ │ │ ├── LOTCircleAnimator.h │ │ │ │ ├── LOTColorInterpolator.h │ │ │ │ ├── LOTComposition.h │ │ │ │ ├── LOTCompositionContainer.h │ │ │ │ ├── LOTFillRenderer.h │ │ │ │ ├── LOTGradientFillRender.h │ │ │ │ ├── LOTHelpers.h │ │ │ │ ├── LOTInterpolatorCallback.h │ │ │ │ ├── LOTKeyframe.h │ │ │ │ ├── LOTKeypath.h │ │ │ │ ├── LOTLayer.h │ │ │ │ ├── LOTLayerContainer.h │ │ │ │ ├── LOTLayerGroup.h │ │ │ │ ├── LOTMask.h │ │ │ │ ├── LOTMaskContainer.h │ │ │ │ ├── LOTModels.h │ │ │ │ ├── LOTNumberInterpolator.h │ │ │ │ ├── LOTPathAnimator.h │ │ │ │ ├── LOTPathInterpolator.h │ │ │ │ ├── LOTPlatformCompat.h │ │ │ │ ├── LOTPointInterpolator.h │ │ │ │ ├── LOTPolygonAnimator.h │ │ │ │ ├── LOTPolystarAnimator.h │ │ │ │ ├── LOTRadialGradientLayer.h │ │ │ │ ├── LOTRenderGroup.h │ │ │ │ ├── LOTRenderNode.h │ │ │ │ ├── LOTRepeaterRenderer.h │ │ │ │ ├── LOTRoundedRectAnimator.h │ │ │ │ ├── LOTShapeCircle.h │ │ │ │ ├── LOTShapeFill.h │ │ │ │ ├── LOTShapeGradientFill.h │ │ │ │ ├── LOTShapeGroup.h │ │ │ │ ├── LOTShapePath.h │ │ │ │ ├── LOTShapeRectangle.h │ │ │ │ ├── LOTShapeRepeater.h │ │ │ │ ├── LOTShapeStar.h │ │ │ │ ├── LOTShapeStroke.h │ │ │ │ ├── LOTShapeTransform.h │ │ │ │ ├── LOTShapeTrimPath.h │ │ │ │ ├── LOTSizeInterpolator.h │ │ │ │ ├── LOTStrokeRenderer.h │ │ │ │ ├── LOTTransformInterpolator.h │ │ │ │ ├── LOTTrimPathNode.h │ │ │ │ ├── LOTValueCallback.h │ │ │ │ ├── LOTValueDelegate.h │ │ │ │ ├── LOTValueInterpolator.h │ │ │ │ ├── Lottie.h │ │ │ │ ├── NSValue+Compat.h │ │ │ │ ├── UIBezierPath.h │ │ │ │ ├── UIColor+Expanded.h │ │ │ │ └── UIColor.h │ │ └── Public │ │ │ ├── CocoaAsyncSocket │ │ │ ├── GCDAsyncSocket.h │ │ │ └── GCDAsyncUdpSocket.h │ │ │ ├── CocoaLumberjack │ │ │ ├── CLIColor.h │ │ │ ├── CocoaLumberjack.h │ │ │ ├── DDASLLogCapture.h │ │ │ ├── DDASLLogger.h │ │ │ ├── DDAbstractDatabaseLogger.h │ │ │ ├── DDAssertMacros.h │ │ │ ├── DDContextFilterLogFormatter.h │ │ │ ├── DDDispatchQueueLogFormatter.h │ │ │ ├── DDFileLogger+Buffering.h │ │ │ ├── DDFileLogger.h │ │ │ ├── DDLegacyMacros.h │ │ │ ├── DDLog+LOGV.h │ │ │ ├── DDLog.h │ │ │ ├── DDLogMacros.h │ │ │ ├── DDLoggerNames.h │ │ │ ├── DDMultiFormatter.h │ │ │ ├── DDOSLogger.h │ │ │ └── DDTTYLogger.h │ │ │ ├── DYVideoCamera │ │ │ ├── ComOpenThreadOTScreenshotHelperSwizzleHelper.h │ │ │ ├── DYAssetModel.h │ │ │ ├── DYCameraEngine.h │ │ │ ├── DYFilterEngine.h │ │ │ ├── DYFilterEntity.h │ │ │ ├── DYFilterEntityViewModel.h │ │ │ ├── DYGPUImageEmptyFilter.h │ │ │ ├── DYGPUImageLookupFilter.h │ │ │ ├── DYGPUImageMovieWriter.h │ │ │ ├── DYImageManager.h │ │ │ ├── DYMusicCategory.h │ │ │ ├── DYMusicEntity.h │ │ │ ├── DYOnlineMusicLibraryViewController.h │ │ │ ├── DYSegmentPrograssView.h │ │ │ ├── DYVMConstants+Private.h │ │ │ ├── DYVideoAlbumCollectionViewCell.h │ │ │ ├── DYVideoAlbumPlayerViewController.h │ │ │ ├── DYVideoEditorController.h │ │ │ ├── DYVideoEditorViewController.h │ │ │ ├── DYVideoFilterCollectionViewCell.h │ │ │ ├── DYVideoModule.h │ │ │ ├── DYVideoModuleDataSource.h │ │ │ ├── DYVideoNavViewController.h │ │ │ ├── DYVideoPickerController.h │ │ │ ├── DYVideoProcess.h │ │ │ ├── DYVideoProcessEngine.h │ │ │ ├── DYVideoRecoderViewController.h │ │ │ ├── DYVideoSDK.h │ │ │ ├── GPUImageBeautifyFilter.h │ │ │ ├── OTScreenshotHelper.h │ │ │ ├── SAResizibleBubble.h │ │ │ ├── SASliderLeft.h │ │ │ ├── SASliderRight.h │ │ │ ├── SAVideoRangeSlider.h │ │ │ └── UIView+ComOpenThreadOTScreenshotHelperStatusBarReference.h │ │ │ ├── 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 │ │ │ ├── GPUImageColorConversion.h │ │ │ ├── GPUImageColorDodgeBlendFilter.h │ │ │ ├── GPUImageColorInvertFilter.h │ │ │ ├── GPUImageColorLocalBinaryPatternFilter.h │ │ │ ├── GPUImageColorMatrixFilter.h │ │ │ ├── GPUImageColorPackingFilter.h │ │ │ ├── GPUImageColourFASTFeatureDetector.h │ │ │ ├── GPUImageColourFASTSamplingOperation.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 │ │ │ ├── GPUImageFourInputFilter.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 │ │ │ ├── GPUImageHighlightShadowTintFilter.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 │ │ │ ├── GPUImageSkinToneFilter.h │ │ │ ├── GPUImageSmoothToonFilter.h │ │ │ ├── GPUImageSobelEdgeDetectionFilter.h │ │ │ ├── GPUImageSoftEleganceFilter.h │ │ │ ├── GPUImageSoftLightBlendFilter.h │ │ │ ├── GPUImageSolarizeFilter.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 │ │ │ ├── GPUImageVibranceFilter.h │ │ │ ├── GPUImageVideoCamera.h │ │ │ ├── GPUImageView.h │ │ │ ├── GPUImageVignetteFilter.h │ │ │ ├── GPUImageVoronoiConsumerFilter.h │ │ │ ├── GPUImageWeakPixelInclusionFilter.h │ │ │ ├── GPUImageWhiteBalanceFilter.h │ │ │ ├── GPUImageXYDerivativeFilter.h │ │ │ ├── GPUImageZoomBlurFilter.h │ │ │ └── GPUImageiOSBlurFilter.h │ │ │ ├── MBProgressHUD │ │ │ └── MBProgressHUD.h │ │ │ ├── Masonry │ │ │ ├── MASCompositeConstraint.h │ │ │ ├── MASConstraint+Private.h │ │ │ ├── MASConstraint.h │ │ │ ├── MASConstraintMaker.h │ │ │ ├── MASLayoutConstraint.h │ │ │ ├── MASUtilities.h │ │ │ ├── MASViewAttribute.h │ │ │ ├── MASViewConstraint.h │ │ │ ├── Masonry.h │ │ │ ├── NSArray+MASAdditions.h │ │ │ ├── NSArray+MASShorthandAdditions.h │ │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ │ ├── View+MASAdditions.h │ │ │ ├── View+MASShorthandAdditions.h │ │ │ └── ViewController+MASAdditions.h │ │ │ └── lottie-ios_Oc │ │ │ ├── CALayer+Compat.h │ │ │ ├── CGGeometry+LOTAdditions.h │ │ │ ├── LOTAnimatedControl.h │ │ │ ├── LOTAnimatedSwitch.h │ │ │ ├── LOTAnimationCache.h │ │ │ ├── LOTAnimationTransitionController.h │ │ │ ├── LOTAnimationView.h │ │ │ ├── LOTAnimationView_Compat.h │ │ │ ├── LOTAnimationView_Internal.h │ │ │ ├── LOTAnimatorNode.h │ │ │ ├── LOTArrayInterpolator.h │ │ │ ├── LOTAsset.h │ │ │ ├── LOTAssetGroup.h │ │ │ ├── LOTBezierData.h │ │ │ ├── LOTBezierPath.h │ │ │ ├── LOTBlockCallback.h │ │ │ ├── LOTCacheProvider.h │ │ │ ├── LOTCircleAnimator.h │ │ │ ├── LOTColorInterpolator.h │ │ │ ├── LOTComposition.h │ │ │ ├── LOTCompositionContainer.h │ │ │ ├── LOTFillRenderer.h │ │ │ ├── LOTGradientFillRender.h │ │ │ ├── LOTHelpers.h │ │ │ ├── LOTInterpolatorCallback.h │ │ │ ├── LOTKeyframe.h │ │ │ ├── LOTKeypath.h │ │ │ ├── LOTLayer.h │ │ │ ├── LOTLayerContainer.h │ │ │ ├── LOTLayerGroup.h │ │ │ ├── LOTMask.h │ │ │ ├── LOTMaskContainer.h │ │ │ ├── LOTModels.h │ │ │ ├── LOTNumberInterpolator.h │ │ │ ├── LOTPathAnimator.h │ │ │ ├── LOTPathInterpolator.h │ │ │ ├── LOTPlatformCompat.h │ │ │ ├── LOTPointInterpolator.h │ │ │ ├── LOTPolygonAnimator.h │ │ │ ├── LOTPolystarAnimator.h │ │ │ ├── LOTRadialGradientLayer.h │ │ │ ├── LOTRenderGroup.h │ │ │ ├── LOTRenderNode.h │ │ │ ├── LOTRepeaterRenderer.h │ │ │ ├── LOTRoundedRectAnimator.h │ │ │ ├── LOTShapeCircle.h │ │ │ ├── LOTShapeFill.h │ │ │ ├── LOTShapeGradientFill.h │ │ │ ├── LOTShapeGroup.h │ │ │ ├── LOTShapePath.h │ │ │ ├── LOTShapeRectangle.h │ │ │ ├── LOTShapeRepeater.h │ │ │ ├── LOTShapeStar.h │ │ │ ├── LOTShapeStroke.h │ │ │ ├── LOTShapeTransform.h │ │ │ ├── LOTShapeTrimPath.h │ │ │ ├── LOTSizeInterpolator.h │ │ │ ├── LOTStrokeRenderer.h │ │ │ ├── LOTTransformInterpolator.h │ │ │ ├── LOTTrimPathNode.h │ │ │ ├── LOTValueCallback.h │ │ │ ├── LOTValueDelegate.h │ │ │ ├── LOTValueInterpolator.h │ │ │ ├── Lottie.h │ │ │ ├── NSValue+Compat.h │ │ │ ├── UIBezierPath.h │ │ │ ├── UIColor+Expanded.h │ │ │ └── UIColor.h │ ├── Pods.xcodeproj │ │ └── xcuserdata │ │ │ └── videopls.xcuserdatad │ │ │ └── xcschemes │ │ │ └── DYVideoCamera-DYVideoCameraMedia.xcscheme │ └── Target Support Files │ │ ├── CocoaAsyncSocket │ │ ├── CocoaAsyncSocket.debug.xcconfig │ │ └── CocoaAsyncSocket.release.xcconfig │ │ ├── CocoaLumberjack │ │ ├── CocoaLumberjack.debug.xcconfig │ │ └── CocoaLumberjack.release.xcconfig │ │ ├── DYVideoCamera │ │ ├── DYVideoCamera.debug.xcconfig │ │ ├── DYVideoCamera.release.xcconfig │ │ ├── ResourceBundle-DYVideoCamera-DYVideoCamera-Info.plist │ │ └── ResourceBundle-DYVideoCameraMedia-DYVideoCamera-Info.plist │ │ ├── GPUImage │ │ ├── GPUImage.debug.xcconfig │ │ └── GPUImage.release.xcconfig │ │ ├── MBProgressHUD │ │ ├── MBProgressHUD.debug.xcconfig │ │ └── MBProgressHUD.release.xcconfig │ │ ├── Masonry │ │ ├── Masonry.debug.xcconfig │ │ └── Masonry.release.xcconfig │ │ ├── PLPlayerKit │ │ ├── PLPlayerKit.debug.xcconfig │ │ └── PLPlayerKit.release.xcconfig │ │ ├── Pods-DYVideoCamera_Example │ │ └── Pods-DYVideoCamera_Example-resources.sh │ │ └── lottie-ios_Oc │ │ ├── lottie-ios_Oc.debug.xcconfig │ │ └── lottie-ios_Oc.release.xcconfig └── Tests │ ├── Tests-Info.plist │ ├── Tests-Prefix.pch │ ├── Tests.m │ └── en.lproj │ └── InfoPlist.strings ├── Frameworks └── KSYHTTPCache.framework │ ├── Headers │ ├── HTTPCacheDefines.h │ ├── KSYFileDownloader.h │ └── KSYHTTPProxyService.h │ ├── Info.plist │ └── KSYHTTPCache ├── LICENSE ├── README.md └── _Pods.xcodeproj /DYVideoCamera/Assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/DYVideoCamera/Assets/.gitkeep -------------------------------------------------------------------------------- /DYVideoCamera/Assets/a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/DYVideoCamera/Assets/a.png -------------------------------------------------------------------------------- /DYVideoCamera/Classes/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/DYVideoCamera/Classes/.gitkeep -------------------------------------------------------------------------------- /DYVideoCamera/Classes/DYUI/DYVideoNavViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // DYVideoNavViewController.h 3 | // DYVideoModule 4 | // 5 | // Created by huyangyang on 2017/11/28. 6 | // 7 | 8 | #import 9 | 10 | @interface DYVideoNavViewController : UINavigationController 11 | 12 | @end 13 | -------------------------------------------------------------------------------- /DYVideoCamera/Media.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /DYVideoCamera/Media.xcassets/circle.imageset/circle.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/DYVideoCamera/Media.xcassets/circle.imageset/circle.pdf -------------------------------------------------------------------------------- /DYVideoCamera/Media.xcassets/icBeautiful.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "zeplin", 4 | "version" : 1 5 | }, 6 | "images" : [ 7 | { 8 | "idiom" : "universal", 9 | "filename" : "icBeautiful.pdf" 10 | } 11 | ] 12 | } -------------------------------------------------------------------------------- /DYVideoCamera/Media.xcassets/icBeautiful.imageset/icBeautiful.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/DYVideoCamera/Media.xcassets/icBeautiful.imageset/icBeautiful.pdf -------------------------------------------------------------------------------- /DYVideoCamera/Media.xcassets/icBeautifulSelected.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "zeplin", 4 | "version" : 1 5 | }, 6 | "images" : [ 7 | { 8 | "idiom" : "universal", 9 | "filename" : "icBeautifulSelected.pdf" 10 | } 11 | ] 12 | } -------------------------------------------------------------------------------- /DYVideoCamera/Media.xcassets/icBeautifulSelected.imageset/icBeautifulSelected.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/DYVideoCamera/Media.xcassets/icBeautifulSelected.imageset/icBeautifulSelected.pdf -------------------------------------------------------------------------------- /DYVideoCamera/Media.xcassets/icBlackback.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "zeplin", 4 | "version" : 1 5 | }, 6 | "images" : [ 7 | { 8 | "idiom" : "universal", 9 | "filename" : "icBlackback.pdf" 10 | } 11 | ] 12 | } -------------------------------------------------------------------------------- /DYVideoCamera/Media.xcassets/icBlackback.imageset/icBlackback.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/DYVideoCamera/Media.xcassets/icBlackback.imageset/icBlackback.pdf -------------------------------------------------------------------------------- /DYVideoCamera/Media.xcassets/icCamera.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "zeplin", 4 | "version" : 1 5 | }, 6 | "images" : [ 7 | { 8 | "idiom" : "universal", 9 | "filename" : "icCamera.pdf" 10 | } 11 | ] 12 | } -------------------------------------------------------------------------------- /DYVideoCamera/Media.xcassets/icCamera.imageset/icCamera.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/DYVideoCamera/Media.xcassets/icCamera.imageset/icCamera.pdf -------------------------------------------------------------------------------- /DYVideoCamera/Media.xcassets/icCancel.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "zeplin", 4 | "version" : 1 5 | }, 6 | "images" : [ 7 | { 8 | "idiom" : "universal", 9 | "filename" : "icCancel.pdf" 10 | } 11 | ] 12 | } -------------------------------------------------------------------------------- /DYVideoCamera/Media.xcassets/icCancel.imageset/icCancel.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/DYVideoCamera/Media.xcassets/icCancel.imageset/icCancel.pdf -------------------------------------------------------------------------------- /DYVideoCamera/Media.xcassets/icDefault.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "zeplin", 4 | "version" : 1 5 | }, 6 | "images" : [ 7 | { 8 | "idiom" : "universal", 9 | "filename" : "icDefault.pdf" 10 | } 11 | ] 12 | } -------------------------------------------------------------------------------- /DYVideoCamera/Media.xcassets/icDefault.imageset/icDefault.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/DYVideoCamera/Media.xcassets/icDefault.imageset/icDefault.pdf -------------------------------------------------------------------------------- /DYVideoCamera/Media.xcassets/icDelete.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "zeplin", 4 | "version" : 1 5 | }, 6 | "images" : [ 7 | { 8 | "idiom" : "universal", 9 | "filename" : "icDelete.pdf" 10 | } 11 | ] 12 | } -------------------------------------------------------------------------------- /DYVideoCamera/Media.xcassets/icDelete.imageset/icDelete.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/DYVideoCamera/Media.xcassets/icDelete.imageset/icDelete.pdf -------------------------------------------------------------------------------- /DYVideoCamera/Media.xcassets/icFilter.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "zeplin", 4 | "version" : 1 5 | }, 6 | "images" : [ 7 | { 8 | "idiom" : "universal", 9 | "filename" : "icFilter.pdf" 10 | } 11 | ] 12 | } -------------------------------------------------------------------------------- /DYVideoCamera/Media.xcassets/icFilter.imageset/icFilter.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/DYVideoCamera/Media.xcassets/icFilter.imageset/icFilter.pdf -------------------------------------------------------------------------------- /DYVideoCamera/Media.xcassets/icFilterSeleted.imageset/icFilterSeleted.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/DYVideoCamera/Media.xcassets/icFilterSeleted.imageset/icFilterSeleted.pdf -------------------------------------------------------------------------------- /DYVideoCamera/Media.xcassets/icLeftSlider.imageset/icLeftSlider.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/DYVideoCamera/Media.xcassets/icLeftSlider.imageset/icLeftSlider.pdf -------------------------------------------------------------------------------- /DYVideoCamera/Media.xcassets/icMusic.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "zeplin", 4 | "version" : 1 5 | }, 6 | "images" : [ 7 | { 8 | "idiom" : "universal", 9 | "filename" : "icMusic.pdf" 10 | } 11 | ] 12 | } -------------------------------------------------------------------------------- /DYVideoCamera/Media.xcassets/icMusic.imageset/icMusic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/DYVideoCamera/Media.xcassets/icMusic.imageset/icMusic.pdf -------------------------------------------------------------------------------- /DYVideoCamera/Media.xcassets/icMusic19.imageset/icMusic19.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/DYVideoCamera/Media.xcassets/icMusic19.imageset/icMusic19.pdf -------------------------------------------------------------------------------- /DYVideoCamera/Media.xcassets/icPlay.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "zeplin", 4 | "version" : 1 5 | }, 6 | "images" : [ 7 | { 8 | "idiom" : "universal", 9 | "filename" : "icPlay.pdf" 10 | } 11 | ] 12 | } -------------------------------------------------------------------------------- /DYVideoCamera/Media.xcassets/icPlay.imageset/icPlay.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/DYVideoCamera/Media.xcassets/icPlay.imageset/icPlay.pdf -------------------------------------------------------------------------------- /DYVideoCamera/Media.xcassets/icRightSlider.imageset/icRightSlider.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/DYVideoCamera/Media.xcassets/icRightSlider.imageset/icRightSlider.pdf -------------------------------------------------------------------------------- /DYVideoCamera/Media.xcassets/icShadow.imageset/icShadow.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/DYVideoCamera/Media.xcassets/icShadow.imageset/icShadow.pdf -------------------------------------------------------------------------------- /DYVideoCamera/Media.xcassets/icSmallplay.imageset/icSmallplay.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/DYVideoCamera/Media.xcassets/icSmallplay.imageset/icSmallplay.pdf -------------------------------------------------------------------------------- /DYVideoCamera/Media.xcassets/icVideo.imageset/icVideo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/DYVideoCamera/Media.xcassets/icVideo.imageset/icVideo.pdf -------------------------------------------------------------------------------- /DYVideoCamera/Media.xcassets/icVideoAlbumPlayBtn.imageset/icVideoAlbumPlayBtn.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/DYVideoCamera/Media.xcassets/icVideoAlbumPlayBtn.imageset/icVideoAlbumPlayBtn.pdf -------------------------------------------------------------------------------- /DYVideoCamera/Media.xcassets/icVideoAlbumSelected.imageset/icVideoAlbumSelected.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/DYVideoCamera/Media.xcassets/icVideoAlbumSelected.imageset/icVideoAlbumSelected.pdf -------------------------------------------------------------------------------- /DYVideoCamera/Media.xcassets/icVideocut.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "zeplin", 4 | "version" : 1 5 | }, 6 | "images" : [ 7 | { 8 | "idiom" : "universal", 9 | "filename" : "icVideocut.pdf" 10 | } 11 | ] 12 | } -------------------------------------------------------------------------------- /DYVideoCamera/Media.xcassets/icVideocut.imageset/icVideocut.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/DYVideoCamera/Media.xcassets/icVideocut.imageset/icVideocut.pdf -------------------------------------------------------------------------------- /DYVideoCamera/Media.xcassets/icWhiteback.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "zeplin", 4 | "version" : 1 5 | }, 6 | "images" : [ 7 | { 8 | "idiom" : "universal", 9 | "filename" : "icWhiteback.pdf" 10 | } 11 | ] 12 | } -------------------------------------------------------------------------------- /DYVideoCamera/Media.xcassets/icWhiteback.imageset/icWhiteback.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/DYVideoCamera/Media.xcassets/icWhiteback.imageset/icWhiteback.pdf -------------------------------------------------------------------------------- /DYVideoCamera/Media.xcassets/music_loading.dataset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "data" : [ 7 | { 8 | "idiom" : "universal", 9 | "filename" : "music_loading.json" 10 | } 11 | ] 12 | } -------------------------------------------------------------------------------- /DYVideoCamera/Media.xcassets/playingblack.dataset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "data" : [ 7 | { 8 | "idiom" : "universal", 9 | "filename" : "playingblack.json" 10 | } 11 | ] 12 | } -------------------------------------------------------------------------------- /Example/DYVideoCamera.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Example/DYVideoCamera.xcworkspace/xcuserdata/videopls.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/Example/DYVideoCamera.xcworkspace/xcuserdata/videopls.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/FX10.imageset/FX10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/Example/DYVideoCamera/Images.xcassets/FX10.imageset/FX10.png -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/IMG_1907_复古Filter_1.3.4.imageset/IMG_1907_复古Filter_1.3.4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/Example/DYVideoCamera/Images.xcassets/IMG_1907_复古Filter_1.3.4.imageset/IMG_1907_复古Filter_1.3.4.jpg -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/IMG_1907_清新Filter_1.3.2.imageset/IMG_1907_清新Filter_1.3.2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/Example/DYVideoCamera/Images.xcassets/IMG_1907_清新Filter_1.3.2.imageset/IMG_1907_清新Filter_1.3.2.jpg -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/IMG_1942_复古Filter_1.3.3.imageset/IMG_1942_复古Filter_1.3.3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/Example/DYVideoCamera/Images.xcassets/IMG_1942_复古Filter_1.3.3.imageset/IMG_1942_复古Filter_1.3.3.jpg -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/IMG_1942_清新Filter_1.3.1.imageset/IMG_1942_清新Filter_1.3.1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/Example/DYVideoCamera/Images.xcassets/IMG_1942_清新Filter_1.3.1.imageset/IMG_1942_清新Filter_1.3.1.jpg -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/TEST_1.3.3.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "TEST_1.3.3.png" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | } 12 | } -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/TEST_1.3.3.imageset/TEST_1.3.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/Example/DYVideoCamera/Images.xcassets/TEST_1.3.3.imageset/TEST_1.3.3.png -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/filter_1.3.10黑白1.tif.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "filter_1.3.10黑白1.tif.png" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | } 12 | } -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/filter_1.3.10黑白1.tif.imageset/filter_1.3.10黑白1.tif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/Example/DYVideoCamera/Images.xcassets/filter_1.3.10黑白1.tif.imageset/filter_1.3.10黑白1.tif.png -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/filter_1.3.11黑白2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "filter_1.3.11黑白2.png" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | } 12 | } -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/filter_1.3.11黑白2.imageset/filter_1.3.11黑白2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/Example/DYVideoCamera/Images.xcassets/filter_1.3.11黑白2.imageset/filter_1.3.11黑白2.png -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/filter_1.3.11黑白2.tif.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "filter_1.3.11黑白2.tif.png" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | } 12 | } -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/filter_1.3.11黑白2.tif.imageset/filter_1.3.11黑白2.tif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/Example/DYVideoCamera/Images.xcassets/filter_1.3.11黑白2.tif.imageset/filter_1.3.11黑白2.tif.png -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/filter_1.3.12波普.tif.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "filter_1.3.12波普.tif.png" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | } 12 | } -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/filter_1.3.12波普.tif.imageset/filter_1.3.12波普.tif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/Example/DYVideoCamera/Images.xcassets/filter_1.3.12波普.tif.imageset/filter_1.3.12波普.tif.png -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/filter_1.3.12黑白3.tif.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "filter_1.3.12黑白3.tif.png" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | } 12 | } -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/filter_1.3.12黑白3.tif.imageset/filter_1.3.12黑白3.tif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/Example/DYVideoCamera/Images.xcassets/filter_1.3.12黑白3.tif.imageset/filter_1.3.12黑白3.tif.png -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/filter_1.3.13高怪.tif.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "filter_1.3.13高怪.tif.png" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | } 12 | } -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/filter_1.3.13高怪.tif.imageset/filter_1.3.13高怪.tif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/Example/DYVideoCamera/Images.xcassets/filter_1.3.13高怪.tif.imageset/filter_1.3.13高怪.tif.png -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/filter_1.3.13黑白3.tif.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "filter_1.3.13黑白3.tif.png" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | } 12 | } -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/filter_1.3.13黑白3.tif.imageset/filter_1.3.13黑白3.tif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/Example/DYVideoCamera/Images.xcassets/filter_1.3.13黑白3.tif.imageset/filter_1.3.13黑白3.tif.png -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/filter_1.3.14暗房.tif.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "filter_1.3.14暗房.tif.png" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | } 12 | } -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/filter_1.3.14暗房.tif.imageset/filter_1.3.14暗房.tif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/Example/DYVideoCamera/Images.xcassets/filter_1.3.14暗房.tif.imageset/filter_1.3.14暗房.tif.png -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/filter_1.3.1白天紫色.tif.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "filter_1.3.1白天紫色.tif.png" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | } 12 | } -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/filter_1.3.1白天紫色.tif.imageset/filter_1.3.1白天紫色.tif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/Example/DYVideoCamera/Images.xcassets/filter_1.3.1白天紫色.tif.imageset/filter_1.3.1白天紫色.tif.png -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/filter_1.3.1野餐.tif.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "filter_1.3.1野餐.tif.png" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | } 12 | } -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/filter_1.3.1野餐.tif.imageset/filter_1.3.1野餐.tif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/Example/DYVideoCamera/Images.xcassets/filter_1.3.1野餐.tif.imageset/filter_1.3.1野餐.tif.png -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/filter_1.3.2波普.tif.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "filter_1.3.2波普.tif.png" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | } 12 | } -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/filter_1.3.2波普.tif.imageset/filter_1.3.2波普.tif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/Example/DYVideoCamera/Images.xcassets/filter_1.3.2波普.tif.imageset/filter_1.3.2波普.tif.png -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/filter_1.3.2清新.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "filter_1.3.2清新.png" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | } 12 | } -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/filter_1.3.2清新.imageset/filter_1.3.2清新.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/Example/DYVideoCamera/Images.xcassets/filter_1.3.2清新.imageset/filter_1.3.2清新.png -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/filter_1.3.2清新.tif.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "filter_1.3.2清新.tif.png" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | } 12 | } -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/filter_1.3.2清新.tif.imageset/filter_1.3.2清新.tif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/Example/DYVideoCamera/Images.xcassets/filter_1.3.2清新.tif.imageset/filter_1.3.2清新.tif.png -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/filter_1.3.2清新2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "filter_1.3.2清新2.png" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | } 12 | } -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/filter_1.3.2清新2.imageset/filter_1.3.2清新2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/Example/DYVideoCamera/Images.xcassets/filter_1.3.2清新2.imageset/filter_1.3.2清新2.png -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/filter_1.3.3夜晚紫色.tif.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "filter_1.3.3夜晚紫色.tif.png" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | } 12 | } -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/filter_1.3.3夜晚紫色.tif.imageset/filter_1.3.3夜晚紫色.tif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/Example/DYVideoCamera/Images.xcassets/filter_1.3.3夜晚紫色.tif.imageset/filter_1.3.3夜晚紫色.tif.png -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/filter_1.3.3过曝.tif.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "filter_1.3.3过曝.tif.png" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | } 12 | } -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/filter_1.3.3过曝.tif.imageset/filter_1.3.3过曝.tif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/Example/DYVideoCamera/Images.xcassets/filter_1.3.3过曝.tif.imageset/filter_1.3.3过曝.tif.png -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/filter_1.3.4粉红.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "filter_1.3.4粉红.png" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | } 12 | } -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/filter_1.3.4粉红.imageset/filter_1.3.4粉红.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/Example/DYVideoCamera/Images.xcassets/filter_1.3.4粉红.imageset/filter_1.3.4粉红.png -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/filter_1.3.4粉红.tif.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "filter_1.3.4粉红.tif.png" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | } 12 | } -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/filter_1.3.4粉红.tif.imageset/filter_1.3.4粉红.tif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/Example/DYVideoCamera/Images.xcassets/filter_1.3.4粉红.tif.imageset/filter_1.3.4粉红.tif.png -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/filter_1.3.4粉红2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "filter_1.3.4粉红2.png" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | } 12 | } -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/filter_1.3.4粉红2.imageset/filter_1.3.4粉红2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/Example/DYVideoCamera/Images.xcassets/filter_1.3.4粉红2.imageset/filter_1.3.4粉红2.png -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/filter_1.3.5低饱和.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "filter_1.3.5低饱和.png" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | } 12 | } -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/filter_1.3.5低饱和.imageset/filter_1.3.5低饱和.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/Example/DYVideoCamera/Images.xcassets/filter_1.3.5低饱和.imageset/filter_1.3.5低饱和.png -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/filter_1.3.5低饱和.tif.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "filter_1.3.5低饱和.tif.png" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | } 12 | } -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/filter_1.3.5低饱和.tif.imageset/filter_1.3.5低饱和.tif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/Example/DYVideoCamera/Images.xcassets/filter_1.3.5低饱和.tif.imageset/filter_1.3.5低饱和.tif.png -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/filter_1.3.6红绿突出.tif.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "filter_1.3.6红绿突出.tif.png" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | } 12 | } -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/filter_1.3.6红绿突出.tif.imageset/filter_1.3.6红绿突出.tif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/Example/DYVideoCamera/Images.xcassets/filter_1.3.6红绿突出.tif.imageset/filter_1.3.6红绿突出.tif.png -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/filter_1.3.7黄绿突出.tif.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "filter_1.3.7黄绿突出.tif.png" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | } 12 | } -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/filter_1.3.7黄绿突出.tif.imageset/filter_1.3.7黄绿突出.tif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/Example/DYVideoCamera/Images.xcassets/filter_1.3.7黄绿突出.tif.imageset/filter_1.3.7黄绿突出.tif.png -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/filter_1.3.8高饱和.tif.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "filter_1.3.8高饱和.tif.png" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | } 12 | } -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/filter_1.3.8高饱和.tif.imageset/filter_1.3.8高饱和.tif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/Example/DYVideoCamera/Images.xcassets/filter_1.3.8高饱和.tif.imageset/filter_1.3.8高饱和.tif.png -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/filter_1.3.9夜生活.tif.imageset/filter_1.3.9夜生活.tif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/Example/DYVideoCamera/Images.xcassets/filter_1.3.9夜生活.tif.imageset/filter_1.3.9夜生活.tif.png -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/musicItems/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/musicItems/icClassical.imageset/icClassical.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/Example/DYVideoCamera/Images.xcassets/musicItems/icClassical.imageset/icClassical.pdf -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/musicItems/icClassicalSelected.imageset/icClassicalSelected.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/Example/DYVideoCamera/Images.xcassets/musicItems/icClassicalSelected.imageset/icClassicalSelected.pdf -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/musicItems/icExciting.imageset/icExciting.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/Example/DYVideoCamera/Images.xcassets/musicItems/icExciting.imageset/icExciting.pdf -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/musicItems/icExcitingSelected.imageset/icExcitingSelected.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/Example/DYVideoCamera/Images.xcassets/musicItems/icExcitingSelected.imageset/icExcitingSelected.pdf -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/musicItems/icHappy.imageset/icHappy.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/Example/DYVideoCamera/Images.xcassets/musicItems/icHappy.imageset/icHappy.pdf -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/musicItems/icHappySelected.imageset/icHappySelected.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/Example/DYVideoCamera/Images.xcassets/musicItems/icHappySelected.imageset/icHappySelected.pdf -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/musicItems/icHot.imageset/icHot.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/Example/DYVideoCamera/Images.xcassets/musicItems/icHot.imageset/icHot.pdf -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/musicItems/icHotSelected.imageset/icHotSelected.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/Example/DYVideoCamera/Images.xcassets/musicItems/icHotSelected.imageset/icHotSelected.pdf -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/musicItems/icLove.imageset/icLove.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/Example/DYVideoCamera/Images.xcassets/musicItems/icLove.imageset/icLove.pdf -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/musicItems/icLoveSelected.imageset/icLoveSelected.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/Example/DYVideoCamera/Images.xcassets/musicItems/icLoveSelected.imageset/icLoveSelected.pdf -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/musicItems/icMovie.imageset/icMovie.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/Example/DYVideoCamera/Images.xcassets/musicItems/icMovie.imageset/icMovie.pdf -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/musicItems/icMovieSelected.imageset/icMovieSelected.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/Example/DYVideoCamera/Images.xcassets/musicItems/icMovieSelected.imageset/icMovieSelected.pdf -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/musicItems/icNew.imageset/icNew.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/Example/DYVideoCamera/Images.xcassets/musicItems/icNew.imageset/icNew.pdf -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/musicItems/icNewSelected.imageset/icNewSelected.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/Example/DYVideoCamera/Images.xcassets/musicItems/icNewSelected.imageset/icNewSelected.pdf -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/musicItems/icQuiet.imageset/icQuiet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/Example/DYVideoCamera/Images.xcassets/musicItems/icQuiet.imageset/icQuiet.pdf -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/musicItems/icQuietSelected.imageset/icQuietSelected.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/Example/DYVideoCamera/Images.xcassets/musicItems/icQuietSelected.imageset/icQuietSelected.pdf -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/musicItems/icSad.imageset/icSad.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/Example/DYVideoCamera/Images.xcassets/musicItems/icSad.imageset/icSad.pdf -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/musicItems/icSadSelected.imageset/icSadSelected.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/Example/DYVideoCamera/Images.xcassets/musicItems/icSadSelected.imageset/icSadSelected.pdf -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/日系清新-红.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "日系清新-红.png" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | } 12 | } -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/日系清新-红.imageset/日系清新-红.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/Example/DYVideoCamera/Images.xcassets/日系清新-红.imageset/日系清新-红.png -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/日系清新-绿.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "日系清新-绿.png" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | } 12 | } -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/日系清新-绿.imageset/日系清新-绿.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/Example/DYVideoCamera/Images.xcassets/日系清新-绿.imageset/日系清新-绿.png -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/日系清新-蓝.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "日系清新-蓝.png" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | } 12 | } -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/日系清新-蓝.imageset/日系清新-蓝.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/Example/DYVideoCamera/Images.xcassets/日系清新-蓝.imageset/日系清新-蓝.png -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/红色反色.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "红色反色.png" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | } 12 | } -------------------------------------------------------------------------------- /Example/DYVideoCamera/Images.xcassets/红色反色.imageset/红色反色.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/Example/DYVideoCamera/Images.xcassets/红色反色.imageset/红色反色.png -------------------------------------------------------------------------------- /Example/DYVideoCamera/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/CocoaAsyncSocket/GCDAsyncSocket.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaAsyncSocket/Source/GCD/GCDAsyncSocket.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/CocoaAsyncSocket/GCDAsyncUdpSocket.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaAsyncSocket/Source/GCD/GCDAsyncUdpSocket.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/CocoaLumberjack/CLIColor.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/include/CLIColor.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/CocoaLumberjack/CocoaLumberjack.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/Supporting Files/CocoaLumberjack.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/CocoaLumberjack/DDASLLogCapture.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/include/DDASLLogCapture.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/CocoaLumberjack/DDASLLogger.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/include/DDASLLogger.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/CocoaLumberjack/DDAbstractDatabaseLogger.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/include/DDAbstractDatabaseLogger.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/CocoaLumberjack/DDAssertMacros.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/include/DDAssertMacros.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/CocoaLumberjack/DDContextFilterLogFormatter.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/include/DDContextFilterLogFormatter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/CocoaLumberjack/DDDispatchQueueLogFormatter.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/include/DDDispatchQueueLogFormatter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/CocoaLumberjack/DDFileLogger+Buffering.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/include/DDFileLogger+Buffering.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/CocoaLumberjack/DDFileLogger+Internal.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/DDFileLogger+Internal.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/CocoaLumberjack/DDFileLogger.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/include/DDFileLogger.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/CocoaLumberjack/DDLegacyMacros.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/Supporting Files/DDLegacyMacros.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/CocoaLumberjack/DDLog+LOGV.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/include/DDLog+LOGV.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/CocoaLumberjack/DDLog.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/include/DDLog.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/CocoaLumberjack/DDLogMacros.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/include/DDLogMacros.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/CocoaLumberjack/DDLoggerNames.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/include/DDLoggerNames.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/CocoaLumberjack/DDMultiFormatter.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/include/DDMultiFormatter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/CocoaLumberjack/DDOSLogger.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/include/DDOSLogger.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/CocoaLumberjack/DDTTYLogger.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/include/DDTTYLogger.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/DYVideoCamera/ComOpenThreadOTScreenshotHelperSwizzleHelper.h: -------------------------------------------------------------------------------- 1 | ../../../../../DYVideoCamera/Classes/OTScreenshotHelper/Private/ComOpenThreadOTScreenshotHelperSwizzleHelper.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/DYVideoCamera/DYAssetModel.h: -------------------------------------------------------------------------------- 1 | ../../../../../DYVideoCamera/Classes/DYvideoAlbum/DYAssetModel.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/DYVideoCamera/DYCameraEngine.h: -------------------------------------------------------------------------------- 1 | ../../../../../DYVideoCamera/Classes/DYVideoSDK/DYCameraEngine.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/DYVideoCamera/DYFilterEngine.h: -------------------------------------------------------------------------------- 1 | ../../../../../DYVideoCamera/Classes/DYVideoSDK/DYFilterEngine.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/DYVideoCamera/DYFilterEntity.h: -------------------------------------------------------------------------------- 1 | ../../../../../DYVideoCamera/Classes/DYFilterEntity.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/DYVideoCamera/DYFilterEntityViewModel.h: -------------------------------------------------------------------------------- 1 | ../../../../../DYVideoCamera/Classes/DYUI/DYFilterEntityViewModel.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/DYVideoCamera/DYGPUImageEmptyFilter.h: -------------------------------------------------------------------------------- 1 | ../../../../../DYVideoCamera/Classes/DYVideoSDK/DYSDKFilterResources/DYGPUImageEmptyFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/DYVideoCamera/DYGPUImageLookupFilter.h: -------------------------------------------------------------------------------- 1 | ../../../../../DYVideoCamera/Classes/DYVideoSDK/DYSDKFilterResources/DYGPUImageLookupFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/DYVideoCamera/DYGPUImageMovieWriter.h: -------------------------------------------------------------------------------- 1 | ../../../../../DYVideoCamera/Classes/DYVideoSDK/DYGPUImageMovieWriter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/DYVideoCamera/DYImageManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../DYVideoCamera/Classes/DYvideoAlbum/DYImageManager.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/DYVideoCamera/DYMusicCategory.h: -------------------------------------------------------------------------------- 1 | ../../../../../DYVideoCamera/Classes/DYMusicCategory.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/DYVideoCamera/DYMusicEntity.h: -------------------------------------------------------------------------------- 1 | ../../../../../DYVideoCamera/Classes/DYMusicEntity.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/DYVideoCamera/DYOnlineMusicLibraryViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../../DYVideoCamera/Classes/DYUI/DYOnlineMusicLibraryViewController.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/DYVideoCamera/DYSegmentPrograssView.h: -------------------------------------------------------------------------------- 1 | ../../../../../DYVideoCamera/Classes/DYUI/DYSegmentPrograssView.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/DYVideoCamera/DYVMConstants+Private.h: -------------------------------------------------------------------------------- 1 | ../../../../../DYVideoCamera/Classes/DYVMConstants+Private.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/DYVideoCamera/DYVideoAlbumCollectionViewCell.h: -------------------------------------------------------------------------------- 1 | ../../../../../DYVideoCamera/Classes/DYvideoAlbum/DYVideoAlbumCollectionViewCell.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/DYVideoCamera/DYVideoAlbumPlayerViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../../DYVideoCamera/Classes/DYvideoAlbum/DYVideoAlbumPlayerViewController.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/DYVideoCamera/DYVideoEditorController.h: -------------------------------------------------------------------------------- 1 | ../../../../../DYVideoCamera/Classes/DYVideoEditorController/DYVideoEditorController.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/DYVideoCamera/DYVideoEditorViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../../DYVideoCamera/Classes/DYUI/DYVideoEditorViewController.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/DYVideoCamera/DYVideoFilterCollectionViewCell.h: -------------------------------------------------------------------------------- 1 | ../../../../../DYVideoCamera/Classes/DYUI/DYVideoFilterCollectionViewCell.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/DYVideoCamera/DYVideoModule.h: -------------------------------------------------------------------------------- 1 | ../../../../../DYVideoCamera/Classes/DYVideoModule.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/DYVideoCamera/DYVideoModuleDataSource.h: -------------------------------------------------------------------------------- 1 | ../../../../../DYVideoCamera/Classes/DYVideoModuleDataSource.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/DYVideoCamera/DYVideoNavViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../../DYVideoCamera/Classes/DYUI/DYVideoNavViewController.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/DYVideoCamera/DYVideoPickerController.h: -------------------------------------------------------------------------------- 1 | ../../../../../DYVideoCamera/Classes/DYvideoAlbum/DYVideoPickerController.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/DYVideoCamera/DYVideoProcess.h: -------------------------------------------------------------------------------- 1 | ../../../../../DYVideoCamera/Classes/DYVideoSDK/DYVideoProcess.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/DYVideoCamera/DYVideoProcessEngine.h: -------------------------------------------------------------------------------- 1 | ../../../../../DYVideoCamera/Classes/DYVideoSDK/DYVideoProcessEngine.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/DYVideoCamera/DYVideoRecoderViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../../DYVideoCamera/Classes/DYUI/DYVideoRecoderViewController.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/DYVideoCamera/DYVideoSDK.h: -------------------------------------------------------------------------------- 1 | ../../../../../DYVideoCamera/Classes/DYVideoSDK/DYVideoSDK.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/DYVideoCamera/GPUImageBeautifyFilter.h: -------------------------------------------------------------------------------- 1 | ../../../../../DYVideoCamera/Classes/DYVideoSDK/DYSDKFilterResources/GPUImageBeautifyFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/DYVideoCamera/OTScreenshotHelper.h: -------------------------------------------------------------------------------- 1 | ../../../../../DYVideoCamera/Classes/OTScreenshotHelper/Public/OTScreenshotHelper.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/DYVideoCamera/SAResizibleBubble.h: -------------------------------------------------------------------------------- 1 | ../../../../../DYVideoCamera/Classes/DYVideoEditorController/SAResizibleBubble.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/DYVideoCamera/SASliderLeft.h: -------------------------------------------------------------------------------- 1 | ../../../../../DYVideoCamera/Classes/DYVideoEditorController/SASliderLeft.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/DYVideoCamera/SASliderRight.h: -------------------------------------------------------------------------------- 1 | ../../../../../DYVideoCamera/Classes/DYVideoEditorController/SASliderRight.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/DYVideoCamera/SAVideoRangeSlider.h: -------------------------------------------------------------------------------- 1 | ../../../../../DYVideoCamera/Classes/DYVideoEditorController/SAVideoRangeSlider.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/DYVideoCamera/UIView+ComOpenThreadOTScreenshotHelperStatusBarReference.h: -------------------------------------------------------------------------------- 1 | ../../../../../DYVideoCamera/Classes/OTScreenshotHelper/Private/UIView+ComOpenThreadOTScreenshotHelperStatusBarReference.h -------------------------------------------------------------------------------- /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/GPUImageColorConversion.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageColorConversion.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/GPUImageColorLocalBinaryPatternFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageColorLocalBinaryPatternFilter.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/GPUImageColourFASTFeatureDetector.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageColourFASTFeatureDetector.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/GPUImage/GPUImageColourFASTSamplingOperation.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageColourFASTSamplingOperation.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/GPUImageFourInputFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageFourInputFilter.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/GPUImageHighlightShadowTintFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageHighlightShadowTintFilter.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/GPUImageSkinToneFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageSkinToneFilter.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/GPUImageSolarizeFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageSolarizeFilter.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/GPUImageVibranceFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageVibranceFilter.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/MBProgressHUD/MBProgressHUD.h: -------------------------------------------------------------------------------- 1 | ../../../MBProgressHUD/MBProgressHUD.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Masonry/Masonry.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/lottie-ios_Oc/CALayer+Compat.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/MacCompatibility/CALayer+Compat.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/lottie-ios_Oc/CGGeometry+LOTAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/Extensions/CGGeometry+LOTAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/lottie-ios_Oc/LOTAnimatedControl.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/PublicHeaders/LOTAnimatedControl.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/lottie-ios_Oc/LOTAnimatedSwitch.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/PublicHeaders/LOTAnimatedSwitch.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/lottie-ios_Oc/LOTAnimationCache.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/PublicHeaders/LOTAnimationCache.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/lottie-ios_Oc/LOTAnimationTransitionController.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/PublicHeaders/LOTAnimationTransitionController.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/lottie-ios_Oc/LOTAnimationView.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/PublicHeaders/LOTAnimationView.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/lottie-ios_Oc/LOTAnimationView_Compat.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/PublicHeaders/LOTAnimationView_Compat.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/lottie-ios_Oc/LOTAnimationView_Internal.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/Private/LOTAnimationView_Internal.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/lottie-ios_Oc/LOTAnimatorNode.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/RenderSystem/LOTAnimatorNode.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/lottie-ios_Oc/LOTArrayInterpolator.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTArrayInterpolator.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/lottie-ios_Oc/LOTAsset.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/Models/LOTAsset.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/lottie-ios_Oc/LOTAssetGroup.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/Models/LOTAssetGroup.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/lottie-ios_Oc/LOTBezierData.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/AnimatableProperties/LOTBezierData.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/lottie-ios_Oc/LOTBezierPath.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/Extensions/LOTBezierPath.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/lottie-ios_Oc/LOTBlockCallback.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/PublicHeaders/LOTBlockCallback.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/lottie-ios_Oc/LOTCacheProvider.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/PublicHeaders/LOTCacheProvider.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/lottie-ios_Oc/LOTCircleAnimator.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/RenderSystem/AnimatorNodes/LOTCircleAnimator.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/lottie-ios_Oc/LOTColorInterpolator.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTColorInterpolator.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/lottie-ios_Oc/LOTComposition.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/PublicHeaders/LOTComposition.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/lottie-ios_Oc/LOTCompositionContainer.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/AnimatableLayers/LOTCompositionContainer.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/lottie-ios_Oc/LOTFillRenderer.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/RenderSystem/RenderNodes/LOTFillRenderer.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/lottie-ios_Oc/LOTGradientFillRender.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/RenderSystem/RenderNodes/LOTGradientFillRender.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/lottie-ios_Oc/LOTHelpers.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/Extensions/LOTHelpers.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/lottie-ios_Oc/LOTInterpolatorCallback.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/PublicHeaders/LOTInterpolatorCallback.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/lottie-ios_Oc/LOTKeyframe.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/AnimatableProperties/LOTKeyframe.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/lottie-ios_Oc/LOTKeypath.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/PublicHeaders/LOTKeypath.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/lottie-ios_Oc/LOTLayer.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/Models/LOTLayer.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/lottie-ios_Oc/LOTLayerContainer.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/AnimatableLayers/LOTLayerContainer.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/lottie-ios_Oc/LOTLayerGroup.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/Models/LOTLayerGroup.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/lottie-ios_Oc/LOTMask.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/Models/LOTMask.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/lottie-ios_Oc/LOTMaskContainer.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/AnimatableLayers/LOTMaskContainer.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/lottie-ios_Oc/LOTModels.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/Models/LOTModels.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/lottie-ios_Oc/LOTNumberInterpolator.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTNumberInterpolator.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/lottie-ios_Oc/LOTPathAnimator.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/RenderSystem/AnimatorNodes/LOTPathAnimator.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/lottie-ios_Oc/LOTPathInterpolator.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTPathInterpolator.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/lottie-ios_Oc/LOTPlatformCompat.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/MacCompatibility/LOTPlatformCompat.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/lottie-ios_Oc/LOTPointInterpolator.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTPointInterpolator.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/lottie-ios_Oc/LOTPolygonAnimator.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/RenderSystem/AnimatorNodes/LOTPolygonAnimator.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/lottie-ios_Oc/LOTPolystarAnimator.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/RenderSystem/AnimatorNodes/LOTPolystarAnimator.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/lottie-ios_Oc/LOTRadialGradientLayer.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/Extensions/LOTRadialGradientLayer.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/lottie-ios_Oc/LOTRenderGroup.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/RenderSystem/RenderNodes/LOTRenderGroup.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/lottie-ios_Oc/LOTRenderNode.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/RenderSystem/LOTRenderNode.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/lottie-ios_Oc/LOTRepeaterRenderer.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/RenderSystem/RenderNodes/LOTRepeaterRenderer.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/lottie-ios_Oc/LOTRoundedRectAnimator.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/RenderSystem/AnimatorNodes/LOTRoundedRectAnimator.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/lottie-ios_Oc/LOTShapeCircle.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/Models/LOTShapeCircle.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/lottie-ios_Oc/LOTShapeFill.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/Models/LOTShapeFill.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/lottie-ios_Oc/LOTShapeGradientFill.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/Models/LOTShapeGradientFill.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/lottie-ios_Oc/LOTShapeGroup.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/Models/LOTShapeGroup.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/lottie-ios_Oc/LOTShapePath.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/Models/LOTShapePath.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/lottie-ios_Oc/LOTShapeRectangle.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/Models/LOTShapeRectangle.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/lottie-ios_Oc/LOTShapeRepeater.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/Models/LOTShapeRepeater.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/lottie-ios_Oc/LOTShapeStar.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/Models/LOTShapeStar.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/lottie-ios_Oc/LOTShapeStroke.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/Models/LOTShapeStroke.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/lottie-ios_Oc/LOTShapeTransform.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/Models/LOTShapeTransform.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/lottie-ios_Oc/LOTShapeTrimPath.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/Models/LOTShapeTrimPath.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/lottie-ios_Oc/LOTSizeInterpolator.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTSizeInterpolator.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/lottie-ios_Oc/LOTStrokeRenderer.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/RenderSystem/RenderNodes/LOTStrokeRenderer.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/lottie-ios_Oc/LOTTransformInterpolator.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTTransformInterpolator.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/lottie-ios_Oc/LOTTrimPathNode.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/RenderSystem/ManipulatorNodes/LOTTrimPathNode.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/lottie-ios_Oc/LOTValueCallback.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/PublicHeaders/LOTValueCallback.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/lottie-ios_Oc/LOTValueDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/PublicHeaders/LOTValueDelegate.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/lottie-ios_Oc/LOTValueInterpolator.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTValueInterpolator.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/lottie-ios_Oc/Lottie.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/PublicHeaders/Lottie.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/lottie-ios_Oc/NSValue+Compat.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/MacCompatibility/NSValue+Compat.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/lottie-ios_Oc/UIBezierPath.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/MacCompatibility/UIBezierPath.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/lottie-ios_Oc/UIColor+Expanded.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/Extensions/UIColor+Expanded.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/lottie-ios_Oc/UIColor.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/MacCompatibility/UIColor.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/CocoaAsyncSocket/GCDAsyncSocket.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaAsyncSocket/Source/GCD/GCDAsyncSocket.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/CocoaAsyncSocket/GCDAsyncUdpSocket.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaAsyncSocket/Source/GCD/GCDAsyncUdpSocket.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/CocoaLumberjack/CLIColor.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/include/CLIColor.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/CocoaLumberjack/CocoaLumberjack.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/Supporting Files/CocoaLumberjack.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/CocoaLumberjack/DDASLLogCapture.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/include/DDASLLogCapture.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/CocoaLumberjack/DDASLLogger.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/include/DDASLLogger.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/CocoaLumberjack/DDAbstractDatabaseLogger.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/include/DDAbstractDatabaseLogger.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/CocoaLumberjack/DDAssertMacros.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/include/DDAssertMacros.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/CocoaLumberjack/DDContextFilterLogFormatter.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/include/DDContextFilterLogFormatter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/CocoaLumberjack/DDDispatchQueueLogFormatter.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/include/DDDispatchQueueLogFormatter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/CocoaLumberjack/DDFileLogger+Buffering.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/include/DDFileLogger+Buffering.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/CocoaLumberjack/DDFileLogger.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/include/DDFileLogger.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/CocoaLumberjack/DDLegacyMacros.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/Supporting Files/DDLegacyMacros.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/CocoaLumberjack/DDLog+LOGV.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/include/DDLog+LOGV.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/CocoaLumberjack/DDLog.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/include/DDLog.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/CocoaLumberjack/DDLogMacros.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/include/DDLogMacros.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/CocoaLumberjack/DDLoggerNames.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/include/DDLoggerNames.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/CocoaLumberjack/DDMultiFormatter.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/include/DDMultiFormatter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/CocoaLumberjack/DDOSLogger.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/include/DDOSLogger.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/CocoaLumberjack/DDTTYLogger.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/include/DDTTYLogger.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/DYVideoCamera/ComOpenThreadOTScreenshotHelperSwizzleHelper.h: -------------------------------------------------------------------------------- 1 | ../../../../../DYVideoCamera/Classes/OTScreenshotHelper/Private/ComOpenThreadOTScreenshotHelperSwizzleHelper.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/DYVideoCamera/DYAssetModel.h: -------------------------------------------------------------------------------- 1 | ../../../../../DYVideoCamera/Classes/DYvideoAlbum/DYAssetModel.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/DYVideoCamera/DYCameraEngine.h: -------------------------------------------------------------------------------- 1 | ../../../../../DYVideoCamera/Classes/DYVideoSDK/DYCameraEngine.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/DYVideoCamera/DYFilterEngine.h: -------------------------------------------------------------------------------- 1 | ../../../../../DYVideoCamera/Classes/DYVideoSDK/DYFilterEngine.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/DYVideoCamera/DYFilterEntity.h: -------------------------------------------------------------------------------- 1 | ../../../../../DYVideoCamera/Classes/DYFilterEntity.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/DYVideoCamera/DYFilterEntityViewModel.h: -------------------------------------------------------------------------------- 1 | ../../../../../DYVideoCamera/Classes/DYUI/DYFilterEntityViewModel.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/DYVideoCamera/DYGPUImageEmptyFilter.h: -------------------------------------------------------------------------------- 1 | ../../../../../DYVideoCamera/Classes/DYVideoSDK/DYSDKFilterResources/DYGPUImageEmptyFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/DYVideoCamera/DYGPUImageLookupFilter.h: -------------------------------------------------------------------------------- 1 | ../../../../../DYVideoCamera/Classes/DYVideoSDK/DYSDKFilterResources/DYGPUImageLookupFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/DYVideoCamera/DYGPUImageMovieWriter.h: -------------------------------------------------------------------------------- 1 | ../../../../../DYVideoCamera/Classes/DYVideoSDK/DYGPUImageMovieWriter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/DYVideoCamera/DYImageManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../DYVideoCamera/Classes/DYvideoAlbum/DYImageManager.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/DYVideoCamera/DYMusicCategory.h: -------------------------------------------------------------------------------- 1 | ../../../../../DYVideoCamera/Classes/DYMusicCategory.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/DYVideoCamera/DYMusicEntity.h: -------------------------------------------------------------------------------- 1 | ../../../../../DYVideoCamera/Classes/DYMusicEntity.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/DYVideoCamera/DYOnlineMusicLibraryViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../../DYVideoCamera/Classes/DYUI/DYOnlineMusicLibraryViewController.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/DYVideoCamera/DYSegmentPrograssView.h: -------------------------------------------------------------------------------- 1 | ../../../../../DYVideoCamera/Classes/DYUI/DYSegmentPrograssView.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/DYVideoCamera/DYVMConstants+Private.h: -------------------------------------------------------------------------------- 1 | ../../../../../DYVideoCamera/Classes/DYVMConstants+Private.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/DYVideoCamera/DYVideoAlbumCollectionViewCell.h: -------------------------------------------------------------------------------- 1 | ../../../../../DYVideoCamera/Classes/DYvideoAlbum/DYVideoAlbumCollectionViewCell.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/DYVideoCamera/DYVideoAlbumPlayerViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../../DYVideoCamera/Classes/DYvideoAlbum/DYVideoAlbumPlayerViewController.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/DYVideoCamera/DYVideoEditorController.h: -------------------------------------------------------------------------------- 1 | ../../../../../DYVideoCamera/Classes/DYVideoEditorController/DYVideoEditorController.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/DYVideoCamera/DYVideoEditorViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../../DYVideoCamera/Classes/DYUI/DYVideoEditorViewController.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/DYVideoCamera/DYVideoFilterCollectionViewCell.h: -------------------------------------------------------------------------------- 1 | ../../../../../DYVideoCamera/Classes/DYUI/DYVideoFilterCollectionViewCell.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/DYVideoCamera/DYVideoModule.h: -------------------------------------------------------------------------------- 1 | ../../../../../DYVideoCamera/Classes/DYVideoModule.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/DYVideoCamera/DYVideoModuleDataSource.h: -------------------------------------------------------------------------------- 1 | ../../../../../DYVideoCamera/Classes/DYVideoModuleDataSource.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/DYVideoCamera/DYVideoNavViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../../DYVideoCamera/Classes/DYUI/DYVideoNavViewController.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/DYVideoCamera/DYVideoPickerController.h: -------------------------------------------------------------------------------- 1 | ../../../../../DYVideoCamera/Classes/DYvideoAlbum/DYVideoPickerController.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/DYVideoCamera/DYVideoProcess.h: -------------------------------------------------------------------------------- 1 | ../../../../../DYVideoCamera/Classes/DYVideoSDK/DYVideoProcess.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/DYVideoCamera/DYVideoProcessEngine.h: -------------------------------------------------------------------------------- 1 | ../../../../../DYVideoCamera/Classes/DYVideoSDK/DYVideoProcessEngine.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/DYVideoCamera/DYVideoRecoderViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../../DYVideoCamera/Classes/DYUI/DYVideoRecoderViewController.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/DYVideoCamera/DYVideoSDK.h: -------------------------------------------------------------------------------- 1 | ../../../../../DYVideoCamera/Classes/DYVideoSDK/DYVideoSDK.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/DYVideoCamera/GPUImageBeautifyFilter.h: -------------------------------------------------------------------------------- 1 | ../../../../../DYVideoCamera/Classes/DYVideoSDK/DYSDKFilterResources/GPUImageBeautifyFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/DYVideoCamera/OTScreenshotHelper.h: -------------------------------------------------------------------------------- 1 | ../../../../../DYVideoCamera/Classes/OTScreenshotHelper/Public/OTScreenshotHelper.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/DYVideoCamera/SAResizibleBubble.h: -------------------------------------------------------------------------------- 1 | ../../../../../DYVideoCamera/Classes/DYVideoEditorController/SAResizibleBubble.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/DYVideoCamera/SASliderLeft.h: -------------------------------------------------------------------------------- 1 | ../../../../../DYVideoCamera/Classes/DYVideoEditorController/SASliderLeft.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/DYVideoCamera/SASliderRight.h: -------------------------------------------------------------------------------- 1 | ../../../../../DYVideoCamera/Classes/DYVideoEditorController/SASliderRight.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/DYVideoCamera/SAVideoRangeSlider.h: -------------------------------------------------------------------------------- 1 | ../../../../../DYVideoCamera/Classes/DYVideoEditorController/SAVideoRangeSlider.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/DYVideoCamera/UIView+ComOpenThreadOTScreenshotHelperStatusBarReference.h: -------------------------------------------------------------------------------- 1 | ../../../../../DYVideoCamera/Classes/OTScreenshotHelper/Private/UIView+ComOpenThreadOTScreenshotHelperStatusBarReference.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GLProgram.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GLProgram.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImage.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImage.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImage3x3ConvolutionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImage3x3ConvolutionFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImage3x3TextureSamplingFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImage3x3TextureSamplingFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageAdaptiveThresholdFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageAdaptiveThresholdFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageAddBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageAddBlendFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageAlphaBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageAlphaBlendFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageAmatorkaFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageAmatorkaFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageAverageColor.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageAverageColor.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageAverageLuminanceThresholdFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageAverageLuminanceThresholdFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageBilateralFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageBilateralFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageBoxBlurFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageBoxBlurFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageBrightnessFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageBrightnessFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageBuffer.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageBuffer.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageBulgeDistortionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageBulgeDistortionFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageCGAColorspaceFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageCGAColorspaceFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageCannyEdgeDetectionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageCannyEdgeDetectionFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageChromaKeyBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageChromaKeyBlendFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageChromaKeyFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageChromaKeyFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageClosingFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageClosingFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageColorBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageColorBlendFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageColorBurnBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageColorBurnBlendFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageColorConversion.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageColorConversion.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageColorDodgeBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageColorDodgeBlendFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageColorInvertFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageColorInvertFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageColorLocalBinaryPatternFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageColorLocalBinaryPatternFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageColorMatrixFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageColorMatrixFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageColorPackingFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageColorPackingFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageColourFASTFeatureDetector.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageColourFASTFeatureDetector.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageColourFASTSamplingOperation.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageColourFASTSamplingOperation.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageContext.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/iOS/GPUImageContext.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageContrastFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageContrastFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageCropFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageCropFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageCrosshairGenerator.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageCrosshairGenerator.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageCrosshatchFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageCrosshatchFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageDarkenBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageDarkenBlendFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageDifferenceBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageDifferenceBlendFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageDilationFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageDilationFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageDirectionalNonMaximumSuppressionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageDirectionalNonMaximumSuppressionFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageDirectionalSobelEdgeDetectionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageDirectionalSobelEdgeDetectionFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageDissolveBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageDissolveBlendFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageDivideBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageDivideBlendFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageEmbossFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageEmbossFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageErosionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageErosionFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageExclusionBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageExclusionBlendFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageExposureFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageExposureFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageFASTCornerDetectionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageFASTCornerDetectionFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageFalseColorFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageFalseColorFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageFilterGroup.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageFilterGroup.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageFilterPipeline.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageFilterPipeline.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageFourInputFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageFourInputFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageFramebuffer.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageFramebuffer.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageFramebufferCache.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageFramebufferCache.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageFramework.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/iOS/Framework/GPUImageFramework.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageGammaFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageGammaFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageGaussianBlurFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageGaussianBlurFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageGaussianBlurPositionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageGaussianBlurPositionFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageGaussianSelectiveBlurFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageGaussianSelectiveBlurFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageGlassSphereFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageGlassSphereFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageGrayscaleFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageGrayscaleFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageHSBFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageHSBFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageHalftoneFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageHalftoneFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageHardLightBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageHardLightBlendFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageHarrisCornerDetectionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageHarrisCornerDetectionFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageHazeFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageHazeFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageHighPassFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageHighPassFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageHighlightShadowFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageHighlightShadowFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageHighlightShadowTintFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageHighlightShadowTintFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageHistogramEqualizationFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageHistogramEqualizationFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageHistogramFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageHistogramFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageHistogramGenerator.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageHistogramGenerator.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageHoughTransformLineDetector.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageHoughTransformLineDetector.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageHueBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageHueBlendFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageHueFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageHueFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageJFAVoronoiFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageJFAVoronoiFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageKuwaharaFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageKuwaharaFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageKuwaharaRadius3Filter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageKuwaharaRadius3Filter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageLanczosResamplingFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageLanczosResamplingFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageLaplacianFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageLaplacianFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageLevelsFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageLevelsFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageLightenBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageLightenBlendFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageLineGenerator.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageLineGenerator.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageLinearBurnBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageLinearBurnBlendFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageLocalBinaryPatternFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageLocalBinaryPatternFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageLookupFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageLookupFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageLowPassFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageLowPassFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageLuminanceRangeFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageLuminanceRangeFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageLuminanceThresholdFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageLuminanceThresholdFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageLuminosity.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageLuminosity.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageLuminosityBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageLuminosityBlendFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageMaskFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageMaskFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageMedianFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageMedianFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageMissEtikateFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageMissEtikateFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageMonochromeFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageMonochromeFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageMosaicFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageMosaicFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageMotionBlurFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageMotionBlurFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageMotionDetector.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageMotionDetector.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageMovie.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageMovie.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageMovieComposition.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageMovieComposition.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageMovieWriter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/iOS/GPUImageMovieWriter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageMultiplyBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageMultiplyBlendFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageNobleCornerDetectionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageNobleCornerDetectionFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageNonMaximumSuppressionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageNonMaximumSuppressionFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageNormalBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageNormalBlendFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageOpacityFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageOpacityFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageOpeningFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageOpeningFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageOutput.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageOutput.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageOverlayBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageOverlayBlendFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageParallelCoordinateLineTransformFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageParallelCoordinateLineTransformFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImagePerlinNoiseFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImagePerlinNoiseFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImagePicture+TextureSubimage.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/iOS/GPUImagePicture+TextureSubimage.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImagePicture.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/iOS/GPUImagePicture.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImagePinchDistortionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImagePinchDistortionFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImagePixellateFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImagePixellateFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImagePixellatePositionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImagePixellatePositionFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImagePoissonBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImagePoissonBlendFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImagePolarPixellateFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImagePolarPixellateFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImagePolkaDotFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImagePolkaDotFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImagePosterizeFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImagePosterizeFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImagePrewittEdgeDetectionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImagePrewittEdgeDetectionFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageRGBClosingFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageRGBClosingFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageRGBDilationFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageRGBDilationFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageRGBErosionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageRGBErosionFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageRGBFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageRGBFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageRGBOpeningFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageRGBOpeningFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageRawDataInput.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageRawDataInput.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageRawDataOutput.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageRawDataOutput.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageSaturationBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageSaturationBlendFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageSaturationFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageSaturationFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageScreenBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageScreenBlendFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageSepiaFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageSepiaFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageSharpenFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageSharpenFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageShiTomasiFeatureDetectionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageShiTomasiFeatureDetectionFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageSingleComponentGaussianBlurFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageSingleComponentGaussianBlurFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageSketchFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageSketchFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageSkinToneFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageSkinToneFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageSmoothToonFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageSmoothToonFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageSobelEdgeDetectionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageSobelEdgeDetectionFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageSoftEleganceFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageSoftEleganceFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageSoftLightBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageSoftLightBlendFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageSolarizeFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageSolarizeFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageSolidColorGenerator.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageSolidColorGenerator.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageSourceOverBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageSourceOverBlendFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageSphereRefractionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageSphereRefractionFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageStillCamera.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageStillCamera.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageStretchDistortionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageStretchDistortionFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageSubtractBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageSubtractBlendFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageSwirlFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageSwirlFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageTextureInput.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageTextureInput.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageTextureOutput.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageTextureOutput.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageThreeInputFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageThreeInputFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageThresholdEdgeDetectionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageThresholdEdgeDetectionFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageThresholdSketchFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageThresholdSketchFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageThresholdedNonMaximumSuppressionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageThresholdedNonMaximumSuppressionFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageTiltShiftFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageTiltShiftFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageToneCurveFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageToneCurveFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageToonFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageToonFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageTransformFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageTransformFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageTwoInputCrossTextureSamplingFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageTwoInputCrossTextureSamplingFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageTwoInputFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageTwoInputFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageTwoPassFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageTwoPassFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageTwoPassTextureSamplingFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageTwoPassTextureSamplingFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageUIElement.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageUIElement.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageUnsharpMaskFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageUnsharpMaskFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageVibranceFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageVibranceFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageVideoCamera.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageVideoCamera.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageView.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/iOS/GPUImageView.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageVignetteFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageVignetteFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageVoronoiConsumerFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageVoronoiConsumerFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageWeakPixelInclusionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageWeakPixelInclusionFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageWhiteBalanceFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageWhiteBalanceFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageXYDerivativeFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageXYDerivativeFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageZoomBlurFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageZoomBlurFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/GPUImage/GPUImageiOSBlurFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageiOSBlurFilter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/MBProgressHUD/MBProgressHUD.h: -------------------------------------------------------------------------------- 1 | ../../../MBProgressHUD/MBProgressHUD.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Masonry/Masonry.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/lottie-ios_Oc/CALayer+Compat.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/MacCompatibility/CALayer+Compat.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/lottie-ios_Oc/CGGeometry+LOTAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/Extensions/CGGeometry+LOTAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/lottie-ios_Oc/LOTAnimatedControl.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/PublicHeaders/LOTAnimatedControl.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/lottie-ios_Oc/LOTAnimatedSwitch.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/PublicHeaders/LOTAnimatedSwitch.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/lottie-ios_Oc/LOTAnimationCache.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/PublicHeaders/LOTAnimationCache.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/lottie-ios_Oc/LOTAnimationTransitionController.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/PublicHeaders/LOTAnimationTransitionController.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/lottie-ios_Oc/LOTAnimationView.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/PublicHeaders/LOTAnimationView.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/lottie-ios_Oc/LOTAnimationView_Compat.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/PublicHeaders/LOTAnimationView_Compat.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/lottie-ios_Oc/LOTAnimationView_Internal.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/Private/LOTAnimationView_Internal.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/lottie-ios_Oc/LOTAnimatorNode.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/RenderSystem/LOTAnimatorNode.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/lottie-ios_Oc/LOTArrayInterpolator.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTArrayInterpolator.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/lottie-ios_Oc/LOTAsset.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/Models/LOTAsset.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/lottie-ios_Oc/LOTAssetGroup.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/Models/LOTAssetGroup.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/lottie-ios_Oc/LOTBezierData.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/AnimatableProperties/LOTBezierData.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/lottie-ios_Oc/LOTBezierPath.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/Extensions/LOTBezierPath.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/lottie-ios_Oc/LOTBlockCallback.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/PublicHeaders/LOTBlockCallback.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/lottie-ios_Oc/LOTCacheProvider.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/PublicHeaders/LOTCacheProvider.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/lottie-ios_Oc/LOTCircleAnimator.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/RenderSystem/AnimatorNodes/LOTCircleAnimator.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/lottie-ios_Oc/LOTColorInterpolator.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTColorInterpolator.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/lottie-ios_Oc/LOTComposition.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/PublicHeaders/LOTComposition.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/lottie-ios_Oc/LOTCompositionContainer.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/AnimatableLayers/LOTCompositionContainer.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/lottie-ios_Oc/LOTFillRenderer.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/RenderSystem/RenderNodes/LOTFillRenderer.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/lottie-ios_Oc/LOTGradientFillRender.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/RenderSystem/RenderNodes/LOTGradientFillRender.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/lottie-ios_Oc/LOTHelpers.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/Extensions/LOTHelpers.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/lottie-ios_Oc/LOTInterpolatorCallback.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/PublicHeaders/LOTInterpolatorCallback.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/lottie-ios_Oc/LOTKeyframe.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/AnimatableProperties/LOTKeyframe.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/lottie-ios_Oc/LOTKeypath.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/PublicHeaders/LOTKeypath.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/lottie-ios_Oc/LOTLayer.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/Models/LOTLayer.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/lottie-ios_Oc/LOTLayerContainer.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/AnimatableLayers/LOTLayerContainer.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/lottie-ios_Oc/LOTLayerGroup.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/Models/LOTLayerGroup.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/lottie-ios_Oc/LOTMask.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/Models/LOTMask.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/lottie-ios_Oc/LOTMaskContainer.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/AnimatableLayers/LOTMaskContainer.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/lottie-ios_Oc/LOTModels.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/Models/LOTModels.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/lottie-ios_Oc/LOTNumberInterpolator.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTNumberInterpolator.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/lottie-ios_Oc/LOTPathAnimator.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/RenderSystem/AnimatorNodes/LOTPathAnimator.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/lottie-ios_Oc/LOTPathInterpolator.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTPathInterpolator.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/lottie-ios_Oc/LOTPlatformCompat.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/MacCompatibility/LOTPlatformCompat.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/lottie-ios_Oc/LOTPointInterpolator.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTPointInterpolator.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/lottie-ios_Oc/LOTPolygonAnimator.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/RenderSystem/AnimatorNodes/LOTPolygonAnimator.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/lottie-ios_Oc/LOTPolystarAnimator.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/RenderSystem/AnimatorNodes/LOTPolystarAnimator.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/lottie-ios_Oc/LOTRadialGradientLayer.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/Extensions/LOTRadialGradientLayer.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/lottie-ios_Oc/LOTRenderGroup.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/RenderSystem/RenderNodes/LOTRenderGroup.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/lottie-ios_Oc/LOTRenderNode.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/RenderSystem/LOTRenderNode.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/lottie-ios_Oc/LOTRepeaterRenderer.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/RenderSystem/RenderNodes/LOTRepeaterRenderer.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/lottie-ios_Oc/LOTRoundedRectAnimator.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/RenderSystem/AnimatorNodes/LOTRoundedRectAnimator.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/lottie-ios_Oc/LOTShapeCircle.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/Models/LOTShapeCircle.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/lottie-ios_Oc/LOTShapeFill.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/Models/LOTShapeFill.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/lottie-ios_Oc/LOTShapeGradientFill.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/Models/LOTShapeGradientFill.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/lottie-ios_Oc/LOTShapeGroup.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/Models/LOTShapeGroup.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/lottie-ios_Oc/LOTShapePath.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/Models/LOTShapePath.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/lottie-ios_Oc/LOTShapeRectangle.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/Models/LOTShapeRectangle.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/lottie-ios_Oc/LOTShapeRepeater.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/Models/LOTShapeRepeater.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/lottie-ios_Oc/LOTShapeStar.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/Models/LOTShapeStar.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/lottie-ios_Oc/LOTShapeStroke.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/Models/LOTShapeStroke.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/lottie-ios_Oc/LOTShapeTransform.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/Models/LOTShapeTransform.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/lottie-ios_Oc/LOTShapeTrimPath.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/Models/LOTShapeTrimPath.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/lottie-ios_Oc/LOTSizeInterpolator.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTSizeInterpolator.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/lottie-ios_Oc/LOTStrokeRenderer.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/RenderSystem/RenderNodes/LOTStrokeRenderer.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/lottie-ios_Oc/LOTTransformInterpolator.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTTransformInterpolator.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/lottie-ios_Oc/LOTTrimPathNode.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/RenderSystem/ManipulatorNodes/LOTTrimPathNode.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/lottie-ios_Oc/LOTValueCallback.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/PublicHeaders/LOTValueCallback.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/lottie-ios_Oc/LOTValueDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/PublicHeaders/LOTValueDelegate.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/lottie-ios_Oc/LOTValueInterpolator.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTValueInterpolator.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/lottie-ios_Oc/Lottie.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/PublicHeaders/Lottie.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/lottie-ios_Oc/NSValue+Compat.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/MacCompatibility/NSValue+Compat.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/lottie-ios_Oc/UIBezierPath.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/MacCompatibility/UIBezierPath.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/lottie-ios_Oc/UIColor+Expanded.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/Extensions/UIColor+Expanded.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/lottie-ios_Oc/UIColor.h: -------------------------------------------------------------------------------- 1 | ../../../lottie-ios_Oc/oc 版本代码/lottie-ios/Classes/MacCompatibility/UIColor.h -------------------------------------------------------------------------------- /Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Frameworks/KSYHTTPCache.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/Frameworks/KSYHTTPCache.framework/Info.plist -------------------------------------------------------------------------------- /Frameworks/KSYHTTPCache.framework/KSYHTTPCache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doubleYang1020/DYVideoCamera/c8924ca7e98c31ca9806aa64bd553553c2eb0081/Frameworks/KSYHTTPCache.framework/KSYHTTPCache -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------