Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
chenliming committed Oct 8, 2016
1 parent 05ca0f4 commit 12e1066
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion FrameWork/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>2.4</string>
<string>2.4.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
4 changes: 2 additions & 2 deletions LFLiveKit.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Expand All @@ -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
8 changes: 4 additions & 4 deletions LFLiveKit/capture/LFVideoCapture.m
Original file line number Diff line number Diff line change
Expand Up @@ -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];
//}
}
}

Expand Down

0 comments on commit 12e1066

Please sign in to comment.