Skip to content

Commit 12e1066

Browse files
author
chenliming
committed
update version
1 parent 05ca0f4 commit 12e1066

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

FrameWork/Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>2.4</string>
18+
<string>2.4.1</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

LFLiveKit.podspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Pod::Spec.new do |s|
33

44
s.name = "LFLiveKit"
5-
s.version = "2.4"
5+
s.version = "2.4.1"
66
s.summary = "LaiFeng ios Live. LFLiveKit."
77
s.homepage = "https://github.com/chenliming777"
88
s.license = { :type => "MIT", :file => "LICENSE" }
@@ -17,6 +17,6 @@ Pod::Spec.new do |s|
1717
s.libraries = "c++", "z"
1818

1919
s.requires_arc = true
20-
s.dependency 'LMGPUImage'
20+
s.dependency 'GPUImage'
2121
s.dependency 'pili-librtmp', '1.0.3.1'
2222
end

LFLiveKit/capture/LFVideoCapture.m

+4-4
Original file line numberDiff line numberDiff line change
@@ -271,10 +271,10 @@ - (void)processVideo:(GPUImageOutput *)output {
271271
__weak typeof(self) _self = self;
272272
@autoreleasepool {
273273
GPUImageFramebuffer *imageFramebuffer = output.framebufferForOutput;
274-
CVPixelBufferRef pixelBuffer = [imageFramebuffer pixelBuffer];
275-
if (pixelBuffer && _self.delegate && [_self.delegate respondsToSelector:@selector(captureOutput:pixelBuffer:)]) {
276-
[_self.delegate captureOutput:_self pixelBuffer:pixelBuffer];
277-
}
274+
//CVPixelBufferRef pixelBuffer = [imageFramebuffer pixelBuffer];
275+
//if (pixelBuffer && _self.delegate && [_self.delegate respondsToSelector:@selector(captureOutput:pixelBuffer:)]) {
276+
//[_self.delegate captureOutput:_self pixelBuffer:pixelBuffer];
277+
//}
278278
}
279279
}
280280

0 commit comments

Comments
 (0)