Skip to content

Commit

Permalink
Update pod to 0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
vitoziv committed Jul 8, 2019
1 parent 30a74e4 commit 9a52e64
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Cabbage/Sources/Core/Audio/AudioProcessingTapHolder.swift
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public class AudioProcessingTapHolder: NSObject, NSCopying {
// MARK: - Handler
fileprivate var tapInit: MTAudioProcessingTapInitCallback = {
(tap, clientInfo, tapStorageOut) in
Log.info("init \((tap, clientInfo, tapStorageOut))\n")
Log.info("init \(tap), \(String(describing: clientInfo)), \(tapStorageOut)\n")
tapStorageOut.pointee = clientInfo
}

Expand All @@ -49,7 +49,7 @@ public class AudioProcessingTapHolder: NSObject, NSCopying {

fileprivate var tapPrepare: MTAudioProcessingTapPrepareCallback = {
(tap, maxFrames, processingFormat) in
Log.info("prepare: \((tap, maxFrames, processingFormat))\n")
Log.info("prepare: \(tap) \(maxFrames) \(processingFormat) \n")
}

fileprivate var tapUnprepare: MTAudioProcessingTapUnprepareCallback = {
Expand All @@ -59,7 +59,7 @@ public class AudioProcessingTapHolder: NSObject, NSCopying {

fileprivate var tapProcess: MTAudioProcessingTapProcessCallback = {
(tap, numberFrames, flags, bufferListInOut, numberFramesOut, flagsOut) in
Log.info("callback \((tap, numberFrames, flags, bufferListInOut, numberFramesOut, flagsOut))\n")
Log.info("callback \(tap) \(numberFrames) \(flags) \(bufferListInOut) \(numberFramesOut) \(flagsOut)\n")
var timeRange: CMTimeRange = CMTimeRange.zero
let status = MTAudioProcessingTapGetSourceAudio(tap, numberFrames, bufferListInOut, flagsOut, &timeRange, numberFramesOut)
if status != noErr {
Expand Down
2 changes: 1 addition & 1 deletion VFCabbage.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|

s.name = 'VFCabbage'
s.version = '0.4'
s.version = '0.5'
s.summary = 'A high-level video composition framework build on top of AVFoundation. It\'s simple to use and easy to extend.'

s.description = <<-DESC
Expand Down

0 comments on commit 9a52e64

Please sign in to comment.