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];
+ //}
}
}