From 12e1066caefa975edb5b2951702e09e1f57a7600 Mon Sep 17 00:00:00 2001 From: chenliming Date: Sat, 8 Oct 2016 18:37:42 +0800 Subject: [PATCH] update version --- FrameWork/Info.plist | 2 +- LFLiveKit.podspec | 4 ++-- LFLiveKit/capture/LFVideoCapture.m | 8 ++++---- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/FrameWork/Info.plist b/FrameWork/Info.plist index c567b7e5..1bc00f11 100644 --- a/FrameWork/Info.plist +++ b/FrameWork/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 2.4 + 2.4.1 CFBundleSignature ???? CFBundleVersion diff --git a/LFLiveKit.podspec b/LFLiveKit.podspec index 576c7438..99a22eb3 100644 --- a/LFLiveKit.podspec +++ b/LFLiveKit.podspec @@ -2,7 +2,7 @@ Pod::Spec.new do |s| s.name = "LFLiveKit" - s.version = "2.4" + s.version = "2.4.1" s.summary = "LaiFeng ios Live. LFLiveKit." s.homepage = "https://github.com/chenliming777" s.license = { :type => "MIT", :file => "LICENSE" } @@ -17,6 +17,6 @@ Pod::Spec.new do |s| s.libraries = "c++", "z" s.requires_arc = true - s.dependency 'LMGPUImage' + s.dependency 'GPUImage' s.dependency 'pili-librtmp', '1.0.3.1' end diff --git a/LFLiveKit/capture/LFVideoCapture.m b/LFLiveKit/capture/LFVideoCapture.m index 27d3312b..f4c86ca4 100755 --- a/LFLiveKit/capture/LFVideoCapture.m +++ b/LFLiveKit/capture/LFVideoCapture.m @@ -271,10 +271,10 @@ - (void)processVideo:(GPUImageOutput *)output { __weak typeof(self) _self = self; @autoreleasepool { GPUImageFramebuffer *imageFramebuffer = output.framebufferForOutput; - CVPixelBufferRef pixelBuffer = [imageFramebuffer pixelBuffer]; - if (pixelBuffer && _self.delegate && [_self.delegate respondsToSelector:@selector(captureOutput:pixelBuffer:)]) { - [_self.delegate captureOutput:_self pixelBuffer:pixelBuffer]; - } + //CVPixelBufferRef pixelBuffer = [imageFramebuffer pixelBuffer]; + //if (pixelBuffer && _self.delegate && [_self.delegate respondsToSelector:@selector(captureOutput:pixelBuffer:)]) { + //[_self.delegate captureOutput:_self pixelBuffer:pixelBuffer]; + //} } }