Documentation Archive Developer
Search

CoreMedia Changes for Swift

CoreMedia

Removed CMBlockBufferCustomBlockSource.init(version: UInt32, AllocateBlock: CFunctionPointer<((UnsafeMutablePointer<Void>, Int) -> UnsafeMutablePointer<Void>)>, FreeBlock: CFunctionPointer<((UnsafeMutablePointer<Void>, UnsafeMutablePointer<Void>, Int) -> Void)>, refCon: UnsafeMutablePointer<Void>)
Removed CMBufferCallbacks.init()
Removed CMBufferCallbacks.init(version: UInt32, refcon: UnsafeMutablePointer<Void>, getDecodeTimeStamp: CMBufferGetTimeCallback, getPresentationTimeStamp: CMBufferGetTimeCallback, getDuration: CMBufferGetTimeCallback, isDataReady: CMBufferGetBooleanCallback, compare: CMBufferCompareCallback, dataBecameReadyNotification: Unmanaged<CFString>!, getSize: CMBufferGetSizeCallback)
Removed CMTimeFlags.init(_: UInt32)
Added CMBlockBufferCustomBlockSource.init(version: UInt32, AllocateBlock: ((UnsafeMutablePointer<Void>, Int) -> UnsafeMutablePointer<Void>)?, FreeBlock: ((UnsafeMutablePointer<Void>, UnsafeMutablePointer<Void>, Int) -> Void)?, refCon: UnsafeMutablePointer<Void>)
Added CMTime.convertScale(_: Int32, method: CMTimeRoundingMethod) -> CMTime
Added CMTime.init(seconds: Double, preferredTimescale: CMTimeScale)
Added CMTime.init(value: CMTimeValue, timescale: CMTimeScale)
Added CMTimeRange.containsTime(_: CMTime) -> Bool
Added CMTimeRange.containsTimeRange(_: CMTimeRange) -> Bool
Added CMTimeRange.end
Added CMTimeRange.init(start: CMTime, end: CMTime)
Added CMTimeRange.intersection(_: CMTimeRange) -> CMTimeRange
Added CMTimeRange.union(_: CMTimeRange) -> CMTimeRange
Added !=(_: CMTimeRange, _: CMTimeRange) -> Bool
Added !=(_: CMTime, _: CMTime) -> Bool
Added +(_: CMTime, _: CMTime) -> CMTime
Added -(_: CMTime, _: CMTime) -> CMTime
Added <(_: CMTime, _: CMTime) -> Bool
Added <=(_: CMTime, _: CMTime) -> Bool
Added ==(_: CMTimeRange, _: CMTimeRange) -> Bool
Added ==(_: CMTime, _: CMTime) -> Bool
Added >(_: CMTime, _: CMTime) -> Bool
Added >=(_: CMTime, _: CMTime) -> Bool
Added COREMEDIA_DECLARE_BRIDGED_TYPES
Added COREMEDIA_DECLARE_NULLABILITY
Added COREMEDIA_DECLARE_NULLABILITY_BEGIN_END
Added COREMEDIA_DECLARE_RETURNS_NOT_RETAINED_ON_PARAMETERS
Added COREMEDIA_DECLARE_RETURNS_RETAINED
Added COREMEDIA_DECLARE_RETURNS_RETAINED_ON_PARAMETERS
Declaration
From
struct CMBlockBufferCustomBlockSource {
    var version: UInt32
    var AllocateBlock: CFunctionPointer<((UnsafeMutablePointer<Void>, Int) -> UnsafeMutablePointer<Void>)>
    var FreeBlock: CFunctionPointer<((UnsafeMutablePointer<Void>, UnsafeMutablePointer<Void>, Int) -> Void)>
    var refCon: UnsafeMutablePointer<Void>
    init()
    init(version version: UInt32, AllocateBlock AllocateBlock: CFunctionPointer<((UnsafeMutablePointer<Void>, Int) -> UnsafeMutablePointer<Void>)>, FreeBlock FreeBlock: CFunctionPointer<((UnsafeMutablePointer<Void>, UnsafeMutablePointer<Void>, Int) -> Void)>, refCon refCon: UnsafeMutablePointer<Void>)
}
To
struct CMBlockBufferCustomBlockSource {
    var version: UInt32
    var AllocateBlock: ((UnsafeMutablePointer<Void>, Int) -> UnsafeMutablePointer<Void>)?
    var FreeBlock: ((UnsafeMutablePointer<Void>, UnsafeMutablePointer<Void>, Int) -> Void)?
    var refCon: UnsafeMutablePointer<Void>
    init()
    init(version version: UInt32, AllocateBlock AllocateBlock: ((UnsafeMutablePointer<Void>, Int) -> UnsafeMutablePointer<Void>)?, FreeBlock FreeBlock: ((UnsafeMutablePointer<Void>, UnsafeMutablePointer<Void>, Int) -> Void)?, refCon refCon: UnsafeMutablePointer<Void>)
}

Declaration
From
var AllocateBlock: CFunctionPointer<((UnsafeMutablePointer<Void>, Int) -> UnsafeMutablePointer<Void>)>
To
var AllocateBlock: ((UnsafeMutablePointer<Void>, Int) -> UnsafeMutablePointer<Void>)?

Declaration
From
var FreeBlock: CFunctionPointer<((UnsafeMutablePointer<Void>, UnsafeMutablePointer<Void>, Int) -> Void)>
To
var FreeBlock: ((UnsafeMutablePointer<Void>, UnsafeMutablePointer<Void>, Int) -> Void)?

Declaration
From
struct CMBufferCallbacks {
    var version: UInt32
    var refcon: UnsafeMutablePointer<Void>
    var getDecodeTimeStamp: CMBufferGetTimeCallback
    var getPresentationTimeStamp: CMBufferGetTimeCallback
    var getDuration: CMBufferGetTimeCallback
    var isDataReady: CMBufferGetBooleanCallback
    var compare: CMBufferCompareCallback
    var dataBecameReadyNotification: Unmanaged<CFString>!
    var getSize: CMBufferGetSizeCallback
    init()
    init(version version: UInt32, refcon refcon: UnsafeMutablePointer<Void>, getDecodeTimeStamp getDecodeTimeStamp: CMBufferGetTimeCallback, getPresentationTimeStamp getPresentationTimeStamp: CMBufferGetTimeCallback, getDuration getDuration: CMBufferGetTimeCallback, isDataReady isDataReady: CMBufferGetBooleanCallback, compare compare: CMBufferCompareCallback, dataBecameReadyNotification dataBecameReadyNotification: Unmanaged<CFString>!, getSize getSize: CMBufferGetSizeCallback)
}
To
struct CMBufferCallbacks {
    var version: UInt32
    var refcon: UnsafeMutablePointer<Void>
    var getDecodeTimeStamp: CMBufferGetTimeCallback?
    var getPresentationTimeStamp: CMBufferGetTimeCallback?
    var getDuration: CMBufferGetTimeCallback
    var isDataReady: CMBufferGetBooleanCallback?
    var compare: CMBufferCompareCallback?
    var dataBecameReadyNotification: Unmanaged<CFString>?
    var getSize: CMBufferGetSizeCallback?
}

Declaration
From
var compare: CMBufferCompareCallback
To
var compare: CMBufferCompareCallback?

Declaration
From
var dataBecameReadyNotification: Unmanaged<CFString>!
To
var dataBecameReadyNotification: Unmanaged<CFString>?

Declaration
From
var getDecodeTimeStamp: CMBufferGetTimeCallback
To
var getDecodeTimeStamp: CMBufferGetTimeCallback?

Declaration
From
var getPresentationTimeStamp: CMBufferGetTimeCallback
To
var getPresentationTimeStamp: CMBufferGetTimeCallback?

Declaration
From
var getSize: CMBufferGetSizeCallback
To
var getSize: CMBufferGetSizeCallback?

Declaration
From
var isDataReady: CMBufferGetBooleanCallback
To
var isDataReady: CMBufferGetBooleanCallback?

DeclarationProtocols
From
struct CMTime {
    var value: CMTimeValue
    var timescale: CMTimeScale
    var flags: CMTimeFlags
    var epoch: CMTimeEpoch
    init()
    init(value value: CMTimeValue, timescale timescale: CMTimeScale, flags flags: CMTimeFlags, epoch epoch: CMTimeEpoch)
}
--
To
struct CMTime {
    var value: CMTimeValue
    var timescale: CMTimeScale
    var flags: CMTimeFlags
    var epoch: CMTimeEpoch
    init()
    init(value value: CMTimeValue, timescale timescale: CMTimeScale, flags flags: CMTimeFlags, epoch epoch: CMTimeEpoch)
}
extension CMTime {
    init(seconds seconds: Double, preferredTimescale preferredTimescale: CMTimeScale)
    init(value value: CMTimeValue, timescale timescale: CMTimeScale)
}
extension CMTime {
    var isValid: Bool { get }
    var isPositiveInfinity: Bool { get }
    var isNegativeInfinity: Bool { get }
    var isIndefinite: Bool { get }
    var isNumeric: Bool { get }
    var hasBeenRounded: Bool { get }
    var seconds: Double { get }
    func convertScale(_ newTimescale: Int32, method method: CMTimeRoundingMethod) -> CMTime
}
extension CMTime : Equatable, Comparable {
}
extension CMTime {
    init(seconds seconds: Double, preferredTimescale preferredTimescale: CMTimeScale)
    init(value value: CMTimeValue, timescale timescale: CMTimeScale)
}
extension CMTime {
    var isValid: Bool { get }
    var isPositiveInfinity: Bool { get }
    var isNegativeInfinity: Bool { get }
    var isIndefinite: Bool { get }
    var isNumeric: Bool { get }
    var hasBeenRounded: Bool { get }
    var seconds: Double { get }
    func convertScale(_ newTimescale: Int32, method method: CMTimeRoundingMethod) -> CMTime
}
extension CMTime : Equatable, Comparable {
}
Comparable, Equatable

DeclarationProtocols
From
struct CMTimeFlags : RawOptionSetType {
    init(_ rawValue: UInt32)
    init(rawValue rawValue: UInt32)
    static var Valid: CMTimeFlags { get }
    static var HasBeenRounded: CMTimeFlags { get }
    static var PositiveInfinity: CMTimeFlags { get }
    static var NegativeInfinity: CMTimeFlags { get }
    static var Indefinite: CMTimeFlags { get }
    static var ImpliedValueFlagsMask: CMTimeFlags { get }
}
RawOptionSetType
To
struct CMTimeFlags : OptionSetType {
    init(rawValue rawValue: UInt32)
    static var Valid: CMTimeFlags { get }
    static var HasBeenRounded: CMTimeFlags { get }
    static var PositiveInfinity: CMTimeFlags { get }
    static var NegativeInfinity: CMTimeFlags { get }
    static var Indefinite: CMTimeFlags { get }
    static var ImpliedValueFlagsMask: CMTimeFlags { get }
}
OptionSetType

DeclarationProtocols
From
struct CMTimeRange {
    var start: CMTime
    var duration: CMTime
    init()
    init(start start: CMTime, duration duration: CMTime)
}
--
To
struct CMTimeRange {
    var start: CMTime
    var duration: CMTime
    init()
    init(start start: CMTime, duration duration: CMTime)
}
extension CMTimeRange {
    init(start start: CMTime, end end: CMTime)
    var isValid: Bool { get }
    var isIndefinite: Bool { get }
    var isEmpty: Bool { get }
    var end: CMTime { get }
    @warn_unused_result
    func union(_ otherRange: CMTimeRange) -> CMTimeRange
    @warn_unused_result
    func intersection(_ otherRange: CMTimeRange) -> CMTimeRange
    @warn_unused_result
    func containsTime(_ time: CMTime) -> Bool
    @warn_unused_result
    func containsTimeRange(_ range: CMTimeRange) -> Bool
}
extension CMTimeRange : Equatable {
}
extension CMTimeRange {
    init(start start: CMTime, end end: CMTime)
    var isValid: Bool { get }
    var isIndefinite: Bool { get }
    var isEmpty: Bool { get }
    var end: CMTime { get }
    @warn_unused_result
    func union(_ otherRange: CMTimeRange) -> CMTimeRange
    @warn_unused_result
    func intersection(_ otherRange: CMTimeRange) -> CMTimeRange
    @warn_unused_result
    func containsTime(_ time: CMTime) -> Bool
    @warn_unused_result
    func containsTimeRange(_ range: CMTimeRange) -> Bool
}
extension CMTimeRange : Equatable {
}
Equatable

DeclarationRaw Value Type
From
enum CMTimeRoundingMethod : UInt32 {
    case RoundHalfAwayFromZero
    case RoundTowardZero
    case RoundAwayFromZero
    case QuickTime
    case RoundTowardPositiveInfinity
    case RoundTowardNegativeInfinity
}
--
To
enum CMTimeRoundingMethod : UInt32 {
    case RoundHalfAwayFromZero
    case RoundTowardZero
    case RoundAwayFromZero
    case QuickTime
    case RoundTowardPositiveInfinity
    case RoundTowardNegativeInfinity
    static var Default: CMTimeRoundingMethod { get }
}
UInt32

Declaration
From
func CMAudioDeviceClockCreate(_ allocator: CFAllocator!, _ deviceUID: CFString!, _ clockOut: UnsafeMutablePointer<Unmanaged<CMClock>?>) -> OSStatus
To
func CMAudioDeviceClockCreate(_ allocator: CFAllocator?, _ deviceUID: CFString?, _ clockOut: UnsafeMutablePointer<CMClock?>) -> OSStatus

Declaration
From
func CMAudioDeviceClockCreateFromAudioDeviceID(_ allocator: CFAllocator!, _ deviceID: AudioDeviceID, _ clockOut: UnsafeMutablePointer<Unmanaged<CMClock>?>) -> OSStatus
To
func CMAudioDeviceClockCreateFromAudioDeviceID(_ allocator: CFAllocator?, _ deviceID: AudioDeviceID, _ clockOut: UnsafeMutablePointer<CMClock?>) -> OSStatus

Declaration
From
func CMAudioDeviceClockGetAudioDevice(_ clock: CMClock!, _ deviceUIDOut: UnsafeMutablePointer<Unmanaged<CFString>?>, _ deviceIDOut: UnsafeMutablePointer<AudioDeviceID>, _ trackingDefaultDeviceOut: UnsafeMutablePointer<Boolean>) -> OSStatus
To
func CMAudioDeviceClockGetAudioDevice(_ clock: CMClock, _ deviceUIDOut: AutoreleasingUnsafeMutablePointer<CFString?>, _ deviceIDOut: UnsafeMutablePointer<AudioDeviceID>, _ trackingDefaultDeviceOut: UnsafeMutablePointer<DarwinBoolean>) -> OSStatus

Declaration
From
func CMAudioDeviceClockSetAudioDeviceID(_ clock: CMClock!, _ deviceID: AudioDeviceID) -> OSStatus
To
func CMAudioDeviceClockSetAudioDeviceID(_ clock: CMClock, _ deviceID: AudioDeviceID) -> OSStatus

Declaration
From
func CMAudioDeviceClockSetAudioDeviceUID(_ clock: CMClock!, _ deviceUID: CFString!) -> OSStatus
To
func CMAudioDeviceClockSetAudioDeviceUID(_ clock: CMClock, _ deviceUID: CFString?) -> OSStatus

Declaration
From
func CMAudioFormatDescriptionCopyAsBigEndianSoundDescriptionBlockBuffer(_ allocator: CFAllocator!, _ audioFormatDescription: CMAudioFormatDescription!, _ soundDescriptionFlavor: CFString!, _ soundDescriptionBlockBufferOut: UnsafeMutablePointer<Unmanaged<CMBlockBuffer>?>) -> OSStatus
To
func CMAudioFormatDescriptionCopyAsBigEndianSoundDescriptionBlockBuffer(_ allocator: CFAllocator?, _ audioFormatDescription: CMAudioFormatDescription, _ soundDescriptionFlavor: CFString?, _ soundDescriptionBlockBufferOut: UnsafeMutablePointer<CMBlockBuffer?>) -> OSStatus

Declaration
From
func CMAudioFormatDescriptionCreate(_ allocator: CFAllocator!, _ asbd: UnsafePointer<AudioStreamBasicDescription>, _ layoutSize: Int, _ layout: UnsafePointer<AudioChannelLayout>, _ magicCookieSize: Int, _ magicCookie: UnsafePointer<Void>, _ extensions: CFDictionary!, _ outDesc: UnsafeMutablePointer<Unmanaged<CMAudioFormatDescription>?>) -> OSStatus
To
func CMAudioFormatDescriptionCreate(_ allocator: CFAllocator?, _ asbd: UnsafePointer<AudioStreamBasicDescription>, _ layoutSize: Int, _ layout: UnsafePointer<AudioChannelLayout>, _ magicCookieSize: Int, _ magicCookie: UnsafePointer<Void>, _ extensions: CFDictionary?, _ outDesc: UnsafeMutablePointer<CMAudioFormatDescription?>) -> OSStatus

Declaration
From
func CMAudioFormatDescriptionCreateFromBigEndianSoundDescriptionBlockBuffer(_ allocator: CFAllocator!, _ soundDescriptionBlockBuffer: CMBlockBuffer!, _ soundDescriptionFlavor: CFString!, _ audioFormatDescriptionOut: UnsafeMutablePointer<Unmanaged<CMAudioFormatDescription>?>) -> OSStatus
To
func CMAudioFormatDescriptionCreateFromBigEndianSoundDescriptionBlockBuffer(_ allocator: CFAllocator?, _ soundDescriptionBlockBuffer: CMBlockBuffer, _ soundDescriptionFlavor: CFString?, _ audioFormatDescriptionOut: UnsafeMutablePointer<CMAudioFormatDescription?>) -> OSStatus

Declaration
From
func CMAudioFormatDescriptionCreateFromBigEndianSoundDescriptionData(_ allocator: CFAllocator!, _ soundDescriptionData: UnsafePointer<UInt8>, _ soundDescriptionSize: Int, _ soundDescriptionFlavor: CFString!, _ audioFormatDescriptionOut: UnsafeMutablePointer<Unmanaged<CMAudioFormatDescription>?>) -> OSStatus
To
func CMAudioFormatDescriptionCreateFromBigEndianSoundDescriptionData(_ allocator: CFAllocator?, _ soundDescriptionData: UnsafePointer<UInt8>, _ soundDescriptionSize: Int, _ soundDescriptionFlavor: CFString?, _ audioFormatDescriptionOut: UnsafeMutablePointer<CMAudioFormatDescription?>) -> OSStatus

Declaration
From
func CMAudioFormatDescriptionCreateSummary(_ allocator: CFAllocator!, _ formatDescriptionArray: CFArray!, _ flags: UInt32, _ summaryFormatDescriptionOut: UnsafeMutablePointer<Unmanaged<CMAudioFormatDescription>?>) -> OSStatus
To
func CMAudioFormatDescriptionCreateSummary(_ allocator: CFAllocator?, _ formatDescriptionArray: CFArray, _ flags: UInt32, _ summaryFormatDescriptionOut: UnsafeMutablePointer<CMAudioFormatDescription?>) -> OSStatus

Declaration
From
func CMAudioFormatDescriptionEqual(_ desc1: CMAudioFormatDescription!, _ desc2: CMAudioFormatDescription!, _ equalityMask: CMAudioFormatDescriptionMask, _ equalityMaskOut: UnsafeMutablePointer<CMAudioFormatDescriptionMask>) -> Boolean
To
func CMAudioFormatDescriptionEqual(_ desc1: CMAudioFormatDescription, _ desc2: CMAudioFormatDescription, _ equalityMask: CMAudioFormatDescriptionMask, _ equalityMaskOut: UnsafeMutablePointer<CMAudioFormatDescriptionMask>) -> Bool

Declaration
From
func CMAudioFormatDescriptionGetChannelLayout(_ desc: CMAudioFormatDescription!, _ layoutSize: UnsafeMutablePointer<Int>) -> UnsafePointer<AudioChannelLayout>
To
func CMAudioFormatDescriptionGetChannelLayout(_ desc: CMAudioFormatDescription, _ layoutSize: UnsafeMutablePointer<Int>) -> UnsafePointer<AudioChannelLayout>

Declaration
From
func CMAudioFormatDescriptionGetFormatList(_ desc: CMAudioFormatDescription!, _ formatListSize: UnsafeMutablePointer<Int>) -> UnsafePointer<AudioFormatListItem>
To
func CMAudioFormatDescriptionGetFormatList(_ desc: CMAudioFormatDescription, _ formatListSize: UnsafeMutablePointer<Int>) -> UnsafePointer<AudioFormatListItem>

Declaration
From
func CMAudioFormatDescriptionGetMagicCookie(_ desc: CMAudioFormatDescription!, _ cookieSizeOut: UnsafeMutablePointer<Int>) -> UnsafePointer<Void>
To
func CMAudioFormatDescriptionGetMagicCookie(_ desc: CMAudioFormatDescription, _ cookieSizeOut: UnsafeMutablePointer<Int>) -> UnsafePointer<Void>

Declaration
From
func CMAudioFormatDescriptionGetMostCompatibleFormat(_ desc: CMAudioFormatDescription!) -> UnsafePointer<AudioFormatListItem>
To
func CMAudioFormatDescriptionGetMostCompatibleFormat(_ desc: CMAudioFormatDescription) -> UnsafePointer<AudioFormatListItem>

Declaration
From
func CMAudioFormatDescriptionGetRichestDecodableFormat(_ desc: CMAudioFormatDescription!) -> UnsafePointer<AudioFormatListItem>
To
func CMAudioFormatDescriptionGetRichestDecodableFormat(_ desc: CMAudioFormatDescription) -> UnsafePointer<AudioFormatListItem>

Declaration
From
func CMAudioFormatDescriptionGetStreamBasicDescription(_ desc: CMAudioFormatDescription!) -> UnsafePointer<AudioStreamBasicDescription>
To
func CMAudioFormatDescriptionGetStreamBasicDescription(_ desc: CMAudioFormatDescription) -> UnsafePointer<AudioStreamBasicDescription>

Declaration
From
func CMAudioSampleBufferCreateReadyWithPacketDescriptions(_ allocator: CFAllocator!, _ dataBuffer: CMBlockBuffer!, _ formatDescription: CMFormatDescription!, _ numSamples: CMItemCount, _ sbufPTS: CMTime, _ packetDescriptions: UnsafePointer<AudioStreamPacketDescription>, _ sBufOut: UnsafeMutablePointer<Unmanaged<CMSampleBuffer>?>) -> OSStatus
To
func CMAudioSampleBufferCreateReadyWithPacketDescriptions(_ allocator: CFAllocator?, _ dataBuffer: CMBlockBuffer?, _ formatDescription: CMFormatDescription, _ numSamples: CMItemCount, _ sbufPTS: CMTime, _ packetDescriptions: UnsafePointer<AudioStreamPacketDescription>, _ sBufOut: UnsafeMutablePointer<CMSampleBuffer?>) -> OSStatus

Declaration
From
func CMAudioSampleBufferCreateWithPacketDescriptions(_ allocator: CFAllocator!, _ dataBuffer: CMBlockBuffer!, _ dataReady: Boolean, _ makeDataReadyCallback: CMSampleBufferMakeDataReadyCallback, _ makeDataReadyRefcon: UnsafeMutablePointer<Void>, _ formatDescription: CMFormatDescription!, _ numSamples: CMItemCount, _ sbufPTS: CMTime, _ packetDescriptions: UnsafePointer<AudioStreamPacketDescription>, _ sBufOut: UnsafeMutablePointer<Unmanaged<CMSampleBuffer>?>) -> OSStatus
To
func CMAudioSampleBufferCreateWithPacketDescriptions(_ allocator: CFAllocator?, _ dataBuffer: CMBlockBuffer?, _ dataReady: Bool, _ makeDataReadyCallback: CMSampleBufferMakeDataReadyCallback?, _ makeDataReadyRefcon: UnsafeMutablePointer<Void>, _ formatDescription: CMFormatDescription, _ numSamples: CMItemCount, _ sbufPTS: CMTime, _ packetDescriptions: UnsafePointer<AudioStreamPacketDescription>, _ sBufOut: UnsafeMutablePointer<CMSampleBuffer?>) -> OSStatus

Declaration
From
func CMBlockBufferAccessDataBytes(_ theBuffer: CMBlockBuffer!, _ offset: Int, _ length: Int, _ temporaryBlock: UnsafeMutablePointer<Void>, _ returnedPointer: UnsafeMutablePointer<UnsafeMutablePointer<Int8>>) -> OSStatus
To
func CMBlockBufferAccessDataBytes(_ theBuffer: CMBlockBuffer, _ offset: Int, _ length: Int, _ temporaryBlock: UnsafeMutablePointer<Void>, _ returnedPointer: UnsafeMutablePointer<UnsafeMutablePointer<Int8>>) -> OSStatus

Declaration
From
func CMBlockBufferAppendBufferReference(_ theBuffer: CMBlockBuffer!, _ targetBBuf: CMBlockBuffer!, _ offsetToData: Int, _ dataLength: Int, _ flags: CMBlockBufferFlags) -> OSStatus
To
func CMBlockBufferAppendBufferReference(_ theBuffer: CMBlockBuffer, _ targetBBuf: CMBlockBuffer, _ offsetToData: Int, _ dataLength: Int, _ flags: CMBlockBufferFlags) -> OSStatus

Declaration
From
func CMBlockBufferAppendMemoryBlock(_ theBuffer: CMBlockBuffer!, _ memoryBlock: UnsafeMutablePointer<Void>, _ blockLength: Int, _ blockAllocator: CFAllocator!, _ customBlockSource: UnsafePointer<CMBlockBufferCustomBlockSource>, _ offsetToData: Int, _ dataLength: Int, _ flags: CMBlockBufferFlags) -> OSStatus
To
func CMBlockBufferAppendMemoryBlock(_ theBuffer: CMBlockBuffer, _ memoryBlock: UnsafeMutablePointer<Void>, _ blockLength: Int, _ blockAllocator: CFAllocator?, _ customBlockSource: UnsafePointer<CMBlockBufferCustomBlockSource>, _ offsetToData: Int, _ dataLength: Int, _ flags: CMBlockBufferFlags) -> OSStatus

Declaration
From
func CMBlockBufferAssureBlockMemory(_ theBuffer: CMBlockBuffer!) -> OSStatus
To
func CMBlockBufferAssureBlockMemory(_ theBuffer: CMBlockBuffer) -> OSStatus

Declaration
From
func CMBlockBufferCopyDataBytes(_ theSourceBuffer: CMBlockBuffer!, _ offsetToData: Int, _ dataLength: Int, _ destination: UnsafeMutablePointer<Void>) -> OSStatus
To
func CMBlockBufferCopyDataBytes(_ theSourceBuffer: CMBlockBuffer, _ offsetToData: Int, _ dataLength: Int, _ destination: UnsafeMutablePointer<Void>) -> OSStatus

Declaration
From
func CMBlockBufferCreateContiguous(_ structureAllocator: CFAllocator!, _ sourceBuffer: CMBlockBuffer!, _ blockAllocator: CFAllocator!, _ customBlockSource: UnsafePointer<CMBlockBufferCustomBlockSource>, _ offsetToData: Int, _ dataLength: Int, _ flags: CMBlockBufferFlags, _ newBBufOut: UnsafeMutablePointer<Unmanaged<CMBlockBuffer>?>) -> OSStatus
To
func CMBlockBufferCreateContiguous(_ structureAllocator: CFAllocator?, _ sourceBuffer: CMBlockBuffer, _ blockAllocator: CFAllocator?, _ customBlockSource: UnsafePointer<CMBlockBufferCustomBlockSource>, _ offsetToData: Int, _ dataLength: Int, _ flags: CMBlockBufferFlags, _ newBBufOut: UnsafeMutablePointer<CMBlockBuffer?>) -> OSStatus

Declaration
From
func CMBlockBufferCreateEmpty(_ structureAllocator: CFAllocator!, _ subBlockCapacity: UInt32, _ flags: CMBlockBufferFlags, _ newBBufOut: UnsafeMutablePointer<Unmanaged<CMBlockBuffer>?>) -> OSStatus
To
func CMBlockBufferCreateEmpty(_ structureAllocator: CFAllocator?, _ subBlockCapacity: UInt32, _ flags: CMBlockBufferFlags, _ newBBufOut: UnsafeMutablePointer<CMBlockBuffer?>) -> OSStatus

Declaration
From
func CMBlockBufferCreateWithBufferReference(_ structureAllocator: CFAllocator!, _ targetBuffer: CMBlockBuffer!, _ offsetToData: Int, _ dataLength: Int, _ flags: CMBlockBufferFlags, _ newBBufOut: UnsafeMutablePointer<Unmanaged<CMBlockBuffer>?>) -> OSStatus
To
func CMBlockBufferCreateWithBufferReference(_ structureAllocator: CFAllocator?, _ targetBuffer: CMBlockBuffer, _ offsetToData: Int, _ dataLength: Int, _ flags: CMBlockBufferFlags, _ newBBufOut: UnsafeMutablePointer<CMBlockBuffer?>) -> OSStatus

Declaration
From
func CMBlockBufferCreateWithMemoryBlock(_ structureAllocator: CFAllocator!, _ memoryBlock: UnsafeMutablePointer<Void>, _ blockLength: Int, _ blockAllocator: CFAllocator!, _ customBlockSource: UnsafePointer<CMBlockBufferCustomBlockSource>, _ offsetToData: Int, _ dataLength: Int, _ flags: CMBlockBufferFlags, _ newBBufOut: UnsafeMutablePointer<Unmanaged<CMBlockBuffer>?>) -> OSStatus
To
func CMBlockBufferCreateWithMemoryBlock(_ structureAllocator: CFAllocator?, _ memoryBlock: UnsafeMutablePointer<Void>, _ blockLength: Int, _ blockAllocator: CFAllocator?, _ customBlockSource: UnsafePointer<CMBlockBufferCustomBlockSource>, _ offsetToData: Int, _ dataLength: Int, _ flags: CMBlockBufferFlags, _ newBBufOut: UnsafeMutablePointer<CMBlockBuffer?>) -> OSStatus

Declaration
From
func CMBlockBufferFillDataBytes(_ fillByte: Int8, _ destinationBuffer: CMBlockBuffer!, _ offsetIntoDestination: Int, _ dataLength: Int) -> OSStatus
To
func CMBlockBufferFillDataBytes(_ fillByte: Int8, _ destinationBuffer: CMBlockBuffer, _ offsetIntoDestination: Int, _ dataLength: Int) -> OSStatus

Declaration
From
func CMBlockBufferGetDataLength(_ theBuffer: CMBlockBuffer!) -> Int
To
func CMBlockBufferGetDataLength(_ theBuffer: CMBlockBuffer) -> Int

Declaration
From
func CMBlockBufferGetDataPointer(_ theBuffer: CMBlockBuffer!, _ offset: Int, _ lengthAtOffset: UnsafeMutablePointer<Int>, _ totalLength: UnsafeMutablePointer<Int>, _ dataPointer: UnsafeMutablePointer<UnsafeMutablePointer<Int8>>) -> OSStatus
To
func CMBlockBufferGetDataPointer(_ theBuffer: CMBlockBuffer, _ offset: Int, _ lengthAtOffset: UnsafeMutablePointer<Int>, _ totalLength: UnsafeMutablePointer<Int>, _ dataPointer: UnsafeMutablePointer<UnsafeMutablePointer<Int8>>) -> OSStatus

Declaration
From
func CMBlockBufferIsEmpty(_ theBuffer: CMBlockBuffer!) -> Boolean
To
func CMBlockBufferIsEmpty(_ theBuffer: CMBlockBuffer) -> Bool

Declaration
From
func CMBlockBufferIsRangeContiguous(_ theBuffer: CMBlockBuffer!, _ offset: Int, _ length: Int) -> Boolean
To
func CMBlockBufferIsRangeContiguous(_ theBuffer: CMBlockBuffer, _ offset: Int, _ length: Int) -> Bool

Declaration
From
func CMBlockBufferReplaceDataBytes(_ sourceBytes: UnsafePointer<Void>, _ destinationBuffer: CMBlockBuffer!, _ offsetIntoDestination: Int, _ dataLength: Int) -> OSStatus
To
func CMBlockBufferReplaceDataBytes(_ sourceBytes: UnsafePointer<Void>, _ destinationBuffer: CMBlockBuffer, _ offsetIntoDestination: Int, _ dataLength: Int) -> OSStatus

Declaration
From
typealias CMBufferCompareCallback = CFunctionPointer<((CMBuffer!, CMBuffer!, UnsafeMutablePointer<Void>) -> CFComparisonResult)>
To
typealias CMBufferCompareCallback = (CMBuffer, CMBuffer, UnsafeMutablePointer<Void>) -> CFComparisonResult

Declaration
From
typealias CMBufferGetBooleanCallback = CFunctionPointer<((CMBuffer!, UnsafeMutablePointer<Void>) -> Boolean)>
To
typealias CMBufferGetBooleanCallback = (CMBuffer, UnsafeMutablePointer<Void>) -> DarwinBoolean

Declaration
From
typealias CMBufferGetSizeCallback = CFunctionPointer<((CMBuffer!, UnsafeMutablePointer<Void>) -> Int)>
To
typealias CMBufferGetSizeCallback = (CMBuffer, UnsafeMutablePointer<Void>) -> Int

Declaration
From
typealias CMBufferGetTimeCallback = CFunctionPointer<((CMBuffer!, UnsafeMutablePointer<Void>) -> CMTime)>
To
typealias CMBufferGetTimeCallback = (CMBuffer, UnsafeMutablePointer<Void>) -> CMTime

Declaration
From
func CMBufferQueueCallForEachBuffer(_ queue: CMBufferQueue!, _ callback: CFunctionPointer<((CMBuffer!, UnsafeMutablePointer<Void>) -> OSStatus)>, _ refcon: UnsafeMutablePointer<Void>) -> OSStatus
To
func CMBufferQueueCallForEachBuffer(_ queue: CMBufferQueue, _ callback: (CMBuffer, UnsafeMutablePointer<Void>) -> OSStatus, _ refcon: UnsafeMutablePointer<Void>) -> OSStatus

Declaration
From
func CMBufferQueueContainsEndOfData(_ queue: CMBufferQueue!) -> Boolean
To
func CMBufferQueueContainsEndOfData(_ queue: CMBufferQueue) -> Bool

Declaration
From
func CMBufferQueueCreate(_ allocator: CFAllocator!, _ capacity: CMItemCount, _ callbacks: UnsafePointer<CMBufferCallbacks>, _ queueOut: UnsafeMutablePointer<Unmanaged<CMBufferQueue>?>) -> OSStatus
To
func CMBufferQueueCreate(_ allocator: CFAllocator?, _ capacity: CMItemCount, _ callbacks: UnsafePointer<CMBufferCallbacks>, _ queueOut: UnsafeMutablePointer<CMBufferQueue?>) -> OSStatus

Declaration
From
func CMBufferQueueEnqueue(_ queue: CMBufferQueue!, _ buf: CMBuffer!) -> OSStatus
To
func CMBufferQueueEnqueue(_ queue: CMBufferQueue, _ buf: CMBuffer) -> OSStatus

Declaration
From
func CMBufferQueueGetBufferCount(_ queue: CMBufferQueue!) -> CMItemCount
To
func CMBufferQueueGetBufferCount(_ queue: CMBufferQueue) -> CMItemCount

Declaration
From
func CMBufferQueueGetDuration(_ queue: CMBufferQueue!) -> CMTime
To
func CMBufferQueueGetDuration(_ queue: CMBufferQueue) -> CMTime

Declaration
From
func CMBufferQueueGetEndPresentationTimeStamp(_ queue: CMBufferQueue!) -> CMTime
To
func CMBufferQueueGetEndPresentationTimeStamp(_ queue: CMBufferQueue) -> CMTime

Declaration
From
func CMBufferQueueGetFirstDecodeTimeStamp(_ queue: CMBufferQueue!) -> CMTime
To
func CMBufferQueueGetFirstDecodeTimeStamp(_ queue: CMBufferQueue) -> CMTime

Declaration
From
func CMBufferQueueGetFirstPresentationTimeStamp(_ queue: CMBufferQueue!) -> CMTime
To
func CMBufferQueueGetFirstPresentationTimeStamp(_ queue: CMBufferQueue) -> CMTime

Declaration
From
func CMBufferQueueGetHead(_ queue: CMBufferQueue!) -> Unmanaged<CMBuffer>!
To
func CMBufferQueueGetHead(_ queue: CMBufferQueue) -> CMBuffer?

Declaration
From
func CMBufferQueueGetMaxPresentationTimeStamp(_ queue: CMBufferQueue!) -> CMTime
To
func CMBufferQueueGetMaxPresentationTimeStamp(_ queue: CMBufferQueue) -> CMTime

Declaration
From
func CMBufferQueueGetMinDecodeTimeStamp(_ queue: CMBufferQueue!) -> CMTime
To
func CMBufferQueueGetMinDecodeTimeStamp(_ queue: CMBufferQueue) -> CMTime

Declaration
From
func CMBufferQueueGetMinPresentationTimeStamp(_ queue: CMBufferQueue!) -> CMTime
To
func CMBufferQueueGetMinPresentationTimeStamp(_ queue: CMBufferQueue) -> CMTime

Declaration
From
func CMBufferQueueGetTotalSize(_ queue: CMBufferQueue!) -> Int
To
func CMBufferQueueGetTotalSize(_ queue: CMBufferQueue) -> Int

Declaration
From
func CMBufferQueueInstallTrigger(_ queue: CMBufferQueue!, _ triggerCallback: CMBufferQueueTriggerCallback, _ triggerRefcon: UnsafeMutablePointer<Void>, _ triggerCondition: CMBufferQueueTriggerCondition, _ triggerTime: CMTime, _ triggerTokenOut: UnsafeMutablePointer<CMBufferQueueTriggerToken>) -> OSStatus
To
func CMBufferQueueInstallTrigger(_ queue: CMBufferQueue, _ triggerCallback: CMBufferQueueTriggerCallback?, _ triggerRefcon: UnsafeMutablePointer<Void>, _ triggerCondition: CMBufferQueueTriggerCondition, _ triggerTime: CMTime, _ triggerTokenOut: UnsafeMutablePointer<CMBufferQueueTriggerToken>) -> OSStatus

Declaration
From
func CMBufferQueueInstallTriggerWithIntegerThreshold(_ queue: CMBufferQueue!, _ triggerCallback: CMBufferQueueTriggerCallback, _ triggerRefcon: UnsafeMutablePointer<Void>, _ triggerCondition: CMBufferQueueTriggerCondition, _ triggerThreshold: CMItemCount, _ triggerTokenOut: UnsafeMutablePointer<CMBufferQueueTriggerToken>) -> OSStatus
To
func CMBufferQueueInstallTriggerWithIntegerThreshold(_ queue: CMBufferQueue, _ triggerCallback: CMBufferQueueTriggerCallback?, _ triggerRefcon: UnsafeMutablePointer<Void>, _ triggerCondition: CMBufferQueueTriggerCondition, _ triggerThreshold: CMItemCount, _ triggerTokenOut: UnsafeMutablePointer<CMBufferQueueTriggerToken>) -> OSStatus

Declaration
From
func CMBufferQueueIsAtEndOfData(_ queue: CMBufferQueue!) -> Boolean
To
func CMBufferQueueIsAtEndOfData(_ queue: CMBufferQueue) -> Bool

Declaration
From
func CMBufferQueueIsEmpty(_ queue: CMBufferQueue!) -> Boolean
To
func CMBufferQueueIsEmpty(_ queue: CMBufferQueue) -> Bool

Declaration
From
func CMBufferQueueMarkEndOfData(_ queue: CMBufferQueue!) -> OSStatus
To
func CMBufferQueueMarkEndOfData(_ queue: CMBufferQueue) -> OSStatus

Declaration
From
func CMBufferQueueRemoveTrigger(_ queue: CMBufferQueue!, _ triggerToken: CMBufferQueueTriggerToken) -> OSStatus
To
func CMBufferQueueRemoveTrigger(_ queue: CMBufferQueue, _ triggerToken: CMBufferQueueTriggerToken) -> OSStatus

Declaration
From
func CMBufferQueueReset(_ queue: CMBufferQueue!) -> OSStatus
To
func CMBufferQueueReset(_ queue: CMBufferQueue) -> OSStatus

Declaration
From
func CMBufferQueueResetWithCallback(_ queue: CMBufferQueue!, _ callback: CFunctionPointer<((CMBuffer!, UnsafeMutablePointer<Void>) -> Void)>, _ refcon: UnsafeMutablePointer<Void>) -> OSStatus
To
func CMBufferQueueResetWithCallback(_ queue: CMBufferQueue, _ callback: (CMBuffer, UnsafeMutablePointer<Void>) -> Void, _ refcon: UnsafeMutablePointer<Void>) -> OSStatus

Declaration
From
func CMBufferQueueSetValidationCallback(_ queue: CMBufferQueue!, _ validationCallback: CMBufferValidationCallback, _ validationRefCon: UnsafeMutablePointer<Void>) -> OSStatus
To
func CMBufferQueueSetValidationCallback(_ queue: CMBufferQueue, _ validationCallback: CMBufferValidationCallback, _ validationRefCon: UnsafeMutablePointer<Void>) -> OSStatus

Declaration
From
func CMBufferQueueTestTrigger(_ queue: CMBufferQueue!, _ triggerToken: CMBufferQueueTriggerToken) -> Boolean
To
func CMBufferQueueTestTrigger(_ queue: CMBufferQueue, _ triggerToken: CMBufferQueueTriggerToken) -> Bool

Declaration
From
typealias CMBufferQueueTriggerCallback = CFunctionPointer<((UnsafeMutablePointer<Void>, CMBufferQueueTriggerToken) -> Void)>
To
typealias CMBufferQueueTriggerCallback = (UnsafeMutablePointer<Void>, CMBufferQueueTriggerToken) -> Void

Declaration
From
typealias CMBufferValidationCallback = CFunctionPointer<((CMBufferQueue!, CMBuffer!, UnsafeMutablePointer<Void>) -> OSStatus)>
To
typealias CMBufferValidationCallback = (CMBufferQueue, CMBuffer, UnsafeMutablePointer<Void>) -> OSStatus

Declaration
From
func CMClockGetAnchorTime(_ clock: CMClock!, _ outClockTime: UnsafeMutablePointer<CMTime>, _ outReferenceClockTime: UnsafeMutablePointer<CMTime>) -> OSStatus
To
func CMClockGetAnchorTime(_ clock: CMClock, _ outClockTime: UnsafeMutablePointer<CMTime>, _ outReferenceClockTime: UnsafeMutablePointer<CMTime>) -> OSStatus

Declaration
From
func CMClockGetHostTimeClock() -> CMClock!
To
func CMClockGetHostTimeClock() -> CMClock

Declaration
From
func CMClockGetTime(_ clock: CMClock!) -> CMTime
To
func CMClockGetTime(_ clock: CMClock) -> CMTime

Declaration
From
func CMClockInvalidate(_ clock: CMClock!)
To
func CMClockInvalidate(_ clock: CMClock)

Declaration
From
func CMClockMightDrift(_ clock: CMClock!, _ otherClock: CMClock!) -> Boolean
To
func CMClockMightDrift(_ clock: CMClock, _ otherClock: CMClock) -> Bool

Declaration
From
func CMClosedCaptionFormatDescriptionCopyAsBigEndianClosedCaptionDescriptionBlockBuffer(_ allocator: CFAllocator!, _ closedCaptionFormatDescription: CMClosedCaptionFormatDescription!, _ closedCaptionDescriptionFlavor: CFString!, _ closedCaptionDescriptionBlockBufferOut: UnsafeMutablePointer<Unmanaged<CMBlockBuffer>?>) -> OSStatus
To
func CMClosedCaptionFormatDescriptionCopyAsBigEndianClosedCaptionDescriptionBlockBuffer(_ allocator: CFAllocator?, _ closedCaptionFormatDescription: CMClosedCaptionFormatDescription, _ closedCaptionDescriptionFlavor: CFString?, _ closedCaptionDescriptionBlockBufferOut: UnsafeMutablePointer<CMBlockBuffer?>) -> OSStatus

Declaration
From
func CMClosedCaptionFormatDescriptionCreateFromBigEndianClosedCaptionDescriptionBlockBuffer(_ allocator: CFAllocator!, _ closedCaptionDescriptionBlockBuffer: CMBlockBuffer!, _ closedCaptionDescriptionFlavor: CFString!, _ closedCaptionFormatDescriptionOut: UnsafeMutablePointer<Unmanaged<CMClosedCaptionFormatDescription>?>) -> OSStatus
To
func CMClosedCaptionFormatDescriptionCreateFromBigEndianClosedCaptionDescriptionBlockBuffer(_ allocator: CFAllocator?, _ closedCaptionDescriptionBlockBuffer: CMBlockBuffer, _ closedCaptionDescriptionFlavor: CFString?, _ closedCaptionFormatDescriptionOut: UnsafeMutablePointer<CMClosedCaptionFormatDescription?>) -> OSStatus

Declaration
From
func CMClosedCaptionFormatDescriptionCreateFromBigEndianClosedCaptionDescriptionData(_ allocator: CFAllocator!, _ closedCaptionDescriptionData: UnsafePointer<UInt8>, _ closedCaptionDescriptionSize: Int, _ closedCaptionDescriptionFlavor: CFString!, _ closedCaptionFormatDescriptionOut: UnsafeMutablePointer<Unmanaged<CMClosedCaptionFormatDescription>?>) -> OSStatus
To
func CMClosedCaptionFormatDescriptionCreateFromBigEndianClosedCaptionDescriptionData(_ allocator: CFAllocator?, _ closedCaptionDescriptionData: UnsafePointer<UInt8>, _ closedCaptionDescriptionSize: Int, _ closedCaptionDescriptionFlavor: CFString?, _ closedCaptionFormatDescriptionOut: UnsafeMutablePointer<CMClosedCaptionFormatDescription?>) -> OSStatus

Declaration
From
func CMCopyDictionaryOfAttachments(_ allocator: CFAllocator!, _ target: CMAttachmentBearer!, _ attachmentMode: CMAttachmentMode) -> Unmanaged<CFDictionary>!
To
func CMCopyDictionaryOfAttachments(_ allocator: CFAllocator?, _ target: CMAttachmentBearer, _ attachmentMode: CMAttachmentMode) -> CFDictionary?

Declaration
From
func CMDoesBigEndianSoundDescriptionRequireLegacyCBRSampleTableLayout(_ soundDescriptionBlockBuffer: CMBlockBuffer!, _ soundDescriptionFlavor: CFString!) -> Boolean
To
func CMDoesBigEndianSoundDescriptionRequireLegacyCBRSampleTableLayout(_ soundDescriptionBlockBuffer: CMBlockBuffer, _ soundDescriptionFlavor: CFString?) -> Bool

Declaration
From
func CMFormatDescriptionCreate(_ allocator: CFAllocator!, _ mediaType: CMMediaType, _ mediaSubtype: FourCharCode, _ extensions: CFDictionary!, _ descOut: UnsafeMutablePointer<Unmanaged<CMFormatDescription>?>) -> OSStatus
To
func CMFormatDescriptionCreate(_ allocator: CFAllocator?, _ mediaType: CMMediaType, _ mediaSubtype: FourCharCode, _ extensions: CFDictionary?, _ descOut: UnsafeMutablePointer<CMFormatDescription?>) -> OSStatus

Declaration
From
func CMFormatDescriptionEqual(_ desc1: CMFormatDescription!, _ desc2: CMFormatDescription!) -> Boolean
To
func CMFormatDescriptionEqual(_ desc1: CMFormatDescription?, _ desc2: CMFormatDescription?) -> Bool

Declaration
From
func CMFormatDescriptionEqualIgnoringExtensionKeys(_ desc1: CMFormatDescription!, _ desc2: CMFormatDescription!, _ formatDescriptionExtensionKeysToIgnore: AnyObject!, _ sampleDescriptionExtensionAtomKeysToIgnore: AnyObject!) -> Boolean
To
func CMFormatDescriptionEqualIgnoringExtensionKeys(_ desc1: CMFormatDescription?, _ desc2: CMFormatDescription?, _ formatDescriptionExtensionKeysToIgnore: AnyObject?, _ sampleDescriptionExtensionAtomKeysToIgnore: AnyObject?) -> Bool

Declaration
From
func CMFormatDescriptionGetExtension(_ desc: CMFormatDescription!, _ extensionKey: CFString!) -> Unmanaged<CFPropertyList>!
To
func CMFormatDescriptionGetExtension(_ desc: CMFormatDescription, _ extensionKey: CFString) -> CFPropertyList?

Declaration
From
func CMFormatDescriptionGetExtensions(_ desc: CMFormatDescription!) -> Unmanaged<CFDictionary>!
To
func CMFormatDescriptionGetExtensions(_ desc: CMFormatDescription) -> CFDictionary?

Declaration
From
func CMFormatDescriptionGetMediaSubType(_ desc: CMFormatDescription!) -> FourCharCode
To
func CMFormatDescriptionGetMediaSubType(_ desc: CMFormatDescription) -> FourCharCode

Declaration
From
func CMFormatDescriptionGetMediaType(_ desc: CMFormatDescription!) -> CMMediaType
To
func CMFormatDescriptionGetMediaType(_ desc: CMFormatDescription) -> CMMediaType

Declaration
From
func CMGetAttachment(_ target: CMAttachmentBearer!, _ key: CFString!, _ attachmentModeOut: UnsafeMutablePointer<CMAttachmentMode>) -> Unmanaged<AnyObject>!
To
func CMGetAttachment(_ target: CMAttachmentBearer, _ key: CFString, _ attachmentModeOut: UnsafeMutablePointer<CMAttachmentMode>) -> AnyObject?

Declaration
From
func CMMemoryPoolCreate(_ options: CFDictionary!) -> Unmanaged<CMMemoryPool>!
To
func CMMemoryPoolCreate(_ options: CFDictionary?) -> CMMemoryPool

Declaration
From
func CMMemoryPoolFlush(_ pool: CMMemoryPool!)
To
func CMMemoryPoolFlush(_ pool: CMMemoryPool)

Declaration
From
func CMMemoryPoolGetAllocator(_ pool: CMMemoryPool!) -> Unmanaged<CFAllocator>!
To
func CMMemoryPoolGetAllocator(_ pool: CMMemoryPool) -> CFAllocator

Declaration
From
func CMMemoryPoolInvalidate(_ pool: CMMemoryPool!)
To
func CMMemoryPoolInvalidate(_ pool: CMMemoryPool)

Declaration
From
func CMMetadataCreateIdentifierForKeyAndKeySpace(_ allocator: CFAllocator!, _ key: AnyObject!, _ keySpace: CFString!, _ identifierOut: UnsafeMutablePointer<Unmanaged<CFString>?>) -> OSStatus
To
func CMMetadataCreateIdentifierForKeyAndKeySpace(_ allocator: CFAllocator?, _ key: AnyObject, _ keySpace: CFString, _ identifierOut: UnsafeMutablePointer<CFString?>) -> OSStatus

Declaration
From
func CMMetadataCreateKeyFromIdentifier(_ allocator: CFAllocator!, _ identifier: CFString!, _ keyOut: UnsafeMutablePointer<Unmanaged<AnyObject>?>) -> OSStatus
To
func CMMetadataCreateKeyFromIdentifier(_ allocator: CFAllocator?, _ identifier: CFString, _ keyOut: UnsafeMutablePointer<AnyObject?>) -> OSStatus

Declaration
From
func CMMetadataCreateKeyFromIdentifierAsCFData(_ allocator: CFAllocator!, _ identifier: CFString!, _ keyOut: UnsafeMutablePointer<Unmanaged<CFData>?>) -> OSStatus
To
func CMMetadataCreateKeyFromIdentifierAsCFData(_ allocator: CFAllocator?, _ identifier: CFString, _ keyOut: UnsafeMutablePointer<CFData?>) -> OSStatus

Declaration
From
func CMMetadataCreateKeySpaceFromIdentifier(_ allocator: CFAllocator!, _ identifier: CFString!, _ keySpaceOut: UnsafeMutablePointer<Unmanaged<CFString>?>) -> OSStatus
To
func CMMetadataCreateKeySpaceFromIdentifier(_ allocator: CFAllocator?, _ identifier: CFString, _ keySpaceOut: UnsafeMutablePointer<CFString?>) -> OSStatus

Declaration
From
func CMMetadataDataTypeRegistryDataTypeConformsToDataType(_ dataType: CFString!, _ conformsToDataType: CFString!) -> Boolean
To
func CMMetadataDataTypeRegistryDataTypeConformsToDataType(_ dataType: CFString, _ conformsToDataType: CFString) -> Bool

Declaration
From
func CMMetadataDataTypeRegistryDataTypeIsBaseDataType(_ dataType: CFString!) -> Boolean
To
func CMMetadataDataTypeRegistryDataTypeIsBaseDataType(_ dataType: CFString) -> Bool

Declaration
From
func CMMetadataDataTypeRegistryDataTypeIsRegistered(_ dataType: CFString!) -> Boolean
To
func CMMetadataDataTypeRegistryDataTypeIsRegistered(_ dataType: CFString) -> Bool

Declaration
From
func CMMetadataDataTypeRegistryGetBaseDataTypeForConformingDataType(_ dataType: CFString!) -> Unmanaged<CFString>!
To
func CMMetadataDataTypeRegistryGetBaseDataTypeForConformingDataType(_ dataType: CFString) -> CFString

Declaration
From
func CMMetadataDataTypeRegistryGetBaseDataTypes() -> Unmanaged<CFArray>!
To
func CMMetadataDataTypeRegistryGetBaseDataTypes() -> CFArray?

Declaration
From
func CMMetadataDataTypeRegistryGetConformingDataTypes(_ dataType: CFString!) -> Unmanaged<CFArray>!
To
func CMMetadataDataTypeRegistryGetConformingDataTypes(_ dataType: CFString) -> CFArray

Declaration
From
func CMMetadataDataTypeRegistryGetDataTypeDescription(_ dataType: CFString!) -> Unmanaged<CFString>!
To
func CMMetadataDataTypeRegistryGetDataTypeDescription(_ dataType: CFString) -> CFString

Declaration
From
func CMMetadataDataTypeRegistryRegisterDataType(_ dataType: CFString!, _ description: CFString!, _ conformingDataTypes: CFArray!) -> OSStatus
To
func CMMetadataDataTypeRegistryRegisterDataType(_ dataType: CFString, _ description: CFString, _ conformingDataTypes: CFArray) -> OSStatus

Declaration
From
func CMMetadataFormatDescriptionCopyAsBigEndianMetadataDescriptionBlockBuffer(_ allocator: CFAllocator!, _ metadataFormatDescription: CMMetadataFormatDescription!, _ metadataDescriptionFlavor: CFString!, _ metadataDescriptionBlockBufferOut: UnsafeMutablePointer<Unmanaged<CMBlockBuffer>?>) -> OSStatus
To
func CMMetadataFormatDescriptionCopyAsBigEndianMetadataDescriptionBlockBuffer(_ allocator: CFAllocator?, _ metadataFormatDescription: CMMetadataFormatDescription, _ metadataDescriptionFlavor: CFString?, _ metadataDescriptionBlockBufferOut: UnsafeMutablePointer<CMBlockBuffer?>) -> OSStatus

Declaration
From
func CMMetadataFormatDescriptionCreateByMergingMetadataFormatDescriptions(_ allocator: CFAllocator!, _ srcDesc1: CMMetadataFormatDescription!, _ srcDesc2: CMMetadataFormatDescription!, _ outDesc: UnsafeMutablePointer<Unmanaged<CMMetadataFormatDescription>?>) -> OSStatus
To
func CMMetadataFormatDescriptionCreateByMergingMetadataFormatDescriptions(_ allocator: CFAllocator?, _ srcDesc1: CMMetadataFormatDescription, _ srcDesc2: CMMetadataFormatDescription, _ outDesc: UnsafeMutablePointer<CMMetadataFormatDescription?>) -> OSStatus

Declaration
From
func CMMetadataFormatDescriptionCreateFromBigEndianMetadataDescriptionBlockBuffer(_ allocator: CFAllocator!, _ metadataDescriptionBlockBuffer: CMBlockBuffer!, _ metadataDescriptionFlavor: CFString!, _ metadataFormatDescriptionOut: UnsafeMutablePointer<Unmanaged<CMMetadataFormatDescription>?>) -> OSStatus
To
func CMMetadataFormatDescriptionCreateFromBigEndianMetadataDescriptionBlockBuffer(_ allocator: CFAllocator?, _ metadataDescriptionBlockBuffer: CMBlockBuffer, _ metadataDescriptionFlavor: CFString?, _ metadataFormatDescriptionOut: UnsafeMutablePointer<CMMetadataFormatDescription?>) -> OSStatus

Declaration
From
func CMMetadataFormatDescriptionCreateFromBigEndianMetadataDescriptionData(_ allocator: CFAllocator!, _ metadataDescriptionData: UnsafePointer<UInt8>, _ metadataDescriptionSize: Int, _ metadataDescriptionFlavor: CFString!, _ metadataFormatDescriptionOut: UnsafeMutablePointer<Unmanaged<CMMetadataFormatDescription>?>) -> OSStatus
To
func CMMetadataFormatDescriptionCreateFromBigEndianMetadataDescriptionData(_ allocator: CFAllocator?, _ metadataDescriptionData: UnsafePointer<UInt8>, _ metadataDescriptionSize: Int, _ metadataDescriptionFlavor: CFString?, _ metadataFormatDescriptionOut: UnsafeMutablePointer<CMMetadataFormatDescription?>) -> OSStatus

Declaration
From
func CMMetadataFormatDescriptionCreateWithKeys(_ allocator: CFAllocator!, _ metadataType: CMMetadataFormatType, _ keys: CFArray!, _ outDesc: UnsafeMutablePointer<Unmanaged<CMMetadataFormatDescription>?>) -> OSStatus
To
func CMMetadataFormatDescriptionCreateWithKeys(_ allocator: CFAllocator?, _ metadataType: CMMetadataFormatType, _ keys: CFArray?, _ outDesc: UnsafeMutablePointer<CMMetadataFormatDescription?>) -> OSStatus

Declaration
From
func CMMetadataFormatDescriptionCreateWithMetadataFormatDescriptionAndMetadataSpecifications(_ allocator: CFAllocator!, _ srcDesc: CMMetadataFormatDescription!, _ metadataSpecifications: CFArray!, _ outDesc: UnsafeMutablePointer<Unmanaged<CMMetadataFormatDescription>?>) -> OSStatus
To
func CMMetadataFormatDescriptionCreateWithMetadataFormatDescriptionAndMetadataSpecifications(_ allocator: CFAllocator?, _ srcDesc: CMMetadataFormatDescription, _ metadataSpecifications: CFArray, _ outDesc: UnsafeMutablePointer<CMMetadataFormatDescription?>) -> OSStatus

Declaration
From
func CMMetadataFormatDescriptionCreateWithMetadataSpecifications(_ allocator: CFAllocator!, _ metadataType: CMMetadataFormatType, _ metadataSpecifications: CFArray!, _ outDesc: UnsafeMutablePointer<Unmanaged<CMMetadataFormatDescription>?>) -> OSStatus
To
func CMMetadataFormatDescriptionCreateWithMetadataSpecifications(_ allocator: CFAllocator?, _ metadataType: CMMetadataFormatType, _ metadataSpecifications: CFArray, _ outDesc: UnsafeMutablePointer<CMMetadataFormatDescription?>) -> OSStatus

Declaration
From
func CMMetadataFormatDescriptionGetIdentifiers(_ desc: CMMetadataFormatDescription!) -> Unmanaged<CFArray>!
To
func CMMetadataFormatDescriptionGetIdentifiers(_ desc: CMMetadataFormatDescription) -> CFArray?

Declaration
From
func CMMetadataFormatDescriptionGetKeyWithLocalID(_ desc: CMMetadataFormatDescription!, _ localKeyID: OSType) -> Unmanaged<CFDictionary>!
To
func CMMetadataFormatDescriptionGetKeyWithLocalID(_ desc: CMMetadataFormatDescription, _ localKeyID: OSType) -> CFDictionary?

Declaration
From
func CMMuxedFormatDescriptionCreate(_ allocator: CFAllocator!, _ muxType: CMMuxedStreamType, _ extensions: CFDictionary!, _ outDesc: UnsafeMutablePointer<Unmanaged<CMMuxedFormatDescription>?>) -> OSStatus
To
func CMMuxedFormatDescriptionCreate(_ allocator: CFAllocator?, _ muxType: CMMuxedStreamType, _ extensions: CFDictionary?, _ outDesc: UnsafeMutablePointer<CMMuxedFormatDescription?>) -> OSStatus

Declaration
From
func CMPropagateAttachments(_ source: CMAttachmentBearer!, _ destination: CMAttachmentBearer!)
To
func CMPropagateAttachments(_ source: CMAttachmentBearer, _ destination: CMAttachmentBearer)

Declaration
From
func CMRemoveAllAttachments(_ target: CMAttachmentBearer!)
To
func CMRemoveAllAttachments(_ target: CMAttachmentBearer)

Declaration
From
func CMRemoveAttachment(_ target: CMAttachmentBearer!, _ key: CFString!)
To
func CMRemoveAttachment(_ target: CMAttachmentBearer, _ key: CFString)

Declaration
From
func CMSampleBufferCallBlockForEachSample(_ sbuf: CMSampleBuffer!, _ handler: ((CMSampleBuffer!, CMItemCount) -> OSStatus)!) -> OSStatus
To
func CMSampleBufferCallBlockForEachSample(_ sbuf: CMSampleBuffer, _ handler: (CMSampleBuffer, CMItemCount) -> OSStatus) -> OSStatus

Declaration
From
func CMSampleBufferCallForEachSample(_ sbuf: CMSampleBuffer!, _ callback: CFunctionPointer<((CMSampleBuffer!, CMItemCount, UnsafeMutablePointer<Void>) -> OSStatus)>, _ refcon: UnsafeMutablePointer<Void>) -> OSStatus
To
func CMSampleBufferCallForEachSample(_ sbuf: CMSampleBuffer, _ callback: (CMSampleBuffer, CMItemCount, UnsafeMutablePointer<Void>) -> OSStatus, _ refcon: UnsafeMutablePointer<Void>) -> OSStatus

Declaration
From
func CMSampleBufferCopyPCMDataIntoAudioBufferList(_ sbuf: CMSampleBuffer!, _ frameOffset: Int32, _ numFrames: Int32, _ bufferList: UnsafeMutablePointer<AudioBufferList>) -> OSStatus
To
func CMSampleBufferCopyPCMDataIntoAudioBufferList(_ sbuf: CMSampleBuffer, _ frameOffset: Int32, _ numFrames: Int32, _ bufferList: UnsafeMutablePointer<AudioBufferList>) -> OSStatus

Declaration
From
func CMSampleBufferCopySampleBufferForRange(_ allocator: CFAllocator!, _ sbuf: CMSampleBuffer!, _ sampleRange: CFRange, _ sBufOut: UnsafeMutablePointer<Unmanaged<CMSampleBuffer>?>) -> OSStatus
To
func CMSampleBufferCopySampleBufferForRange(_ allocator: CFAllocator?, _ sbuf: CMSampleBuffer, _ sampleRange: CFRange, _ sBufOut: UnsafeMutablePointer<CMSampleBuffer?>) -> OSStatus

Declaration
From
func CMSampleBufferCreate(_ allocator: CFAllocator!, _ dataBuffer: CMBlockBuffer!, _ dataReady: Boolean, _ makeDataReadyCallback: CMSampleBufferMakeDataReadyCallback, _ makeDataReadyRefcon: UnsafeMutablePointer<Void>, _ formatDescription: CMFormatDescription!, _ numSamples: CMItemCount, _ numSampleTimingEntries: CMItemCount, _ sampleTimingArray: UnsafePointer<CMSampleTimingInfo>, _ numSampleSizeEntries: CMItemCount, _ sampleSizeArray: UnsafePointer<Int>, _ sBufOut: UnsafeMutablePointer<Unmanaged<CMSampleBuffer>?>) -> OSStatus
To
func CMSampleBufferCreate(_ allocator: CFAllocator?, _ dataBuffer: CMBlockBuffer?, _ dataReady: Bool, _ makeDataReadyCallback: CMSampleBufferMakeDataReadyCallback?, _ makeDataReadyRefcon: UnsafeMutablePointer<Void>, _ formatDescription: CMFormatDescription?, _ numSamples: CMItemCount, _ numSampleTimingEntries: CMItemCount, _ sampleTimingArray: UnsafePointer<CMSampleTimingInfo>, _ numSampleSizeEntries: CMItemCount, _ sampleSizeArray: UnsafePointer<Int>, _ sBufOut: UnsafeMutablePointer<CMSampleBuffer?>) -> OSStatus

Declaration
From
func CMSampleBufferCreateCopy(_ allocator: CFAllocator!, _ sbuf: CMSampleBuffer!, _ sbufCopyOut: UnsafeMutablePointer<Unmanaged<CMSampleBuffer>?>) -> OSStatus
To
func CMSampleBufferCreateCopy(_ allocator: CFAllocator?, _ sbuf: CMSampleBuffer, _ sbufCopyOut: UnsafeMutablePointer<CMSampleBuffer?>) -> OSStatus

Declaration
From
func CMSampleBufferCreateCopyWithNewTiming(_ allocator: CFAllocator!, _ originalSBuf: CMSampleBuffer!, _ numSampleTimingEntries: CMItemCount, _ sampleTimingArray: UnsafePointer<CMSampleTimingInfo>, _ sBufCopyOut: UnsafeMutablePointer<Unmanaged<CMSampleBuffer>?>) -> OSStatus
To
func CMSampleBufferCreateCopyWithNewTiming(_ allocator: CFAllocator?, _ originalSBuf: CMSampleBuffer, _ numSampleTimingEntries: CMItemCount, _ sampleTimingArray: UnsafePointer<CMSampleTimingInfo>, _ sBufCopyOut: UnsafeMutablePointer<CMSampleBuffer?>) -> OSStatus

Declaration
From
func CMSampleBufferCreateForImageBuffer(_ allocator: CFAllocator!, _ imageBuffer: CVImageBuffer!, _ dataReady: Boolean, _ makeDataReadyCallback: CMSampleBufferMakeDataReadyCallback, _ makeDataReadyRefcon: UnsafeMutablePointer<Void>, _ formatDescription: CMVideoFormatDescription!, _ sampleTiming: UnsafePointer<CMSampleTimingInfo>, _ sBufOut: UnsafeMutablePointer<Unmanaged<CMSampleBuffer>?>) -> OSStatus
To
func CMSampleBufferCreateForImageBuffer(_ allocator: CFAllocator?, _ imageBuffer: CVImageBuffer, _ dataReady: Bool, _ makeDataReadyCallback: CMSampleBufferMakeDataReadyCallback?, _ makeDataReadyRefcon: UnsafeMutablePointer<Void>, _ formatDescription: CMVideoFormatDescription, _ sampleTiming: UnsafePointer<CMSampleTimingInfo>, _ sBufOut: UnsafeMutablePointer<CMSampleBuffer?>) -> OSStatus

Declaration
From
func CMSampleBufferCreateReady(_ allocator: CFAllocator!, _ dataBuffer: CMBlockBuffer!, _ formatDescription: CMFormatDescription!, _ numSamples: CMItemCount, _ numSampleTimingEntries: CMItemCount, _ sampleTimingArray: UnsafePointer<CMSampleTimingInfo>, _ numSampleSizeEntries: CMItemCount, _ sampleSizeArray: UnsafePointer<Int>, _ sBufOut: UnsafeMutablePointer<Unmanaged<CMSampleBuffer>?>) -> OSStatus
To
func CMSampleBufferCreateReady(_ allocator: CFAllocator?, _ dataBuffer: CMBlockBuffer?, _ formatDescription: CMFormatDescription?, _ numSamples: CMItemCount, _ numSampleTimingEntries: CMItemCount, _ sampleTimingArray: UnsafePointer<CMSampleTimingInfo>, _ numSampleSizeEntries: CMItemCount, _ sampleSizeArray: UnsafePointer<Int>, _ sBufOut: UnsafeMutablePointer<CMSampleBuffer?>) -> OSStatus

Declaration
From
func CMSampleBufferCreateReadyWithImageBuffer(_ allocator: CFAllocator!, _ imageBuffer: CVImageBuffer!, _ formatDescription: CMVideoFormatDescription!, _ sampleTiming: UnsafePointer<CMSampleTimingInfo>, _ sBufOut: UnsafeMutablePointer<Unmanaged<CMSampleBuffer>?>) -> OSStatus
To
func CMSampleBufferCreateReadyWithImageBuffer(_ allocator: CFAllocator?, _ imageBuffer: CVImageBuffer, _ formatDescription: CMVideoFormatDescription, _ sampleTiming: UnsafePointer<CMSampleTimingInfo>, _ sBufOut: UnsafeMutablePointer<CMSampleBuffer?>) -> OSStatus

Declaration
From
func CMSampleBufferDataIsReady(_ sbuf: CMSampleBuffer!) -> Boolean
To
func CMSampleBufferDataIsReady(_ sbuf: CMSampleBuffer) -> Bool

Declaration
From
func CMSampleBufferGetAudioBufferListWithRetainedBlockBuffer(_ sbuf: CMSampleBuffer!, _ bufferListSizeNeededOut: UnsafeMutablePointer<Int>, _ bufferListOut: UnsafeMutablePointer<AudioBufferList>, _ bufferListSize: Int, _ bbufStructAllocator: CFAllocator!, _ bbufMemoryAllocator: CFAllocator!, _ flags: UInt32, _ blockBufferOut: UnsafeMutablePointer<Unmanaged<CMBlockBuffer>?>) -> OSStatus
To
func CMSampleBufferGetAudioBufferListWithRetainedBlockBuffer(_ sbuf: CMSampleBuffer, _ bufferListSizeNeededOut: UnsafeMutablePointer<Int>, _ bufferListOut: UnsafeMutablePointer<AudioBufferList>, _ bufferListSize: Int, _ bbufStructAllocator: CFAllocator?, _ bbufMemoryAllocator: CFAllocator?, _ flags: UInt32, _ blockBufferOut: UnsafeMutablePointer<CMBlockBuffer?>) -> OSStatus

Declaration
From
func CMSampleBufferGetAudioStreamPacketDescriptions(_ sbuf: CMSampleBuffer!, _ packetDescriptionsSize: Int, _ packetDescriptionsOut: UnsafeMutablePointer<AudioStreamPacketDescription>, _ packetDescriptionsSizeNeededOut: UnsafeMutablePointer<Int>) -> OSStatus
To
func CMSampleBufferGetAudioStreamPacketDescriptions(_ sbuf: CMSampleBuffer, _ packetDescriptionsSize: Int, _ packetDescriptionsOut: UnsafeMutablePointer<AudioStreamPacketDescription>, _ packetDescriptionsSizeNeededOut: UnsafeMutablePointer<Int>) -> OSStatus

Declaration
From
func CMSampleBufferGetAudioStreamPacketDescriptionsPtr(_ sbuf: CMSampleBuffer!, _ packetDescriptionsPtrOut: UnsafeMutablePointer<UnsafePointer<AudioStreamPacketDescription>>, _ packetDescriptionsSizeOut: UnsafeMutablePointer<Int>) -> OSStatus
To
func CMSampleBufferGetAudioStreamPacketDescriptionsPtr(_ sbuf: CMSampleBuffer, _ packetDescriptionsPtrOut: UnsafeMutablePointer<UnsafePointer<AudioStreamPacketDescription>>, _ packetDescriptionsSizeOut: UnsafeMutablePointer<Int>) -> OSStatus

Declaration
From
func CMSampleBufferGetDataBuffer(_ sbuf: CMSampleBuffer!) -> CMBlockBuffer!
To
func CMSampleBufferGetDataBuffer(_ sbuf: CMSampleBuffer) -> CMBlockBuffer?

Declaration
From
func CMSampleBufferGetDecodeTimeStamp(_ sbuf: CMSampleBuffer!) -> CMTime
To
func CMSampleBufferGetDecodeTimeStamp(_ sbuf: CMSampleBuffer) -> CMTime

Declaration
From
func CMSampleBufferGetDuration(_ sbuf: CMSampleBuffer!) -> CMTime
To
func CMSampleBufferGetDuration(_ sbuf: CMSampleBuffer) -> CMTime

Declaration
From
func CMSampleBufferGetFormatDescription(_ sbuf: CMSampleBuffer!) -> CMFormatDescription!
To
func CMSampleBufferGetFormatDescription(_ sbuf: CMSampleBuffer) -> CMFormatDescription?

Declaration
From
func CMSampleBufferGetImageBuffer(_ sbuf: CMSampleBuffer!) -> CVImageBuffer!
To
func CMSampleBufferGetImageBuffer(_ sbuf: CMSampleBuffer) -> CVImageBuffer?

Declaration
From
func CMSampleBufferGetNumSamples(_ sbuf: CMSampleBuffer!) -> CMItemCount
To
func CMSampleBufferGetNumSamples(_ sbuf: CMSampleBuffer) -> CMItemCount

Declaration
From
func CMSampleBufferGetOutputDecodeTimeStamp(_ sbuf: CMSampleBuffer!) -> CMTime
To
func CMSampleBufferGetOutputDecodeTimeStamp(_ sbuf: CMSampleBuffer) -> CMTime

Declaration
From
func CMSampleBufferGetOutputDuration(_ sbuf: CMSampleBuffer!) -> CMTime
To
func CMSampleBufferGetOutputDuration(_ sbuf: CMSampleBuffer) -> CMTime

Declaration
From
func CMSampleBufferGetOutputPresentationTimeStamp(_ sbuf: CMSampleBuffer!) -> CMTime
To
func CMSampleBufferGetOutputPresentationTimeStamp(_ sbuf: CMSampleBuffer) -> CMTime

Declaration
From
func CMSampleBufferGetOutputSampleTimingInfoArray(_ sbuf: CMSampleBuffer!, _ timingArrayEntries: CMItemCount, _ timingArrayOut: UnsafeMutablePointer<CMSampleTimingInfo>, _ timingArrayEntriesNeededOut: UnsafeMutablePointer<CMItemCount>) -> OSStatus
To
func CMSampleBufferGetOutputSampleTimingInfoArray(_ sbuf: CMSampleBuffer, _ timingArrayEntries: CMItemCount, _ timingArrayOut: UnsafeMutablePointer<CMSampleTimingInfo>, _ timingArrayEntriesNeededOut: UnsafeMutablePointer<CMItemCount>) -> OSStatus

Declaration
From
func CMSampleBufferGetPresentationTimeStamp(_ sbuf: CMSampleBuffer!) -> CMTime
To
func CMSampleBufferGetPresentationTimeStamp(_ sbuf: CMSampleBuffer) -> CMTime

Declaration
From
func CMSampleBufferGetSampleAttachmentsArray(_ sbuf: CMSampleBuffer!, _ createIfNecessary: Boolean) -> CFArray!
To
func CMSampleBufferGetSampleAttachmentsArray(_ sbuf: CMSampleBuffer, _ createIfNecessary: Bool) -> CFArray?

Declaration
From
func CMSampleBufferGetSampleSize(_ sbuf: CMSampleBuffer!, _ sampleIndex: CMItemIndex) -> Int
To
func CMSampleBufferGetSampleSize(_ sbuf: CMSampleBuffer, _ sampleIndex: CMItemIndex) -> Int

Declaration
From
func CMSampleBufferGetSampleSizeArray(_ sbuf: CMSampleBuffer!, _ sizeArrayEntries: CMItemCount, _ sizeArrayOut: UnsafeMutablePointer<Int>, _ sizeArrayEntriesNeededOut: UnsafeMutablePointer<CMItemCount>) -> OSStatus
To
func CMSampleBufferGetSampleSizeArray(_ sbuf: CMSampleBuffer, _ sizeArrayEntries: CMItemCount, _ sizeArrayOut: UnsafeMutablePointer<Int>, _ sizeArrayEntriesNeededOut: UnsafeMutablePointer<CMItemCount>) -> OSStatus

Declaration
From
func CMSampleBufferGetSampleTimingInfo(_ sbuf: CMSampleBuffer!, _ sampleIndex: CMItemIndex, _ timingInfoOut: UnsafeMutablePointer<CMSampleTimingInfo>) -> OSStatus
To
func CMSampleBufferGetSampleTimingInfo(_ sbuf: CMSampleBuffer, _ sampleIndex: CMItemIndex, _ timingInfoOut: UnsafeMutablePointer<CMSampleTimingInfo>) -> OSStatus

Declaration
From
func CMSampleBufferGetSampleTimingInfoArray(_ sbuf: CMSampleBuffer!, _ timingArrayEntries: CMItemCount, _ timingArrayOut: UnsafeMutablePointer<CMSampleTimingInfo>, _ timingArrayEntriesNeededOut: UnsafeMutablePointer<CMItemCount>) -> OSStatus
To
func CMSampleBufferGetSampleTimingInfoArray(_ sbuf: CMSampleBuffer, _ timingArrayEntries: CMItemCount, _ timingArrayOut: UnsafeMutablePointer<CMSampleTimingInfo>, _ timingArrayEntriesNeededOut: UnsafeMutablePointer<CMItemCount>) -> OSStatus

Declaration
From
func CMSampleBufferGetTotalSampleSize(_ sbuf: CMSampleBuffer!) -> Int
To
func CMSampleBufferGetTotalSampleSize(_ sbuf: CMSampleBuffer) -> Int

Declaration
From
func CMSampleBufferHasDataFailed(_ sbuf: CMSampleBuffer!, _ statusOut: UnsafeMutablePointer<OSStatus>) -> Boolean
To
func CMSampleBufferHasDataFailed(_ sbuf: CMSampleBuffer, _ statusOut: UnsafeMutablePointer<OSStatus>) -> Bool

Declaration
From
func CMSampleBufferInvalidate(_ sbuf: CMSampleBuffer!) -> OSStatus
To
func CMSampleBufferInvalidate(_ sbuf: CMSampleBuffer) -> OSStatus

Declaration
From
typealias CMSampleBufferInvalidateCallback = CFunctionPointer<((CMSampleBuffer!, UInt64) -> Void)>
To
typealias CMSampleBufferInvalidateCallback = (CMSampleBuffer, UInt64) -> Void

Declaration
From
typealias CMSampleBufferInvalidateHandler = (CMSampleBuffer!) -> Void
To
typealias CMSampleBufferInvalidateHandler = (CMSampleBuffer) -> Void

Declaration
From
func CMSampleBufferIsValid(_ sbuf: CMSampleBuffer!) -> Boolean
To
func CMSampleBufferIsValid(_ sbuf: CMSampleBuffer) -> Bool

Declaration
From
func CMSampleBufferMakeDataReady(_ sbuf: CMSampleBuffer!) -> OSStatus
To
func CMSampleBufferMakeDataReady(_ sbuf: CMSampleBuffer) -> OSStatus

Declaration
From
typealias CMSampleBufferMakeDataReadyCallback = CFunctionPointer<((CMSampleBuffer!, UnsafeMutablePointer<Void>) -> OSStatus)>
To
typealias CMSampleBufferMakeDataReadyCallback = (CMSampleBuffer, UnsafeMutablePointer<Void>) -> OSStatus

Declaration
From
func CMSampleBufferSetDataBuffer(_ sbuf: CMSampleBuffer!, _ dataBuffer: CMBlockBuffer!) -> OSStatus
To
func CMSampleBufferSetDataBuffer(_ sbuf: CMSampleBuffer, _ dataBuffer: CMBlockBuffer) -> OSStatus

Declaration
From
func CMSampleBufferSetDataBufferFromAudioBufferList(_ sbuf: CMSampleBuffer!, _ bbufStructAllocator: CFAllocator!, _ bbufMemoryAllocator: CFAllocator!, _ flags: UInt32, _ bufferList: UnsafePointer<AudioBufferList>) -> OSStatus
To
func CMSampleBufferSetDataBufferFromAudioBufferList(_ sbuf: CMSampleBuffer, _ bbufStructAllocator: CFAllocator?, _ bbufMemoryAllocator: CFAllocator?, _ flags: UInt32, _ bufferList: UnsafePointer<AudioBufferList>) -> OSStatus

Declaration
From
func CMSampleBufferSetDataFailed(_ sbuf: CMSampleBuffer!, _ status: OSStatus) -> OSStatus
To
func CMSampleBufferSetDataFailed(_ sbuf: CMSampleBuffer, _ status: OSStatus) -> OSStatus

Declaration
From
func CMSampleBufferSetDataReady(_ sbuf: CMSampleBuffer!) -> OSStatus
To
func CMSampleBufferSetDataReady(_ sbuf: CMSampleBuffer) -> OSStatus

Declaration
From
func CMSampleBufferSetInvalidateCallback(_ sbuf: CMSampleBuffer!, _ invalidateCallback: CMSampleBufferInvalidateCallback, _ invalidateRefCon: UInt64) -> OSStatus
To
func CMSampleBufferSetInvalidateCallback(_ sbuf: CMSampleBuffer, _ invalidateCallback: CMSampleBufferInvalidateCallback, _ invalidateRefCon: UInt64) -> OSStatus

Declaration
From
func CMSampleBufferSetInvalidateHandler(_ sbuf: CMSampleBuffer!, _ invalidateHandler: CMSampleBufferInvalidateHandler!) -> OSStatus
To
func CMSampleBufferSetInvalidateHandler(_ sbuf: CMSampleBuffer, _ invalidateHandler: CMSampleBufferInvalidateHandler) -> OSStatus

Declaration
From
func CMSampleBufferSetOutputPresentationTimeStamp(_ sbuf: CMSampleBuffer!, _ outputPresentationTimeStamp: CMTime) -> OSStatus
To
func CMSampleBufferSetOutputPresentationTimeStamp(_ sbuf: CMSampleBuffer, _ outputPresentationTimeStamp: CMTime) -> OSStatus

Declaration
From
func CMSampleBufferTrackDataReadiness(_ sbuf: CMSampleBuffer!, _ sbufToTrack: CMSampleBuffer!) -> OSStatus
To
func CMSampleBufferTrackDataReadiness(_ sbuf: CMSampleBuffer, _ sbufToTrack: CMSampleBuffer) -> OSStatus

Declaration
From
func CMSetAttachment(_ target: CMAttachmentBearer!, _ key: CFString!, _ value: AnyObject!, _ attachmentMode: CMAttachmentMode)
To
func CMSetAttachment(_ target: CMAttachmentBearer, _ key: CFString, _ value: AnyObject?, _ attachmentMode: CMAttachmentMode)

Declaration
From
func CMSetAttachments(_ target: CMAttachmentBearer!, _ theAttachments: CFDictionary!, _ attachmentMode: CMAttachmentMode)
To
func CMSetAttachments(_ target: CMAttachmentBearer, _ theAttachments: CFDictionary, _ attachmentMode: CMAttachmentMode)

Declaration
From
func CMSimpleQueueCreate(_ allocator: CFAllocator!, _ capacity: Int32, _ queueOut: UnsafeMutablePointer<Unmanaged<CMSimpleQueue>?>) -> OSStatus
To
func CMSimpleQueueCreate(_ allocator: CFAllocator?, _ capacity: Int32, _ queueOut: UnsafeMutablePointer<CMSimpleQueue?>) -> OSStatus

Declaration
From
func CMSimpleQueueDequeue(_ queue: CMSimpleQueue!) -> UnsafePointer<Void>
To
func CMSimpleQueueDequeue(_ queue: CMSimpleQueue) -> UnsafePointer<Void>

Declaration
From
func CMSimpleQueueEnqueue(_ queue: CMSimpleQueue!, _ element: UnsafePointer<Void>) -> OSStatus
To
func CMSimpleQueueEnqueue(_ queue: CMSimpleQueue, _ element: UnsafePointer<Void>) -> OSStatus

Declaration
From
func CMSimpleQueueGetCapacity(_ queue: CMSimpleQueue!) -> Int32
To
func CMSimpleQueueGetCapacity(_ queue: CMSimpleQueue) -> Int32

Declaration
From
func CMSimpleQueueGetCount(_ queue: CMSimpleQueue!) -> Int32
To
func CMSimpleQueueGetCount(_ queue: CMSimpleQueue) -> Int32

Declaration
From
func CMSimpleQueueGetHead(_ queue: CMSimpleQueue!) -> UnsafePointer<Void>
To
func CMSimpleQueueGetHead(_ queue: CMSimpleQueue) -> UnsafePointer<Void>

Declaration
From
func CMSimpleQueueReset(_ queue: CMSimpleQueue!) -> OSStatus
To
func CMSimpleQueueReset(_ queue: CMSimpleQueue) -> OSStatus

Declaration
From
func CMSyncConvertTime(_ time: CMTime, _ fromClockOrTimebase: CMClockOrTimebase!, _ toClockOrTimebase: CMClockOrTimebase!) -> CMTime
To
func CMSyncConvertTime(_ time: CMTime, _ fromClockOrTimebase: CMClockOrTimebase, _ toClockOrTimebase: CMClockOrTimebase) -> CMTime

Declaration
From
func CMSyncGetRelativeRate(_ ofClockOrTimebase: CMClockOrTimebase!, _ relativeToClockOrTimebase: CMClockOrTimebase!) -> Float64
To
func CMSyncGetRelativeRate(_ ofClockOrTimebase: CMClockOrTimebase, _ relativeToClockOrTimebase: CMClockOrTimebase) -> Float64

Declaration
From
func CMSyncGetRelativeRateAndAnchorTime(_ ofClockOrTimebase: CMClockOrTimebase!, _ relativeToClockOrTimebase: CMClockOrTimebase!, _ outRelativeRate: UnsafeMutablePointer<Float64>, _ outOfClockOrTimebaseAnchorTime: UnsafeMutablePointer<CMTime>, _ outRelativeToClockOrTimebaseAnchorTime: UnsafeMutablePointer<CMTime>) -> OSStatus
To
func CMSyncGetRelativeRateAndAnchorTime(_ ofClockOrTimebase: CMClockOrTimebase, _ relativeToClockOrTimebase: CMClockOrTimebase, _ outRelativeRate: UnsafeMutablePointer<Float64>, _ outOfClockOrTimebaseAnchorTime: UnsafeMutablePointer<CMTime>, _ outRelativeToClockOrTimebaseAnchorTime: UnsafeMutablePointer<CMTime>) -> OSStatus

Declaration
From
func CMSyncGetTime(_ clockOrTimebase: CMClockOrTimebase!) -> CMTime
To
func CMSyncGetTime(_ clockOrTimebase: CMClockOrTimebase) -> CMTime

Declaration
From
func CMSyncMightDrift(_ clockOrTimebase1: CMClockOrTimebase!, _ clockOrTimebase2: CMClockOrTimebase!) -> Boolean
To
func CMSyncMightDrift(_ clockOrTimebase1: CMClockOrTimebase, _ clockOrTimebase2: CMClockOrTimebase) -> Bool

Declaration
From
func CMTextFormatDescriptionCopyAsBigEndianTextDescriptionBlockBuffer(_ allocator: CFAllocator!, _ textFormatDescription: CMTextFormatDescription!, _ textDescriptionFlavor: CFString!, _ textDescriptionBlockBufferOut: UnsafeMutablePointer<Unmanaged<CMBlockBuffer>?>) -> OSStatus
To
func CMTextFormatDescriptionCopyAsBigEndianTextDescriptionBlockBuffer(_ allocator: CFAllocator?, _ textFormatDescription: CMTextFormatDescription, _ textDescriptionFlavor: CFString?, _ textDescriptionBlockBufferOut: UnsafeMutablePointer<CMBlockBuffer?>) -> OSStatus

Declaration
From
func CMTextFormatDescriptionCreateFromBigEndianTextDescriptionBlockBuffer(_ allocator: CFAllocator!, _ textDescriptionBlockBuffer: CMBlockBuffer!, _ textDescriptionFlavor: CFString!, _ mediaType: CMMediaType, _ textFormatDescriptionOut: UnsafeMutablePointer<Unmanaged<CMTextFormatDescription>?>) -> OSStatus
To
func CMTextFormatDescriptionCreateFromBigEndianTextDescriptionBlockBuffer(_ allocator: CFAllocator?, _ textDescriptionBlockBuffer: CMBlockBuffer, _ textDescriptionFlavor: CFString?, _ mediaType: CMMediaType, _ textFormatDescriptionOut: UnsafeMutablePointer<CMTextFormatDescription?>) -> OSStatus

Declaration
From
func CMTextFormatDescriptionCreateFromBigEndianTextDescriptionData(_ allocator: CFAllocator!, _ textDescriptionData: UnsafePointer<UInt8>, _ textDescriptionSize: Int, _ textDescriptionFlavor: CFString!, _ mediaType: CMMediaType, _ textFormatDescriptionOut: UnsafeMutablePointer<Unmanaged<CMTextFormatDescription>?>) -> OSStatus
To
func CMTextFormatDescriptionCreateFromBigEndianTextDescriptionData(_ allocator: CFAllocator?, _ textDescriptionData: UnsafePointer<UInt8>, _ textDescriptionSize: Int, _ textDescriptionFlavor: CFString?, _ mediaType: CMMediaType, _ textFormatDescriptionOut: UnsafeMutablePointer<CMTextFormatDescription?>) -> OSStatus

Declaration
From
func CMTextFormatDescriptionGetDefaultStyle(_ desc: CMFormatDescription!, _ outLocalFontID: UnsafeMutablePointer<UInt16>, _ outBold: UnsafeMutablePointer<Boolean>, _ outItalic: UnsafeMutablePointer<Boolean>, _ outUnderline: UnsafeMutablePointer<Boolean>, _ outFontSize: UnsafeMutablePointer<CGFloat>, _ outColorComponents: UnsafeMutablePointer<CGFloat>) -> OSStatus
To
func CMTextFormatDescriptionGetDefaultStyle(_ desc: CMFormatDescription, _ outLocalFontID: UnsafeMutablePointer<UInt16>, _ outBold: UnsafeMutablePointer<DarwinBoolean>, _ outItalic: UnsafeMutablePointer<DarwinBoolean>, _ outUnderline: UnsafeMutablePointer<DarwinBoolean>, _ outFontSize: UnsafeMutablePointer<CGFloat>, _ outColorComponents: UnsafeMutablePointer<CGFloat>) -> OSStatus

Declaration
From
func CMTextFormatDescriptionGetDefaultTextBox(_ desc: CMFormatDescription!, _ originIsAtTopLeft: Boolean, _ heightOfTextTrack: CGFloat, _ outDefaultTextBox: UnsafeMutablePointer<CGRect>) -> OSStatus
To
func CMTextFormatDescriptionGetDefaultTextBox(_ desc: CMFormatDescription, _ originIsAtTopLeft: Bool, _ heightOfTextTrack: CGFloat, _ outDefaultTextBox: UnsafeMutablePointer<CGRect>) -> OSStatus

Declaration
From
func CMTextFormatDescriptionGetDisplayFlags(_ desc: CMFormatDescription!, _ outDisplayFlags: UnsafeMutablePointer<CMTextDisplayFlags>) -> OSStatus
To
func CMTextFormatDescriptionGetDisplayFlags(_ desc: CMFormatDescription, _ outDisplayFlags: UnsafeMutablePointer<CMTextDisplayFlags>) -> OSStatus

Declaration
From
func CMTextFormatDescriptionGetFontName(_ desc: CMFormatDescription!, _ localFontID: UInt16, _ outFontName: UnsafeMutablePointer<Unmanaged<CFString>?>) -> OSStatus
To
func CMTextFormatDescriptionGetFontName(_ desc: CMFormatDescription, _ localFontID: UInt16, _ outFontName: AutoreleasingUnsafeMutablePointer<CFString?>) -> OSStatus

Declaration
From
func CMTextFormatDescriptionGetJustification(_ desc: CMFormatDescription!, _ outHorizontalJust: UnsafeMutablePointer<CMTextJustificationValue>, _ outVerticalJust: UnsafeMutablePointer<CMTextJustificationValue>) -> OSStatus
To
func CMTextFormatDescriptionGetJustification(_ desc: CMFormatDescription, _ outHorizontalJust: UnsafeMutablePointer<CMTextJustificationValue>, _ outVerticalJust: UnsafeMutablePointer<CMTextJustificationValue>) -> OSStatus

Declaration
From
func CMTimebaseAddTimer(_ timebase: CMTimebase!, _ timer: CFRunLoopTimer!, _ runloop: CFRunLoop!) -> OSStatus
To
func CMTimebaseAddTimer(_ timebase: CMTimebase, _ timer: CFRunLoopTimer, _ runloop: CFRunLoop) -> OSStatus

Declaration
From
func CMTimebaseAddTimerDispatchSource(_ timebase: CMTimebase!, _ timerSource: dispatch_source_t!) -> OSStatus
To
func CMTimebaseAddTimerDispatchSource(_ timebase: CMTimebase, _ timerSource: dispatch_source_t) -> OSStatus

Declaration
From
func CMTimebaseCreateWithMasterClock(_ allocator: CFAllocator!, _ masterClock: CMClock!, _ timebaseOut: UnsafeMutablePointer<Unmanaged<CMTimebase>?>) -> OSStatus
To
func CMTimebaseCreateWithMasterClock(_ allocator: CFAllocator?, _ masterClock: CMClock, _ timebaseOut: UnsafeMutablePointer<CMTimebase?>) -> OSStatus

Declaration
From
func CMTimebaseCreateWithMasterTimebase(_ allocator: CFAllocator!, _ masterTimebase: CMTimebase!, _ timebaseOut: UnsafeMutablePointer<Unmanaged<CMTimebase>?>) -> OSStatus
To
func CMTimebaseCreateWithMasterTimebase(_ allocator: CFAllocator?, _ masterTimebase: CMTimebase, _ timebaseOut: UnsafeMutablePointer<CMTimebase?>) -> OSStatus

Declaration
From
func CMTimebaseGetEffectiveRate(_ timebase: CMTimebase!) -> Float64
To
func CMTimebaseGetEffectiveRate(_ timebase: CMTimebase) -> Float64

DeclarationDeprecation
From
func CMTimebaseGetMaster(_ timebase: CMTimebase!) -> CMClockOrTimebase!
--
To
func CMTimebaseGetMaster(_ timebase: CMTimebase) -> CMClockOrTimebase?
OS X 10.11

DeclarationDeprecation
From
func CMTimebaseGetMasterClock(_ timebase: CMTimebase!) -> CMClock!
--
To
func CMTimebaseGetMasterClock(_ timebase: CMTimebase) -> CMClock?
OS X 10.11

DeclarationDeprecation
From
func CMTimebaseGetMasterTimebase(_ timebase: CMTimebase!) -> CMTimebase!
--
To
func CMTimebaseGetMasterTimebase(_ timebase: CMTimebase) -> CMTimebase?
OS X 10.11

Declaration
From
func CMTimebaseGetRate(_ timebase: CMTimebase!) -> Float64
To
func CMTimebaseGetRate(_ timebase: CMTimebase) -> Float64

Declaration
From
func CMTimebaseGetTime(_ timebase: CMTimebase!) -> CMTime
To
func CMTimebaseGetTime(_ timebase: CMTimebase) -> CMTime

Declaration
From
func CMTimebaseGetTimeAndRate(_ timebase: CMTimebase!, _ outTime: UnsafeMutablePointer<CMTime>, _ outRate: UnsafeMutablePointer<Float64>) -> OSStatus
To
func CMTimebaseGetTimeAndRate(_ timebase: CMTimebase, _ outTime: UnsafeMutablePointer<CMTime>, _ outRate: UnsafeMutablePointer<Float64>) -> OSStatus

Declaration
From
func CMTimebaseGetTimeWithTimeScale(_ timebase: CMTimebase!, _ timescale: CMTimeScale, _ method: CMTimeRoundingMethod) -> CMTime
To
func CMTimebaseGetTimeWithTimeScale(_ timebase: CMTimebase, _ timescale: CMTimeScale, _ method: CMTimeRoundingMethod) -> CMTime

DeclarationDeprecation
From
func CMTimebaseGetUltimateMasterClock(_ timebase: CMTimebase!) -> CMClock!
--
To
func CMTimebaseGetUltimateMasterClock(_ timebase: CMTimebase) -> CMClock?
OS X 10.11

Declaration
From
func CMTimebaseNotificationBarrier(_ timebase: CMTimebase!) -> OSStatus
To
func CMTimebaseNotificationBarrier(_ timebase: CMTimebase) -> OSStatus

Declaration
From
func CMTimebaseRemoveTimer(_ timebase: CMTimebase!, _ timer: CFRunLoopTimer!) -> OSStatus
To
func CMTimebaseRemoveTimer(_ timebase: CMTimebase, _ timer: CFRunLoopTimer) -> OSStatus

Declaration
From
func CMTimebaseRemoveTimerDispatchSource(_ timebase: CMTimebase!, _ timerSource: dispatch_source_t!) -> OSStatus
To
func CMTimebaseRemoveTimerDispatchSource(_ timebase: CMTimebase, _ timerSource: dispatch_source_t) -> OSStatus

Declaration
From
func CMTimebaseSetAnchorTime(_ timebase: CMTimebase!, _ timebaseTime: CMTime, _ immediateMasterTime: CMTime) -> OSStatus
To
func CMTimebaseSetAnchorTime(_ timebase: CMTimebase, _ timebaseTime: CMTime, _ immediateMasterTime: CMTime) -> OSStatus

Declaration
From
func CMTimebaseSetRate(_ timebase: CMTimebase!, _ rate: Float64) -> OSStatus
To
func CMTimebaseSetRate(_ timebase: CMTimebase, _ rate: Float64) -> OSStatus

Declaration
From
func CMTimebaseSetRateAndAnchorTime(_ timebase: CMTimebase!, _ rate: Float64, _ timebaseTime: CMTime, _ immediateMasterTime: CMTime) -> OSStatus
To
func CMTimebaseSetRateAndAnchorTime(_ timebase: CMTimebase, _ rate: Float64, _ timebaseTime: CMTime, _ immediateMasterTime: CMTime) -> OSStatus

Declaration
From
func CMTimebaseSetTime(_ timebase: CMTimebase!, _ time: CMTime) -> OSStatus
To
func CMTimebaseSetTime(_ timebase: CMTimebase, _ time: CMTime) -> OSStatus

Declaration
From
func CMTimebaseSetTimerDispatchSourceNextFireTime(_ timebase: CMTimebase!, _ timerSource: dispatch_source_t!, _ fireTime: CMTime, _ flags: UInt32) -> OSStatus
To
func CMTimebaseSetTimerDispatchSourceNextFireTime(_ timebase: CMTimebase, _ timerSource: dispatch_source_t, _ fireTime: CMTime, _ flags: UInt32) -> OSStatus

Declaration
From
func CMTimebaseSetTimerDispatchSourceToFireImmediately(_ timebase: CMTimebase!, _ timerSource: dispatch_source_t!) -> OSStatus
To
func CMTimebaseSetTimerDispatchSourceToFireImmediately(_ timebase: CMTimebase, _ timerSource: dispatch_source_t) -> OSStatus

Declaration
From
func CMTimebaseSetTimerNextFireTime(_ timebase: CMTimebase!, _ timer: CFRunLoopTimer!, _ fireTime: CMTime, _ flags: UInt32) -> OSStatus
To
func CMTimebaseSetTimerNextFireTime(_ timebase: CMTimebase, _ timer: CFRunLoopTimer, _ fireTime: CMTime, _ flags: UInt32) -> OSStatus

Declaration
From
func CMTimebaseSetTimerToFireImmediately(_ timebase: CMTimebase!, _ timer: CFRunLoopTimer!) -> OSStatus
To
func CMTimebaseSetTimerToFireImmediately(_ timebase: CMTimebase, _ timer: CFRunLoopTimer) -> OSStatus

Declaration
From
func CMTimeCodeFormatDescriptionCopyAsBigEndianTimeCodeDescriptionBlockBuffer(_ allocator: CFAllocator!, _ timeCodeFormatDescription: CMTimeCodeFormatDescription!, _ timeCodeDescriptionFlavor: CFString!, _ timeCodeDescriptionBlockBufferOut: UnsafeMutablePointer<Unmanaged<CMBlockBuffer>?>) -> OSStatus
To
func CMTimeCodeFormatDescriptionCopyAsBigEndianTimeCodeDescriptionBlockBuffer(_ allocator: CFAllocator?, _ timeCodeFormatDescription: CMTimeCodeFormatDescription, _ timeCodeDescriptionFlavor: CFString?, _ timeCodeDescriptionBlockBufferOut: UnsafeMutablePointer<CMBlockBuffer?>) -> OSStatus

Declaration
From
func CMTimeCodeFormatDescriptionCreate(_ allocator: CFAllocator!, _ timeCodeFormatType: CMTimeCodeFormatType, _ frameDuration: CMTime, _ frameQuanta: UInt32, _ tcFlags: UInt32, _ extensions: CFDictionary!, _ descOut: UnsafeMutablePointer<Unmanaged<CMTimeCodeFormatDescription>?>) -> OSStatus
To
func CMTimeCodeFormatDescriptionCreate(_ allocator: CFAllocator?, _ timeCodeFormatType: CMTimeCodeFormatType, _ frameDuration: CMTime, _ frameQuanta: UInt32, _ tcFlags: UInt32, _ extensions: CFDictionary?, _ descOut: UnsafeMutablePointer<CMTimeCodeFormatDescription?>) -> OSStatus

Declaration
From
func CMTimeCodeFormatDescriptionCreateFromBigEndianTimeCodeDescriptionBlockBuffer(_ allocator: CFAllocator!, _ timeCodeDescriptionBlockBuffer: CMBlockBuffer!, _ timeCodeDescriptionFlavor: CFString!, _ timeCodeFormatDescriptionOut: UnsafeMutablePointer<Unmanaged<CMTimeCodeFormatDescription>?>) -> OSStatus
To
func CMTimeCodeFormatDescriptionCreateFromBigEndianTimeCodeDescriptionBlockBuffer(_ allocator: CFAllocator?, _ timeCodeDescriptionBlockBuffer: CMBlockBuffer, _ timeCodeDescriptionFlavor: CFString?, _ timeCodeFormatDescriptionOut: UnsafeMutablePointer<CMTimeCodeFormatDescription?>) -> OSStatus

Declaration
From
func CMTimeCodeFormatDescriptionCreateFromBigEndianTimeCodeDescriptionData(_ allocator: CFAllocator!, _ timeCodeDescriptionData: UnsafePointer<UInt8>, _ timeCodeDescriptionSize: Int, _ timeCodeDescriptionFlavor: CFString!, _ timeCodeFormatDescriptionOut: UnsafeMutablePointer<Unmanaged<CMTimeCodeFormatDescription>?>) -> OSStatus
To
func CMTimeCodeFormatDescriptionCreateFromBigEndianTimeCodeDescriptionData(_ allocator: CFAllocator?, _ timeCodeDescriptionData: UnsafePointer<UInt8>, _ timeCodeDescriptionSize: Int, _ timeCodeDescriptionFlavor: CFString?, _ timeCodeFormatDescriptionOut: UnsafeMutablePointer<CMTimeCodeFormatDescription?>) -> OSStatus

Declaration
From
func CMTimeCodeFormatDescriptionGetFrameDuration(_ timeCodeFormatDescription: CMTimeCodeFormatDescription!) -> CMTime
To
func CMTimeCodeFormatDescriptionGetFrameDuration(_ timeCodeFormatDescription: CMTimeCodeFormatDescription) -> CMTime

Declaration
From
func CMTimeCodeFormatDescriptionGetFrameQuanta(_ timeCodeFormatDescription: CMTimeCodeFormatDescription!) -> UInt32
To
func CMTimeCodeFormatDescriptionGetFrameQuanta(_ timeCodeFormatDescription: CMTimeCodeFormatDescription) -> UInt32

Declaration
From
func CMTimeCodeFormatDescriptionGetTimeCodeFlags(_ desc: CMTimeCodeFormatDescription!) -> UInt32
To
func CMTimeCodeFormatDescriptionGetTimeCodeFlags(_ desc: CMTimeCodeFormatDescription) -> UInt32

Declaration
From
func CMTimeCopyAsDictionary(_ time: CMTime, _ allocator: CFAllocator!) -> CFDictionary!
To
func CMTimeCopyAsDictionary(_ time: CMTime, _ allocator: CFAllocator?) -> CFDictionary?

Declaration
From
func CMTimeCopyDescription(_ allocator: CFAllocator!, _ time: CMTime) -> CFString!
To
func CMTimeCopyDescription(_ allocator: CFAllocator?, _ time: CMTime) -> CFString?

Declaration
From
func CMTimeMakeFromDictionary(_ dict: CFDictionary!) -> CMTime
To
func CMTimeMakeFromDictionary(_ dict: CFDictionary?) -> CMTime

Declaration
From
func CMTimeRangeContainsTime(_ range: CMTimeRange, _ time: CMTime) -> Boolean
To
func CMTimeRangeContainsTime(_ range: CMTimeRange, _ time: CMTime) -> Bool

Declaration
From
func CMTimeRangeContainsTimeRange(_ range1: CMTimeRange, _ range2: CMTimeRange) -> Boolean
To
func CMTimeRangeContainsTimeRange(_ range1: CMTimeRange, _ range2: CMTimeRange) -> Bool

Declaration
From
func CMTimeRangeCopyAsDictionary(_ range: CMTimeRange, _ allocator: CFAllocator!) -> CFDictionary!
To
func CMTimeRangeCopyAsDictionary(_ range: CMTimeRange, _ allocator: CFAllocator?) -> CFDictionary?

Declaration
From
func CMTimeRangeCopyDescription(_ allocator: CFAllocator!, _ range: CMTimeRange) -> CFString!
To
func CMTimeRangeCopyDescription(_ allocator: CFAllocator?, _ range: CMTimeRange) -> CFString?

Declaration
From
func CMTimeRangeEqual(_ range1: CMTimeRange, _ range2: CMTimeRange) -> Boolean
To
func CMTimeRangeEqual(_ range1: CMTimeRange, _ range2: CMTimeRange) -> Bool

Declaration
From
func CMTimeRangeMakeFromDictionary(_ dict: CFDictionary!) -> CMTimeRange
To
func CMTimeRangeMakeFromDictionary(_ dict: CFDictionary) -> CMTimeRange

Declaration
From
func CMVideoFormatDescriptionCopyAsBigEndianImageDescriptionBlockBuffer(_ allocator: CFAllocator!, _ videoFormatDescription: CMVideoFormatDescription!, _ imageDescriptionStringEncoding: CFStringEncoding, _ imageDescriptionFlavor: CFString!, _ imageDescriptionBlockBufferOut: UnsafeMutablePointer<Unmanaged<CMBlockBuffer>?>) -> OSStatus
To
func CMVideoFormatDescriptionCopyAsBigEndianImageDescriptionBlockBuffer(_ allocator: CFAllocator?, _ videoFormatDescription: CMVideoFormatDescription, _ imageDescriptionStringEncoding: CFStringEncoding, _ imageDescriptionFlavor: CFString?, _ imageDescriptionBlockBufferOut: UnsafeMutablePointer<CMBlockBuffer?>) -> OSStatus

Declaration
From
func CMVideoFormatDescriptionCreate(_ allocator: CFAllocator!, _ codecType: CMVideoCodecType, _ width: Int32, _ height: Int32, _ extensions: CFDictionary!, _ outDesc: UnsafeMutablePointer<Unmanaged<CMVideoFormatDescription>?>) -> OSStatus
To
func CMVideoFormatDescriptionCreate(_ allocator: CFAllocator?, _ codecType: CMVideoCodecType, _ width: Int32, _ height: Int32, _ extensions: CFDictionary?, _ outDesc: UnsafeMutablePointer<CMVideoFormatDescription?>) -> OSStatus

Declaration
From
func CMVideoFormatDescriptionCreateForImageBuffer(_ allocator: CFAllocator!, _ imageBuffer: CVImageBuffer!, _ outDesc: UnsafeMutablePointer<Unmanaged<CMVideoFormatDescription>?>) -> OSStatus
To
func CMVideoFormatDescriptionCreateForImageBuffer(_ allocator: CFAllocator?, _ imageBuffer: CVImageBuffer, _ outDesc: UnsafeMutablePointer<CMVideoFormatDescription?>) -> OSStatus

Declaration
From
func CMVideoFormatDescriptionCreateFromBigEndianImageDescriptionBlockBuffer(_ allocator: CFAllocator!, _ imageDescriptionBlockBuffer: CMBlockBuffer!, _ imageDescriptionStringEncoding: CFStringEncoding, _ imageDescriptionFlavor: CFString!, _ videoFormatDescriptionOut: UnsafeMutablePointer<Unmanaged<CMVideoFormatDescription>?>) -> OSStatus
To
func CMVideoFormatDescriptionCreateFromBigEndianImageDescriptionBlockBuffer(_ allocator: CFAllocator?, _ imageDescriptionBlockBuffer: CMBlockBuffer, _ imageDescriptionStringEncoding: CFStringEncoding, _ imageDescriptionFlavor: CFString?, _ videoFormatDescriptionOut: UnsafeMutablePointer<CMVideoFormatDescription?>) -> OSStatus

Declaration
From
func CMVideoFormatDescriptionCreateFromBigEndianImageDescriptionData(_ allocator: CFAllocator!, _ imageDescriptionData: UnsafePointer<UInt8>, _ imageDescriptionSize: Int, _ imageDescriptionStringEncoding: CFStringEncoding, _ imageDescriptionFlavor: CFString!, _ videoFormatDescriptionOut: UnsafeMutablePointer<Unmanaged<CMVideoFormatDescription>?>) -> OSStatus
To
func CMVideoFormatDescriptionCreateFromBigEndianImageDescriptionData(_ allocator: CFAllocator?, _ imageDescriptionData: UnsafePointer<UInt8>, _ imageDescriptionSize: Int, _ imageDescriptionStringEncoding: CFStringEncoding, _ imageDescriptionFlavor: CFString?, _ videoFormatDescriptionOut: UnsafeMutablePointer<CMVideoFormatDescription?>) -> OSStatus

Declaration
From
func CMVideoFormatDescriptionCreateFromH264ParameterSets(_ allocator: CFAllocator!, _ parameterSetCount: Int, _ parameterSetPointers: UnsafePointer<UnsafePointer<UInt8>>, _ parameterSetSizes: UnsafePointer<Int>, _ NALUnitHeaderLength: Int32, _ formatDescriptionOut: UnsafeMutablePointer<Unmanaged<CMFormatDescription>?>) -> OSStatus
To
func CMVideoFormatDescriptionCreateFromH264ParameterSets(_ allocator: CFAllocator?, _ parameterSetCount: Int, _ parameterSetPointers: UnsafePointer<UnsafePointer<UInt8>>, _ parameterSetSizes: UnsafePointer<Int>, _ NALUnitHeaderLength: Int32, _ formatDescriptionOut: UnsafeMutablePointer<CMFormatDescription?>) -> OSStatus

Declaration
From
func CMVideoFormatDescriptionGetCleanAperture(_ videoDesc: CMVideoFormatDescription!, _ originIsAtTopLeft: Boolean) -> CGRect
To
func CMVideoFormatDescriptionGetCleanAperture(_ videoDesc: CMVideoFormatDescription, _ originIsAtTopLeft: Bool) -> CGRect

Declaration
From
func CMVideoFormatDescriptionGetDimensions(_ videoDesc: CMVideoFormatDescription!) -> CMVideoDimensions
To
func CMVideoFormatDescriptionGetDimensions(_ videoDesc: CMVideoFormatDescription) -> CMVideoDimensions

Declaration
From
func CMVideoFormatDescriptionGetExtensionKeysCommonWithImageBuffers() -> Unmanaged<CFArray>!
To
func CMVideoFormatDescriptionGetExtensionKeysCommonWithImageBuffers() -> CFArray

Declaration
From
func CMVideoFormatDescriptionGetH264ParameterSetAtIndex(_ videoDesc: CMFormatDescription!, _ parameterSetIndex: Int, _ parameterSetPointerOut: UnsafeMutablePointer<UnsafePointer<UInt8>>, _ parameterSetSizeOut: UnsafeMutablePointer<Int>, _ parameterSetCountOut: UnsafeMutablePointer<Int>, _ NALUnitHeaderLengthOut: UnsafeMutablePointer<Int32>) -> OSStatus
To
func CMVideoFormatDescriptionGetH264ParameterSetAtIndex(_ videoDesc: CMFormatDescription, _ parameterSetIndex: Int, _ parameterSetPointerOut: UnsafeMutablePointer<UnsafePointer<UInt8>>, _ parameterSetSizeOut: UnsafeMutablePointer<Int>, _ parameterSetCountOut: UnsafeMutablePointer<Int>, _ NALUnitHeaderLengthOut: UnsafeMutablePointer<Int32>) -> OSStatus

Declaration
From
func CMVideoFormatDescriptionGetPresentationDimensions(_ videoDesc: CMVideoFormatDescription!, _ usePixelAspectRatio: Boolean, _ useCleanAperture: Boolean) -> CGSize
To
func CMVideoFormatDescriptionGetPresentationDimensions(_ videoDesc: CMVideoFormatDescription, _ usePixelAspectRatio: Bool, _ useCleanAperture: Bool) -> CGSize

Declaration
From
func CMVideoFormatDescriptionMatchesImageBuffer(_ desc: CMVideoFormatDescription!, _ imageBuffer: CVImageBuffer!) -> Boolean
To
func CMVideoFormatDescriptionMatchesImageBuffer(_ desc: CMVideoFormatDescription, _ imageBuffer: CVImageBuffer) -> Bool

Declaration
From
var kCMAttachmentMode_ShouldNotPropagate: Int { get }
To
var kCMAttachmentMode_ShouldNotPropagate: CMAttachmentMode { get }

Declaration
From
var kCMAttachmentMode_ShouldPropagate: Int { get }
To
var kCMAttachmentMode_ShouldPropagate: CMAttachmentMode { get }

Declaration
From
var kCMAudioCodecType_AAC_AudibleProtected: Int { get }
To
var kCMAudioCodecType_AAC_AudibleProtected: CMAudioCodecType { get }

Declaration
From
var kCMAudioCodecType_AAC_LCProtected: Int { get }
To
var kCMAudioCodecType_AAC_LCProtected: CMAudioCodecType { get }

Declaration
From
var kCMAudioFormatDescriptionMask_All: Int { get }
To
var kCMAudioFormatDescriptionMask_All: CMAudioFormatDescriptionMask { get }

Declaration
From
var kCMAudioFormatDescriptionMask_ChannelLayout: Int { get }
To
var kCMAudioFormatDescriptionMask_ChannelLayout: CMAudioFormatDescriptionMask { get }

Declaration
From
var kCMAudioFormatDescriptionMask_Extensions: Int { get }
To
var kCMAudioFormatDescriptionMask_Extensions: CMAudioFormatDescriptionMask { get }

Declaration
From
var kCMAudioFormatDescriptionMask_MagicCookie: Int { get }
To
var kCMAudioFormatDescriptionMask_MagicCookie: CMAudioFormatDescriptionMask { get }

Declaration
From
var kCMAudioFormatDescriptionMask_StreamBasicDescription: Int { get }
To
var kCMAudioFormatDescriptionMask_StreamBasicDescription: CMAudioFormatDescriptionMask { get }

Declaration
From
var kCMBlockBufferAlwaysCopyDataFlag: Int { get }
To
var kCMBlockBufferAlwaysCopyDataFlag: CMBlockBufferFlags { get }

Declaration
From
var kCMBlockBufferAssureMemoryNowFlag: Int { get }
To
var kCMBlockBufferAssureMemoryNowFlag: CMBlockBufferFlags { get }

Declaration
From
var kCMBlockBufferBadCustomBlockSourceErr: Int { get }
To
var kCMBlockBufferBadCustomBlockSourceErr: OSStatus { get }

Declaration
From
var kCMBlockBufferBadLengthParameterErr: Int { get }
To
var kCMBlockBufferBadLengthParameterErr: OSStatus { get }

Declaration
From
var kCMBlockBufferBadOffsetParameterErr: Int { get }
To
var kCMBlockBufferBadOffsetParameterErr: OSStatus { get }

Declaration
From
var kCMBlockBufferBadPointerParameterErr: Int { get }
To
var kCMBlockBufferBadPointerParameterErr: OSStatus { get }

Declaration
From
var kCMBlockBufferBlockAllocationFailedErr: Int { get }
To
var kCMBlockBufferBlockAllocationFailedErr: OSStatus { get }

Declaration
From
var kCMBlockBufferCustomBlockSourceVersion: Int { get }
To
var kCMBlockBufferCustomBlockSourceVersion: UInt32 { get }

Declaration
From
var kCMBlockBufferDontOptimizeDepthFlag: Int { get }
To
var kCMBlockBufferDontOptimizeDepthFlag: CMBlockBufferFlags { get }

Declaration
From
var kCMBlockBufferEmptyBBufErr: Int { get }
To
var kCMBlockBufferEmptyBBufErr: OSStatus { get }

Declaration
From
var kCMBlockBufferInsufficientSpaceErr: Int { get }
To
var kCMBlockBufferInsufficientSpaceErr: OSStatus { get }

Declaration
From
var kCMBlockBufferNoErr: Int { get }
To
var kCMBlockBufferNoErr: OSStatus { get }

Declaration
From
var kCMBlockBufferPermitEmptyReferenceFlag: Int { get }
To
var kCMBlockBufferPermitEmptyReferenceFlag: CMBlockBufferFlags { get }

Declaration
From
var kCMBlockBufferStructureAllocationFailedErr: Int { get }
To
var kCMBlockBufferStructureAllocationFailedErr: OSStatus { get }

Declaration
From
var kCMBlockBufferUnallocatedBlockErr: Int { get }
To
var kCMBlockBufferUnallocatedBlockErr: OSStatus { get }

Declaration
From
var kCMBufferQueueError_AllocationFailed: Int { get }
To
var kCMBufferQueueError_AllocationFailed: OSStatus { get }

Declaration
From
var kCMBufferQueueError_BadTriggerDuration: Int { get }
To
var kCMBufferQueueError_BadTriggerDuration: OSStatus { get }

Declaration
From
var kCMBufferQueueError_CannotModifyQueueFromTriggerCallback: Int { get }
To
var kCMBufferQueueError_CannotModifyQueueFromTriggerCallback: OSStatus { get }

Declaration
From
var kCMBufferQueueError_EnqueueAfterEndOfData: Int { get }
To
var kCMBufferQueueError_EnqueueAfterEndOfData: OSStatus { get }

Declaration
From
var kCMBufferQueueError_InvalidBuffer: Int { get }
To
var kCMBufferQueueError_InvalidBuffer: OSStatus { get }

Declaration
From
var kCMBufferQueueError_InvalidCMBufferCallbacksStruct: Int { get }
To
var kCMBufferQueueError_InvalidCMBufferCallbacksStruct: OSStatus { get }

Declaration
From
var kCMBufferQueueError_InvalidTriggerCondition: Int { get }
To
var kCMBufferQueueError_InvalidTriggerCondition: OSStatus { get }

Declaration
From
var kCMBufferQueueError_InvalidTriggerToken: Int { get }
To
var kCMBufferQueueError_InvalidTriggerToken: OSStatus { get }

Declaration
From
var kCMBufferQueueError_QueueIsFull: Int { get }
To
var kCMBufferQueueError_QueueIsFull: OSStatus { get }

Declaration
From
var kCMBufferQueueError_RequiredParameterMissing: Int { get }
To
var kCMBufferQueueError_RequiredParameterMissing: OSStatus { get }

Declaration
From
var kCMBufferQueueTrigger_WhenBufferCountBecomesGreaterThan: Int { get }
To
var kCMBufferQueueTrigger_WhenBufferCountBecomesGreaterThan: CMBufferQueueTriggerCondition { get }

Declaration
From
var kCMBufferQueueTrigger_WhenBufferCountBecomesLessThan: Int { get }
To
var kCMBufferQueueTrigger_WhenBufferCountBecomesLessThan: CMBufferQueueTriggerCondition { get }

Declaration
From
var kCMBufferQueueTrigger_WhenDataBecomesReady: Int { get }
To
var kCMBufferQueueTrigger_WhenDataBecomesReady: CMBufferQueueTriggerCondition { get }

Declaration
From
var kCMBufferQueueTrigger_WhenDurationBecomesGreaterThan: Int { get }
To
var kCMBufferQueueTrigger_WhenDurationBecomesGreaterThan: CMBufferQueueTriggerCondition { get }

Declaration
From
var kCMBufferQueueTrigger_WhenDurationBecomesGreaterThanOrEqualTo: Int { get }
To
var kCMBufferQueueTrigger_WhenDurationBecomesGreaterThanOrEqualTo: CMBufferQueueTriggerCondition { get }

Declaration
From
var kCMBufferQueueTrigger_WhenDurationBecomesLessThan: Int { get }
To
var kCMBufferQueueTrigger_WhenDurationBecomesLessThan: CMBufferQueueTriggerCondition { get }

Declaration
From
var kCMBufferQueueTrigger_WhenDurationBecomesLessThanOrEqualTo: Int { get }
To
var kCMBufferQueueTrigger_WhenDurationBecomesLessThanOrEqualTo: CMBufferQueueTriggerCondition { get }

Declaration
From
var kCMBufferQueueTrigger_WhenEndOfDataReached: Int { get }
To
var kCMBufferQueueTrigger_WhenEndOfDataReached: CMBufferQueueTriggerCondition { get }

Declaration
From
var kCMBufferQueueTrigger_WhenMaxPresentationTimeStampChanges: Int { get }
To
var kCMBufferQueueTrigger_WhenMaxPresentationTimeStampChanges: CMBufferQueueTriggerCondition { get }

Declaration
From
var kCMBufferQueueTrigger_WhenMinPresentationTimeStampChanges: Int { get }
To
var kCMBufferQueueTrigger_WhenMinPresentationTimeStampChanges: CMBufferQueueTriggerCondition { get }

Declaration
From
var kCMBufferQueueTrigger_WhenReset: Int { get }
To
var kCMBufferQueueTrigger_WhenReset: CMBufferQueueTriggerCondition { get }

Declaration
From
var kCMClockError_AllocationFailed: Int { get }
To
var kCMClockError_AllocationFailed: OSStatus { get }

Declaration
From
var kCMClockError_InvalidParameter: Int { get }
To
var kCMClockError_InvalidParameter: OSStatus { get }

Declaration
From
var kCMClockError_MissingRequiredParameter: Int { get }
To
var kCMClockError_MissingRequiredParameter: OSStatus { get }

Declaration
From
var kCMClockError_UnsupportedOperation: Int { get }
To
var kCMClockError_UnsupportedOperation: OSStatus { get }

Declaration
From
var kCMClosedCaptionFormatType_ATSC: Int { get }
To
var kCMClosedCaptionFormatType_ATSC: CMClosedCaptionFormatType { get }

Declaration
From
var kCMClosedCaptionFormatType_CEA608: Int { get }
To
var kCMClosedCaptionFormatType_CEA608: CMClosedCaptionFormatType { get }

Declaration
From
var kCMClosedCaptionFormatType_CEA708: Int { get }
To
var kCMClosedCaptionFormatType_CEA708: CMClosedCaptionFormatType { get }

Declaration
From
var kCMFormatDescriptionBridgeError_AllocationFailed: Int { get }
To
var kCMFormatDescriptionBridgeError_AllocationFailed: OSStatus { get }

Declaration
From
var kCMFormatDescriptionBridgeError_IncompatibleFormatDescription: Int { get }
To
var kCMFormatDescriptionBridgeError_IncompatibleFormatDescription: OSStatus { get }

Declaration
From
var kCMFormatDescriptionBridgeError_InvalidFormatDescription: Int { get }
To
var kCMFormatDescriptionBridgeError_InvalidFormatDescription: OSStatus { get }

Declaration
From
var kCMFormatDescriptionBridgeError_InvalidParameter: Int { get }
To
var kCMFormatDescriptionBridgeError_InvalidParameter: OSStatus { get }

Declaration
From
var kCMFormatDescriptionBridgeError_InvalidSerializedSampleDescription: Int { get }
To
var kCMFormatDescriptionBridgeError_InvalidSerializedSampleDescription: OSStatus { get }

Declaration
From
var kCMFormatDescriptionBridgeError_InvalidSlice: Int { get }
To
var kCMFormatDescriptionBridgeError_InvalidSlice: OSStatus { get }

Declaration
From
var kCMFormatDescriptionBridgeError_UnsupportedSampleDescriptionFlavor: Int { get }
To
var kCMFormatDescriptionBridgeError_UnsupportedSampleDescriptionFlavor: OSStatus { get }

Declaration
From
let kCMFormatDescriptionColorPrimaries_P22: CFString!
To
let kCMFormatDescriptionColorPrimaries_P22: CFString

Declaration
From
let kCMFormatDescriptionConformsToMPEG2VideoProfile: CFString!
To
let kCMFormatDescriptionConformsToMPEG2VideoProfile: CFString

Declaration
From
var kCMFormatDescriptionError_AllocationFailed: Int { get }
To
var kCMFormatDescriptionError_AllocationFailed: OSStatus { get }

Declaration
From
var kCMFormatDescriptionError_InvalidParameter: Int { get }
To
var kCMFormatDescriptionError_InvalidParameter: OSStatus { get }

Declaration
From
var kCMFormatDescriptionError_ValueNotAvailable: Int { get }
To
var kCMFormatDescriptionError_ValueNotAvailable: OSStatus { get }

Declaration
From
let kCMFormatDescriptionExtension_BytesPerRow: CFString!
To
let kCMFormatDescriptionExtension_BytesPerRow: CFString

Declaration
From
let kCMFormatDescriptionExtension_Depth: CFString!
To
let kCMFormatDescriptionExtension_Depth: CFString

Declaration
From
let kCMFormatDescriptionExtension_FormatName: CFString!
To
let kCMFormatDescriptionExtension_FormatName: CFString

Declaration
From
let kCMFormatDescriptionExtension_FullRangeVideo: CFString!
To
let kCMFormatDescriptionExtension_FullRangeVideo: CFString

Declaration
From
let kCMFormatDescriptionExtension_ICCProfile: CFString!
To
let kCMFormatDescriptionExtension_ICCProfile: CFString

Declaration
From
let kCMFormatDescriptionExtension_OriginalCompressionSettings: CFString!
To
let kCMFormatDescriptionExtension_OriginalCompressionSettings: CFString

Declaration
From
let kCMFormatDescriptionExtension_RevisionLevel: CFString!
To
let kCMFormatDescriptionExtension_RevisionLevel: CFString

Declaration
From
let kCMFormatDescriptionExtension_SampleDescriptionExtensionAtoms: CFString!
To
let kCMFormatDescriptionExtension_SampleDescriptionExtensionAtoms: CFString

Declaration
From
let kCMFormatDescriptionExtension_SpatialQuality: CFString!
To
let kCMFormatDescriptionExtension_SpatialQuality: CFString

Declaration
From
let kCMFormatDescriptionExtension_TemporalQuality: CFString!
To
let kCMFormatDescriptionExtension_TemporalQuality: CFString

Declaration
From
let kCMFormatDescriptionExtension_Vendor: CFString!
To
let kCMFormatDescriptionExtension_Vendor: CFString

Declaration
From
let kCMFormatDescriptionExtension_VerbatimISOSampleEntry: CFString!
To
let kCMFormatDescriptionExtension_VerbatimISOSampleEntry: CFString

Declaration
From
let kCMFormatDescriptionExtension_VerbatimSampleDescription: CFString!
To
let kCMFormatDescriptionExtension_VerbatimSampleDescription: CFString

Declaration
From
let kCMFormatDescriptionExtension_Version: CFString!
To
let kCMFormatDescriptionExtension_Version: CFString

Declaration
From
let kCMFormatDescriptionExtensionKey_MetadataKeyTable: CFString!
To
let kCMFormatDescriptionExtensionKey_MetadataKeyTable: CFString

Declaration
From
let kCMFormatDescriptionKey_CleanApertureHeightRational: CFString!
To
let kCMFormatDescriptionKey_CleanApertureHeightRational: CFString

Declaration
From
let kCMFormatDescriptionKey_CleanApertureHorizontalOffsetRational: CFString!
To
let kCMFormatDescriptionKey_CleanApertureHorizontalOffsetRational: CFString

Declaration
From
let kCMFormatDescriptionKey_CleanApertureVerticalOffsetRational: CFString!
To
let kCMFormatDescriptionKey_CleanApertureVerticalOffsetRational: CFString

Declaration
From
let kCMFormatDescriptionKey_CleanApertureWidthRational: CFString!
To
let kCMFormatDescriptionKey_CleanApertureWidthRational: CFString

Declaration
From
let kCMFormatDescriptionVendor_Apple: CFString!
To
let kCMFormatDescriptionVendor_Apple: CFString

Declaration
From
let kCMImageDescriptionFlavor_3GPFamily: CFString!
To
let kCMImageDescriptionFlavor_3GPFamily: CFString

Declaration
From
let kCMImageDescriptionFlavor_ISOFamily: CFString!
To
let kCMImageDescriptionFlavor_ISOFamily: CFString

Declaration
From
let kCMImageDescriptionFlavor_QuickTimeMovie: CFString!
To
let kCMImageDescriptionFlavor_QuickTimeMovie: CFString

Declaration
From
var kCMMediaType_Audio: Int { get }
To
var kCMMediaType_Audio: CMMediaType { get }

Declaration
From
var kCMMediaType_ClosedCaption: Int { get }
To
var kCMMediaType_ClosedCaption: CMMediaType { get }

Declaration
From
var kCMMediaType_Metadata: Int { get }
To
var kCMMediaType_Metadata: CMMediaType { get }

Declaration
From
var kCMMediaType_Muxed: Int { get }
To
var kCMMediaType_Muxed: CMMediaType { get }

Declaration
From
var kCMMediaType_Subtitle: Int { get }
To
var kCMMediaType_Subtitle: CMMediaType { get }

Declaration
From
var kCMMediaType_Text: Int { get }
To
var kCMMediaType_Text: CMMediaType { get }

Declaration
From
var kCMMediaType_TimeCode: Int { get }
To
var kCMMediaType_TimeCode: CMMediaType { get }

Declaration
From
var kCMMediaType_Video: Int { get }
To
var kCMMediaType_Video: CMMediaType { get }

Declaration
From
let kCMMemoryPoolOption_AgeOutPeriod: CFString!
To
let kCMMemoryPoolOption_AgeOutPeriod: CFString

Declaration
From
let kCMMetadataBaseDataType_AffineTransformF64: CFString!
To
let kCMMetadataBaseDataType_AffineTransformF64: CFString

Declaration
From
let kCMMetadataBaseDataType_BMP: CFString!
To
let kCMMetadataBaseDataType_BMP: CFString

Declaration
From
let kCMMetadataBaseDataType_DimensionsF32: CFString!
To
let kCMMetadataBaseDataType_DimensionsF32: CFString

Declaration
From
let kCMMetadataBaseDataType_Float32: CFString!
To
let kCMMetadataBaseDataType_Float32: CFString

Declaration
From
let kCMMetadataBaseDataType_Float64: CFString!
To
let kCMMetadataBaseDataType_Float64: CFString

Declaration
From
let kCMMetadataBaseDataType_GIF: CFString!
To
let kCMMetadataBaseDataType_GIF: CFString

Declaration
From
let kCMMetadataBaseDataType_JPEG: CFString!
To
let kCMMetadataBaseDataType_JPEG: CFString

Declaration
From
let kCMMetadataBaseDataType_PNG: CFString!
To
let kCMMetadataBaseDataType_PNG: CFString

Declaration
From
let kCMMetadataBaseDataType_PointF32: CFString!
To
let kCMMetadataBaseDataType_PointF32: CFString

Declaration
From
let kCMMetadataBaseDataType_RawData: CFString!
To
let kCMMetadataBaseDataType_RawData: CFString

Declaration
From
let kCMMetadataBaseDataType_RectF32: CFString!
To
let kCMMetadataBaseDataType_RectF32: CFString

Declaration
From
let kCMMetadataBaseDataType_SInt16: CFString!
To
let kCMMetadataBaseDataType_SInt16: CFString

Declaration
From
let kCMMetadataBaseDataType_SInt32: CFString!
To
let kCMMetadataBaseDataType_SInt32: CFString

Declaration
From
let kCMMetadataBaseDataType_SInt64: CFString!
To
let kCMMetadataBaseDataType_SInt64: CFString

Declaration
From
let kCMMetadataBaseDataType_SInt8: CFString!
To
let kCMMetadataBaseDataType_SInt8: CFString

Declaration
From
let kCMMetadataBaseDataType_UInt16: CFString!
To
let kCMMetadataBaseDataType_UInt16: CFString

Declaration
From
let kCMMetadataBaseDataType_UInt32: CFString!
To
let kCMMetadataBaseDataType_UInt32: CFString

Declaration
From
let kCMMetadataBaseDataType_UInt64: CFString!
To
let kCMMetadataBaseDataType_UInt64: CFString

Declaration
From
let kCMMetadataBaseDataType_UInt8: CFString!
To
let kCMMetadataBaseDataType_UInt8: CFString

Declaration
From
let kCMMetadataBaseDataType_UTF16: CFString!
To
let kCMMetadataBaseDataType_UTF16: CFString

Declaration
From
let kCMMetadataBaseDataType_UTF8: CFString!
To
let kCMMetadataBaseDataType_UTF8: CFString

Declaration
From
let kCMMetadataDataType_QuickTimeMetadataDirection: CFString!
To
let kCMMetadataDataType_QuickTimeMetadataDirection: CFString

Declaration
From
let kCMMetadataDataType_QuickTimeMetadataLocation_ISO6709: CFString!
To
let kCMMetadataDataType_QuickTimeMetadataLocation_ISO6709: CFString

Declaration
From
var kCMMetadataDataTypeRegistryError_AllocationFailed: Int { get }
To
var kCMMetadataDataTypeRegistryError_AllocationFailed: OSStatus { get }

Declaration
From
var kCMMetadataDataTypeRegistryError_BadDataTypeIdentifier: Int { get }
To
var kCMMetadataDataTypeRegistryError_BadDataTypeIdentifier: OSStatus { get }

Declaration
From
var kCMMetadataDataTypeRegistryError_DataTypeAlreadyRegistered: Int { get }
To
var kCMMetadataDataTypeRegistryError_DataTypeAlreadyRegistered: OSStatus { get }

Declaration
From
var kCMMetadataDataTypeRegistryError_MultipleConformingBaseTypes: Int { get }
To
var kCMMetadataDataTypeRegistryError_MultipleConformingBaseTypes: OSStatus { get }

Declaration
From
var kCMMetadataDataTypeRegistryError_RequiredParameterMissing: Int { get }
To
var kCMMetadataDataTypeRegistryError_RequiredParameterMissing: OSStatus { get }

Declaration
From
var kCMMetadataDataTypeRegistryError_RequiresConformingBaseType: Int { get }
To
var kCMMetadataDataTypeRegistryError_RequiresConformingBaseType: OSStatus { get }

Declaration
From
let kCMMetadataFormatDescriptionKey_ConformingDataTypes: CFString!
To
let kCMMetadataFormatDescriptionKey_ConformingDataTypes: CFString

Declaration
From
let kCMMetadataFormatDescriptionKey_DataType: CFString!
To
let kCMMetadataFormatDescriptionKey_DataType: CFString

Declaration
From
let kCMMetadataFormatDescriptionKey_DataTypeNamespace: CFString!
To
let kCMMetadataFormatDescriptionKey_DataTypeNamespace: CFString

Declaration
From
let kCMMetadataFormatDescriptionKey_LanguageTag: CFString!
To
let kCMMetadataFormatDescriptionKey_LanguageTag: CFString

Declaration
From
let kCMMetadataFormatDescriptionKey_LocalID: CFString!
To
let kCMMetadataFormatDescriptionKey_LocalID: CFString

Declaration
From
let kCMMetadataFormatDescriptionKey_Namespace: CFString!
To
let kCMMetadataFormatDescriptionKey_Namespace: CFString

Declaration
From
let kCMMetadataFormatDescriptionKey_Value: CFString!
To
let kCMMetadataFormatDescriptionKey_Value: CFString

Declaration
From
let kCMMetadataFormatDescriptionMetadataSpecificationKey_DataType: CFString!
To
let kCMMetadataFormatDescriptionMetadataSpecificationKey_DataType: CFString

Declaration
From
let kCMMetadataFormatDescriptionMetadataSpecificationKey_ExtendedLanguageTag: CFString!
To
let kCMMetadataFormatDescriptionMetadataSpecificationKey_ExtendedLanguageTag: CFString

Declaration
From
let kCMMetadataFormatDescriptionMetadataSpecificationKey_Identifier: CFString!
To
let kCMMetadataFormatDescriptionMetadataSpecificationKey_Identifier: CFString

Declaration
From
var kCMMetadataFormatType_Boxed: Int { get }
To
var kCMMetadataFormatType_Boxed: CMMetadataFormatType { get }

Declaration
From
var kCMMetadataFormatType_ICY: Int { get }
To
var kCMMetadataFormatType_ICY: CMMetadataFormatType { get }

Declaration
From
var kCMMetadataFormatType_ID3: Int { get }
To
var kCMMetadataFormatType_ID3: CMMetadataFormatType { get }

Declaration
From
let kCMMetadataIdentifier_QuickTimeMetadataDirection_Facing: CFString!
To
let kCMMetadataIdentifier_QuickTimeMetadataDirection_Facing: CFString

Declaration
From
let kCMMetadataIdentifier_QuickTimeMetadataLocation_ISO6709: CFString!
To
let kCMMetadataIdentifier_QuickTimeMetadataLocation_ISO6709: CFString

Declaration
From
let kCMMetadataIdentifier_QuickTimeMetadataPreferredAffineTransform: CFString!
To
let kCMMetadataIdentifier_QuickTimeMetadataPreferredAffineTransform: CFString

Declaration
From
var kCMMetadataIdentifierError_AllocationFailed: Int { get }
To
var kCMMetadataIdentifierError_AllocationFailed: OSStatus { get }

Declaration
From
var kCMMetadataIdentifierError_BadIdentifier: Int { get }
To
var kCMMetadataIdentifierError_BadIdentifier: OSStatus { get }

Declaration
From
var kCMMetadataIdentifierError_BadKey: Int { get }
To
var kCMMetadataIdentifierError_BadKey: OSStatus { get }

Declaration
From
var kCMMetadataIdentifierError_BadKeyLength: Int { get }
To
var kCMMetadataIdentifierError_BadKeyLength: OSStatus { get }

Declaration
From
var kCMMetadataIdentifierError_BadKeySpace: Int { get }
To
var kCMMetadataIdentifierError_BadKeySpace: OSStatus { get }

Declaration
From
var kCMMetadataIdentifierError_BadKeyType: Int { get }
To
var kCMMetadataIdentifierError_BadKeyType: OSStatus { get }

Declaration
From
var kCMMetadataIdentifierError_BadNumberKey: Int { get }
To
var kCMMetadataIdentifierError_BadNumberKey: OSStatus { get }

Declaration
From
var kCMMetadataIdentifierError_NoKeyValueAvailable: Int { get }
To
var kCMMetadataIdentifierError_NoKeyValueAvailable: OSStatus { get }

Declaration
From
var kCMMetadataIdentifierError_RequiredParameterMissing: Int { get }
To
var kCMMetadataIdentifierError_RequiredParameterMissing: OSStatus { get }

Declaration
From
let kCMMetadataKeySpace_Icy: CFString!
To
let kCMMetadataKeySpace_Icy: CFString

Declaration
From
let kCMMetadataKeySpace_ID3: CFString!
To
let kCMMetadataKeySpace_ID3: CFString

Declaration
From
let kCMMetadataKeySpace_ISOUserData: CFString!
To
let kCMMetadataKeySpace_ISOUserData: CFString

Declaration
From
let kCMMetadataKeySpace_iTunes: CFString!
To
let kCMMetadataKeySpace_iTunes: CFString

Declaration
From
let kCMMetadataKeySpace_QuickTimeMetadata: CFString!
To
let kCMMetadataKeySpace_QuickTimeMetadata: CFString

Declaration
From
let kCMMetadataKeySpace_QuickTimeUserData: CFString!
To
let kCMMetadataKeySpace_QuickTimeUserData: CFString

Declaration
From
var kCMMPEG2VideoProfile_HDV_1080i50: Int { get }
To
var kCMMPEG2VideoProfile_HDV_1080i50: Int32 { get }

Declaration
From
var kCMMPEG2VideoProfile_HDV_1080i60: Int { get }
To
var kCMMPEG2VideoProfile_HDV_1080i60: Int32 { get }

Declaration
From
var kCMMPEG2VideoProfile_HDV_1080p24: Int { get }
To
var kCMMPEG2VideoProfile_HDV_1080p24: Int32 { get }

Declaration
From
var kCMMPEG2VideoProfile_HDV_1080p25: Int { get }
To
var kCMMPEG2VideoProfile_HDV_1080p25: Int32 { get }

Declaration
From
var kCMMPEG2VideoProfile_HDV_1080p30: Int { get }
To
var kCMMPEG2VideoProfile_HDV_1080p30: Int32 { get }

Declaration
From
var kCMMPEG2VideoProfile_HDV_720p24: Int { get }
To
var kCMMPEG2VideoProfile_HDV_720p24: Int32 { get }

Declaration
From
var kCMMPEG2VideoProfile_HDV_720p25: Int { get }
To
var kCMMPEG2VideoProfile_HDV_720p25: Int32 { get }

Declaration
From
var kCMMPEG2VideoProfile_HDV_720p30: Int { get }
To
var kCMMPEG2VideoProfile_HDV_720p30: Int32 { get }

Declaration
From
var kCMMPEG2VideoProfile_HDV_720p50: Int { get }
To
var kCMMPEG2VideoProfile_HDV_720p50: Int32 { get }

Declaration
From
var kCMMPEG2VideoProfile_HDV_720p60: Int { get }
To
var kCMMPEG2VideoProfile_HDV_720p60: Int32 { get }

Declaration
From
var kCMMPEG2VideoProfile_XDCAM_EX_1080i50_VBR35: Int { get }
To
var kCMMPEG2VideoProfile_XDCAM_EX_1080i50_VBR35: Int32 { get }

Declaration
From
var kCMMPEG2VideoProfile_XDCAM_EX_1080i60_VBR35: Int { get }
To
var kCMMPEG2VideoProfile_XDCAM_EX_1080i60_VBR35: Int32 { get }

Declaration
From
var kCMMPEG2VideoProfile_XDCAM_EX_1080p24_VBR35: Int { get }
To
var kCMMPEG2VideoProfile_XDCAM_EX_1080p24_VBR35: Int32 { get }

Declaration
From
var kCMMPEG2VideoProfile_XDCAM_EX_1080p25_VBR35: Int { get }
To
var kCMMPEG2VideoProfile_XDCAM_EX_1080p25_VBR35: Int32 { get }

Declaration
From
var kCMMPEG2VideoProfile_XDCAM_EX_1080p30_VBR35: Int { get }
To
var kCMMPEG2VideoProfile_XDCAM_EX_1080p30_VBR35: Int32 { get }

Declaration
From
var kCMMPEG2VideoProfile_XDCAM_EX_720p24_VBR35: Int { get }
To
var kCMMPEG2VideoProfile_XDCAM_EX_720p24_VBR35: Int32 { get }

Declaration
From
var kCMMPEG2VideoProfile_XDCAM_EX_720p25_VBR35: Int { get }
To
var kCMMPEG2VideoProfile_XDCAM_EX_720p25_VBR35: Int32 { get }

Declaration
From
var kCMMPEG2VideoProfile_XDCAM_EX_720p30_VBR35: Int { get }
To
var kCMMPEG2VideoProfile_XDCAM_EX_720p30_VBR35: Int32 { get }

Declaration
From
var kCMMPEG2VideoProfile_XDCAM_EX_720p50_VBR35: Int { get }
To
var kCMMPEG2VideoProfile_XDCAM_EX_720p50_VBR35: Int32 { get }

Declaration
From
var kCMMPEG2VideoProfile_XDCAM_EX_720p60_VBR35: Int { get }
To
var kCMMPEG2VideoProfile_XDCAM_EX_720p60_VBR35: Int32 { get }

Declaration
From
var kCMMPEG2VideoProfile_XDCAM_HD422_1080i50_CBR50: Int { get }
To
var kCMMPEG2VideoProfile_XDCAM_HD422_1080i50_CBR50: Int32 { get }

Declaration
From
var kCMMPEG2VideoProfile_XDCAM_HD422_1080i60_CBR50: Int { get }
To
var kCMMPEG2VideoProfile_XDCAM_HD422_1080i60_CBR50: Int32 { get }

Declaration
From
var kCMMPEG2VideoProfile_XDCAM_HD422_1080p24_CBR50: Int { get }
To
var kCMMPEG2VideoProfile_XDCAM_HD422_1080p24_CBR50: Int32 { get }

Declaration
From
var kCMMPEG2VideoProfile_XDCAM_HD422_1080p25_CBR50: Int { get }
To
var kCMMPEG2VideoProfile_XDCAM_HD422_1080p25_CBR50: Int32 { get }

Declaration
From
var kCMMPEG2VideoProfile_XDCAM_HD422_1080p30_CBR50: Int { get }
To
var kCMMPEG2VideoProfile_XDCAM_HD422_1080p30_CBR50: Int32 { get }

Declaration
From
var kCMMPEG2VideoProfile_XDCAM_HD422_540p: Int { get }
To
var kCMMPEG2VideoProfile_XDCAM_HD422_540p: Int32 { get }

Declaration
From
var kCMMPEG2VideoProfile_XDCAM_HD422_720p24_CBR50: Int { get }
To
var kCMMPEG2VideoProfile_XDCAM_HD422_720p24_CBR50: Int32 { get }

Declaration
From
var kCMMPEG2VideoProfile_XDCAM_HD422_720p25_CBR50: Int { get }
To
var kCMMPEG2VideoProfile_XDCAM_HD422_720p25_CBR50: Int32 { get }

Declaration
From
var kCMMPEG2VideoProfile_XDCAM_HD422_720p30_CBR50: Int { get }
To
var kCMMPEG2VideoProfile_XDCAM_HD422_720p30_CBR50: Int32 { get }

Declaration
From
var kCMMPEG2VideoProfile_XDCAM_HD422_720p50_CBR50: Int { get }
To
var kCMMPEG2VideoProfile_XDCAM_HD422_720p50_CBR50: Int32 { get }

Declaration
From
var kCMMPEG2VideoProfile_XDCAM_HD422_720p60_CBR50: Int { get }
To
var kCMMPEG2VideoProfile_XDCAM_HD422_720p60_CBR50: Int32 { get }

Declaration
From
var kCMMPEG2VideoProfile_XDCAM_HD_1080i50_VBR35: Int { get }
To
var kCMMPEG2VideoProfile_XDCAM_HD_1080i50_VBR35: Int32 { get }

Declaration
From
var kCMMPEG2VideoProfile_XDCAM_HD_1080i60_VBR35: Int { get }
To
var kCMMPEG2VideoProfile_XDCAM_HD_1080i60_VBR35: Int32 { get }

Declaration
From
var kCMMPEG2VideoProfile_XDCAM_HD_1080p24_VBR35: Int { get }
To
var kCMMPEG2VideoProfile_XDCAM_HD_1080p24_VBR35: Int32 { get }

Declaration
From
var kCMMPEG2VideoProfile_XDCAM_HD_1080p25_VBR35: Int { get }
To
var kCMMPEG2VideoProfile_XDCAM_HD_1080p25_VBR35: Int32 { get }

Declaration
From
var kCMMPEG2VideoProfile_XDCAM_HD_1080p30_VBR35: Int { get }
To
var kCMMPEG2VideoProfile_XDCAM_HD_1080p30_VBR35: Int32 { get }

Declaration
From
var kCMMPEG2VideoProfile_XDCAM_HD_540p: Int { get }
To
var kCMMPEG2VideoProfile_XDCAM_HD_540p: Int32 { get }

Declaration
From
var kCMMPEG2VideoProfile_XF: Int { get }
To
var kCMMPEG2VideoProfile_XF: Int32 { get }

Declaration
From
var kCMMuxedStreamType_DV: Int { get }
To
var kCMMuxedStreamType_DV: CMMuxedStreamType { get }

Declaration
From
var kCMMuxedStreamType_MPEG1System: Int { get }
To
var kCMMuxedStreamType_MPEG1System: CMMuxedStreamType { get }

Declaration
From
var kCMMuxedStreamType_MPEG2Program: Int { get }
To
var kCMMuxedStreamType_MPEG2Program: CMMuxedStreamType { get }

Declaration
From
var kCMMuxedStreamType_MPEG2Transport: Int { get }
To
var kCMMuxedStreamType_MPEG2Transport: CMMuxedStreamType { get }

Declaration
From
var kCMPersistentTrackID_Invalid: Int { get }
To
var kCMPersistentTrackID_Invalid: CMPersistentTrackID { get }

Declaration
From
var kCMPixelFormat_16BE555: Int { get }
To
var kCMPixelFormat_16BE555: CMPixelFormatType { get }

Declaration
From
var kCMPixelFormat_16BE565: Int { get }
To
var kCMPixelFormat_16BE565: CMPixelFormatType { get }

Declaration
From
var kCMPixelFormat_16LE555: Int { get }
To
var kCMPixelFormat_16LE555: CMPixelFormatType { get }

Declaration
From
var kCMPixelFormat_16LE5551: Int { get }
To
var kCMPixelFormat_16LE5551: CMPixelFormatType { get }

Declaration
From
var kCMPixelFormat_16LE565: Int { get }
To
var kCMPixelFormat_16LE565: CMPixelFormatType { get }

Declaration
From
var kCMPixelFormat_24RGB: Int { get }
To
var kCMPixelFormat_24RGB: CMPixelFormatType { get }

Declaration
From
var kCMPixelFormat_32ARGB: Int { get }
To
var kCMPixelFormat_32ARGB: CMPixelFormatType { get }

Declaration
From
var kCMPixelFormat_32BGRA: Int { get }
To
var kCMPixelFormat_32BGRA: CMPixelFormatType { get }

Declaration
From
var kCMPixelFormat_422YpCbCr10: Int { get }
To
var kCMPixelFormat_422YpCbCr10: CMPixelFormatType { get }

Declaration
From
var kCMPixelFormat_422YpCbCr16: Int { get }
To
var kCMPixelFormat_422YpCbCr16: CMPixelFormatType { get }

Declaration
From
var kCMPixelFormat_422YpCbCr8: Int { get }
To
var kCMPixelFormat_422YpCbCr8: CMPixelFormatType { get }

Declaration
From
var kCMPixelFormat_422YpCbCr8_yuvs: Int { get }
To
var kCMPixelFormat_422YpCbCr8_yuvs: CMPixelFormatType { get }

Declaration
From
var kCMPixelFormat_4444YpCbCrA8: Int { get }
To
var kCMPixelFormat_4444YpCbCrA8: CMPixelFormatType { get }

Declaration
From
var kCMPixelFormat_444YpCbCr10: Int { get }
To
var kCMPixelFormat_444YpCbCr10: CMPixelFormatType { get }

Declaration
From
var kCMPixelFormat_444YpCbCr8: Int { get }
To
var kCMPixelFormat_444YpCbCr8: CMPixelFormatType { get }

Declaration
From
var kCMPixelFormat_8IndexedGray_WhiteIsZero: Int { get }
To
var kCMPixelFormat_8IndexedGray_WhiteIsZero: CMPixelFormatType { get }

Declaration
From
let kCMSampleAttachmentKey_DependsOnOthers: CFString!
To
let kCMSampleAttachmentKey_DependsOnOthers: CFString

Declaration
From
let kCMSampleAttachmentKey_DisplayImmediately: CFString!
To
let kCMSampleAttachmentKey_DisplayImmediately: CFString

Declaration
From
let kCMSampleAttachmentKey_DoNotDisplay: CFString!
To
let kCMSampleAttachmentKey_DoNotDisplay: CFString

Declaration
From
let kCMSampleAttachmentKey_EarlierDisplayTimesAllowed: CFString!
To
let kCMSampleAttachmentKey_EarlierDisplayTimesAllowed: CFString

Declaration
From
let kCMSampleAttachmentKey_HasRedundantCoding: CFString!
To
let kCMSampleAttachmentKey_HasRedundantCoding: CFString

Declaration
From
let kCMSampleAttachmentKey_IsDependedOnByOthers: CFString!
To
let kCMSampleAttachmentKey_IsDependedOnByOthers: CFString

Declaration
From
let kCMSampleAttachmentKey_NotSync: CFString!
To
let kCMSampleAttachmentKey_NotSync: CFString

Declaration
From
let kCMSampleAttachmentKey_PartialSync: CFString!
To
let kCMSampleAttachmentKey_PartialSync: CFString

Declaration
From
let kCMSampleBufferAttachmentKey_DisplayEmptyMediaImmediately: CFString!
To
let kCMSampleBufferAttachmentKey_DisplayEmptyMediaImmediately: CFString

Declaration
From
let kCMSampleBufferAttachmentKey_DrainAfterDecoding: CFString!
To
let kCMSampleBufferAttachmentKey_DrainAfterDecoding: CFString

Declaration
From
let kCMSampleBufferAttachmentKey_EmptyMedia: CFString!
To
let kCMSampleBufferAttachmentKey_EmptyMedia: CFString

Declaration
From
let kCMSampleBufferAttachmentKey_EndsPreviousSampleDuration: CFString!
To
let kCMSampleBufferAttachmentKey_EndsPreviousSampleDuration: CFString

Declaration
From
let kCMSampleBufferAttachmentKey_FillDiscontinuitiesWithSilence: CFString!
To
let kCMSampleBufferAttachmentKey_FillDiscontinuitiesWithSilence: CFString

Declaration
From
let kCMSampleBufferAttachmentKey_ForceKeyFrame: CFString!
To
let kCMSampleBufferAttachmentKey_ForceKeyFrame: CFString

Declaration
From
let kCMSampleBufferAttachmentKey_GradualDecoderRefresh: CFString!
To
let kCMSampleBufferAttachmentKey_GradualDecoderRefresh: CFString

Declaration
From
let kCMSampleBufferAttachmentKey_PermanentEmptyMedia: CFString!
To
let kCMSampleBufferAttachmentKey_PermanentEmptyMedia: CFString

Declaration
From
let kCMSampleBufferAttachmentKey_PostNotificationWhenConsumed: CFString!
To
let kCMSampleBufferAttachmentKey_PostNotificationWhenConsumed: CFString

Declaration
From
let kCMSampleBufferAttachmentKey_ResetDecoderBeforeDecoding: CFString!
To
let kCMSampleBufferAttachmentKey_ResetDecoderBeforeDecoding: CFString

Declaration
From
let kCMSampleBufferAttachmentKey_ResumeOutput: CFString!
To
let kCMSampleBufferAttachmentKey_ResumeOutput: CFString

Declaration
From
let kCMSampleBufferAttachmentKey_Reverse: CFString!
To
let kCMSampleBufferAttachmentKey_Reverse: CFString

Declaration
From
let kCMSampleBufferAttachmentKey_SampleReferenceByteOffset: CFString!
To
let kCMSampleBufferAttachmentKey_SampleReferenceByteOffset: CFString

Declaration
From
let kCMSampleBufferAttachmentKey_SampleReferenceURL: CFString!
To
let kCMSampleBufferAttachmentKey_SampleReferenceURL: CFString

Declaration
From
let kCMSampleBufferAttachmentKey_SpeedMultiplier: CFString!
To
let kCMSampleBufferAttachmentKey_SpeedMultiplier: CFString

Declaration
From
let kCMSampleBufferAttachmentKey_TransitionID: CFString!
To
let kCMSampleBufferAttachmentKey_TransitionID: CFString

Declaration
From
let kCMSampleBufferAttachmentKey_TrimDurationAtEnd: CFString!
To
let kCMSampleBufferAttachmentKey_TrimDurationAtEnd: CFString

Declaration
From
let kCMSampleBufferAttachmentKey_TrimDurationAtStart: CFString!
To
let kCMSampleBufferAttachmentKey_TrimDurationAtStart: CFString

Declaration
From
let kCMSampleBufferConduitNotification_InhibitOutputUntil: CFString!
To
let kCMSampleBufferConduitNotification_InhibitOutputUntil: CFString

Declaration
From
let kCMSampleBufferConduitNotification_ResetOutput: CFString!
To
let kCMSampleBufferConduitNotification_ResetOutput: CFString

Declaration
From
let kCMSampleBufferConduitNotification_UpcomingOutputPTSRangeChanged: CFString!
To
let kCMSampleBufferConduitNotification_UpcomingOutputPTSRangeChanged: CFString

Declaration
From
let kCMSampleBufferConduitNotificationParameter_MaxUpcomingOutputPTS: CFString!
To
let kCMSampleBufferConduitNotificationParameter_MaxUpcomingOutputPTS: CFString

Declaration
From
let kCMSampleBufferConduitNotificationParameter_MinUpcomingOutputPTS: CFString!
To
let kCMSampleBufferConduitNotificationParameter_MinUpcomingOutputPTS: CFString

Declaration
From
let kCMSampleBufferConduitNotificationParameter_ResumeTag: CFString!
To
let kCMSampleBufferConduitNotificationParameter_ResumeTag: CFString

Declaration
From
let kCMSampleBufferConduitNotificationParameter_UpcomingOutputPTSRangeMayOverlapQueuedOutputPTSRange: CFString!
To
let kCMSampleBufferConduitNotificationParameter_UpcomingOutputPTSRangeMayOverlapQueuedOutputPTSRange: CFString

Declaration
From
let kCMSampleBufferConsumerNotification_BufferConsumed: CFString!
To
let kCMSampleBufferConsumerNotification_BufferConsumed: CFString

Declaration
From
var kCMSampleBufferError_AllocationFailed: Int { get }
To
var kCMSampleBufferError_AllocationFailed: OSStatus { get }

Declaration
From
var kCMSampleBufferError_AlreadyHasDataBuffer: Int { get }
To
var kCMSampleBufferError_AlreadyHasDataBuffer: OSStatus { get }

Declaration
From
var kCMSampleBufferError_ArrayTooSmall: Int { get }
To
var kCMSampleBufferError_ArrayTooSmall: OSStatus { get }

Declaration
From
var kCMSampleBufferError_BufferHasNoSampleSizes: Int { get }
To
var kCMSampleBufferError_BufferHasNoSampleSizes: OSStatus { get }

Declaration
From
var kCMSampleBufferError_BufferHasNoSampleTimingInfo: Int { get }
To
var kCMSampleBufferError_BufferHasNoSampleTimingInfo: OSStatus { get }

Declaration
From
var kCMSampleBufferError_BufferNotReady: Int { get }
To
var kCMSampleBufferError_BufferNotReady: OSStatus { get }

Declaration
From
var kCMSampleBufferError_CannotSubdivide: Int { get }
To
var kCMSampleBufferError_CannotSubdivide: OSStatus { get }

Declaration
From
var kCMSampleBufferError_DataCanceled: Int { get }
To
var kCMSampleBufferError_DataCanceled: OSStatus { get }

Declaration
From
var kCMSampleBufferError_DataFailed: Int { get }
To
var kCMSampleBufferError_DataFailed: OSStatus { get }

Declaration
From
var kCMSampleBufferError_Invalidated: Int { get }
To
var kCMSampleBufferError_Invalidated: OSStatus { get }

Declaration
From
var kCMSampleBufferError_InvalidEntryCount: Int { get }
To
var kCMSampleBufferError_InvalidEntryCount: OSStatus { get }

Declaration
From
var kCMSampleBufferError_InvalidMediaFormat: Int { get }
To
var kCMSampleBufferError_InvalidMediaFormat: OSStatus { get }

Declaration
From
var kCMSampleBufferError_InvalidMediaTypeForOperation: Int { get }
To
var kCMSampleBufferError_InvalidMediaTypeForOperation: OSStatus { get }

Declaration
From
var kCMSampleBufferError_InvalidSampleData: Int { get }
To
var kCMSampleBufferError_InvalidSampleData: OSStatus { get }

Declaration
From
var kCMSampleBufferError_RequiredParameterMissing: Int { get }
To
var kCMSampleBufferError_RequiredParameterMissing: OSStatus { get }

Declaration
From
var kCMSampleBufferError_SampleIndexOutOfRange: Int { get }
To
var kCMSampleBufferError_SampleIndexOutOfRange: OSStatus { get }

Declaration
From
var kCMSampleBufferError_SampleTimingInfoInvalid: Int { get }
To
var kCMSampleBufferError_SampleTimingInfoInvalid: OSStatus { get }

Declaration
From
var kCMSampleBufferFlag_AudioBufferList_Assure16ByteAlignment: Int { get }
To
var kCMSampleBufferFlag_AudioBufferList_Assure16ByteAlignment: UInt32 { get }

Declaration
From
let kCMSampleBufferNotification_DataBecameReady: CFString!
To
let kCMSampleBufferNotification_DataBecameReady: CFString

Declaration
From
let kCMSampleBufferNotification_DataFailed: CFString!
To
let kCMSampleBufferNotification_DataFailed: CFString

Declaration
From
let kCMSampleBufferNotificationParameter_OSStatus: CFString!
To
let kCMSampleBufferNotificationParameter_OSStatus: CFString

Declaration
From
var kCMSimpleQueueError_AllocationFailed: Int { get }
To
var kCMSimpleQueueError_AllocationFailed: OSStatus { get }

Declaration
From
var kCMSimpleQueueError_ParameterOutOfRange: Int { get }
To
var kCMSimpleQueueError_ParameterOutOfRange: OSStatus { get }

Declaration
From
var kCMSimpleQueueError_QueueIsFull: Int { get }
To
var kCMSimpleQueueError_QueueIsFull: OSStatus { get }

Declaration
From
var kCMSimpleQueueError_RequiredParameterMissing: Int { get }
To
var kCMSimpleQueueError_RequiredParameterMissing: OSStatus { get }

Declaration
From
let kCMSoundDescriptionFlavor_3GPFamily: CFString!
To
let kCMSoundDescriptionFlavor_3GPFamily: CFString

Declaration
From
let kCMSoundDescriptionFlavor_ISOFamily: CFString!
To
let kCMSoundDescriptionFlavor_ISOFamily: CFString

Declaration
From
let kCMSoundDescriptionFlavor_QuickTimeMovie: CFString!
To
let kCMSoundDescriptionFlavor_QuickTimeMovie: CFString

Declaration
From
let kCMSoundDescriptionFlavor_QuickTimeMovieV2: CFString!
To
let kCMSoundDescriptionFlavor_QuickTimeMovieV2: CFString

Declaration
From
var kCMSubtitleFormatType_3GText: Int { get }
To
var kCMSubtitleFormatType_3GText: CMSubtitleFormatType { get }

Declaration
From
var kCMSubtitleFormatType_WebVTT: Int { get }
To
var kCMSubtitleFormatType_WebVTT: CMSubtitleFormatType { get }

Declaration
From
var kCMSyncError_AllocationFailed: Int { get }
To
var kCMSyncError_AllocationFailed: OSStatus { get }

Declaration
From
var kCMSyncError_InvalidParameter: Int { get }
To
var kCMSyncError_InvalidParameter: OSStatus { get }

Declaration
From
var kCMSyncError_MissingRequiredParameter: Int { get }
To
var kCMSyncError_MissingRequiredParameter: OSStatus { get }

Declaration
From
var kCMSyncError_RateMustBeNonZero: Int { get }
To
var kCMSyncError_RateMustBeNonZero: OSStatus { get }

Declaration
From
var kCMTextDisplayFlag_allSubtitlesForced: UInt32 { get }
To
var kCMTextDisplayFlag_allSubtitlesForced: CMTextDisplayFlags { get }

Declaration
From
var kCMTextDisplayFlag_continuousKaraoke: UInt32 { get }
To
var kCMTextDisplayFlag_continuousKaraoke: CMTextDisplayFlags { get }

Declaration
From
var kCMTextDisplayFlag_fillTextRegion: UInt32 { get }
To
var kCMTextDisplayFlag_fillTextRegion: CMTextDisplayFlags { get }

Declaration
From
var kCMTextDisplayFlag_forcedSubtitlesPresent: UInt32 { get }
To
var kCMTextDisplayFlag_forcedSubtitlesPresent: CMTextDisplayFlags { get }

Declaration
From
var kCMTextDisplayFlag_obeySubtitleFormatting: UInt32 { get }
To
var kCMTextDisplayFlag_obeySubtitleFormatting: CMTextDisplayFlags { get }

Declaration
From
var kCMTextDisplayFlag_scrollDirection_bottomToTop: UInt32 { get }
To
var kCMTextDisplayFlag_scrollDirection_bottomToTop: CMTextDisplayFlags { get }

Declaration
From
var kCMTextDisplayFlag_scrollDirection_leftToRight: UInt32 { get }
To
var kCMTextDisplayFlag_scrollDirection_leftToRight: CMTextDisplayFlags { get }

Declaration
From
var kCMTextDisplayFlag_scrollDirection_rightToLeft: UInt32 { get }
To
var kCMTextDisplayFlag_scrollDirection_rightToLeft: CMTextDisplayFlags { get }

Declaration
From
var kCMTextDisplayFlag_scrollDirection_topToBottom: UInt32 { get }
To
var kCMTextDisplayFlag_scrollDirection_topToBottom: CMTextDisplayFlags { get }

Declaration
From
var kCMTextDisplayFlag_scrollDirectionMask: UInt32 { get }
To
var kCMTextDisplayFlag_scrollDirectionMask: CMTextDisplayFlags { get }

Declaration
From
var kCMTextDisplayFlag_scrollIn: UInt32 { get }
To
var kCMTextDisplayFlag_scrollIn: CMTextDisplayFlags { get }

Declaration
From
var kCMTextDisplayFlag_scrollOut: UInt32 { get }
To
var kCMTextDisplayFlag_scrollOut: CMTextDisplayFlags { get }

Declaration
From
var kCMTextDisplayFlag_writeTextVertically: UInt32 { get }
To
var kCMTextDisplayFlag_writeTextVertically: CMTextDisplayFlags { get }

Declaration
From
let kCMTextFormatDescriptionColor_Alpha: CFString!
To
let kCMTextFormatDescriptionColor_Alpha: CFString

Declaration
From
let kCMTextFormatDescriptionColor_Blue: CFString!
To
let kCMTextFormatDescriptionColor_Blue: CFString

Declaration
From
let kCMTextFormatDescriptionColor_Green: CFString!
To
let kCMTextFormatDescriptionColor_Green: CFString

Declaration
From
let kCMTextFormatDescriptionColor_Red: CFString!
To
let kCMTextFormatDescriptionColor_Red: CFString

Declaration
From
let kCMTextFormatDescriptionExtension_BackgroundColor: CFString!
To
let kCMTextFormatDescriptionExtension_BackgroundColor: CFString

Declaration
From
let kCMTextFormatDescriptionExtension_DefaultFontName: CFString!
To
let kCMTextFormatDescriptionExtension_DefaultFontName: CFString

Declaration
From
let kCMTextFormatDescriptionExtension_DefaultStyle: CFString!
To
let kCMTextFormatDescriptionExtension_DefaultStyle: CFString

Declaration
From
let kCMTextFormatDescriptionExtension_DefaultTextBox: CFString!
To
let kCMTextFormatDescriptionExtension_DefaultTextBox: CFString

Declaration
From
let kCMTextFormatDescriptionExtension_DisplayFlags: CFString!
To
let kCMTextFormatDescriptionExtension_DisplayFlags: CFString

Declaration
From
let kCMTextFormatDescriptionExtension_FontTable: CFString!
To
let kCMTextFormatDescriptionExtension_FontTable: CFString

Declaration
From
let kCMTextFormatDescriptionExtension_HorizontalJustification: CFString!
To
let kCMTextFormatDescriptionExtension_HorizontalJustification: CFString

Declaration
From
let kCMTextFormatDescriptionExtension_TextJustification: CFString!
To
let kCMTextFormatDescriptionExtension_TextJustification: CFString

Declaration
From
let kCMTextFormatDescriptionExtension_VerticalJustification: CFString!
To
let kCMTextFormatDescriptionExtension_VerticalJustification: CFString

Declaration
From
let kCMTextFormatDescriptionRect_Bottom: CFString!
To
let kCMTextFormatDescriptionRect_Bottom: CFString

Declaration
From
let kCMTextFormatDescriptionRect_Left: CFString!
To
let kCMTextFormatDescriptionRect_Left: CFString

Declaration
From
let kCMTextFormatDescriptionRect_Right: CFString!
To
let kCMTextFormatDescriptionRect_Right: CFString

Declaration
From
let kCMTextFormatDescriptionRect_Top: CFString!
To
let kCMTextFormatDescriptionRect_Top: CFString

Declaration
From
let kCMTextFormatDescriptionStyle_Ascent: CFString!
To
let kCMTextFormatDescriptionStyle_Ascent: CFString

Declaration
From
let kCMTextFormatDescriptionStyle_EndChar: CFString!
To
let kCMTextFormatDescriptionStyle_EndChar: CFString

Declaration
From
let kCMTextFormatDescriptionStyle_Font: CFString!
To
let kCMTextFormatDescriptionStyle_Font: CFString

Declaration
From
let kCMTextFormatDescriptionStyle_FontFace: CFString!
To
let kCMTextFormatDescriptionStyle_FontFace: CFString

Declaration
From
let kCMTextFormatDescriptionStyle_FontSize: CFString!
To
let kCMTextFormatDescriptionStyle_FontSize: CFString

Declaration
From
let kCMTextFormatDescriptionStyle_ForegroundColor: CFString!
To
let kCMTextFormatDescriptionStyle_ForegroundColor: CFString

Declaration
From
let kCMTextFormatDescriptionStyle_Height: CFString!
To
let kCMTextFormatDescriptionStyle_Height: CFString

Declaration
From
let kCMTextFormatDescriptionStyle_StartChar: CFString!
To
let kCMTextFormatDescriptionStyle_StartChar: CFString

Declaration
From
var kCMTextFormatType_3GText: Int { get }
To
var kCMTextFormatType_3GText: CMTextFormatType { get }

Declaration
From
var kCMTextFormatType_QTText: Int { get }
To
var kCMTextFormatType_QTText: CMTextFormatType { get }

Declaration
From
var kCMTextJustification_bottom_right: Int { get }
To
var kCMTextJustification_bottom_right: CMTextJustificationValue { get }

Declaration
From
var kCMTextJustification_centered: Int { get }
To
var kCMTextJustification_centered: CMTextJustificationValue { get }

Declaration
From
var kCMTextJustification_left_top: Int { get }
To
var kCMTextJustification_left_top: CMTextJustificationValue { get }

Declaration
From
let kCMTextMarkupAlignmentType_End: CFString!
To
let kCMTextMarkupAlignmentType_End: CFString

Declaration
From
let kCMTextMarkupAlignmentType_Left: CFString!
To
let kCMTextMarkupAlignmentType_Left: CFString

Declaration
From
let kCMTextMarkupAlignmentType_Middle: CFString!
To
let kCMTextMarkupAlignmentType_Middle: CFString

Declaration
From
let kCMTextMarkupAlignmentType_Right: CFString!
To
let kCMTextMarkupAlignmentType_Right: CFString

Declaration
From
let kCMTextMarkupAlignmentType_Start: CFString!
To
let kCMTextMarkupAlignmentType_Start: CFString

Declaration
From
let kCMTextMarkupAttribute_Alignment: CFString!
To
let kCMTextMarkupAttribute_Alignment: CFString

Declaration
From
let kCMTextMarkupAttribute_BackgroundColorARGB: CFString!
To
let kCMTextMarkupAttribute_BackgroundColorARGB: CFString

Declaration
From
let kCMTextMarkupAttribute_BaseFontSizePercentageRelativeToVideoHeight: CFString!
To
let kCMTextMarkupAttribute_BaseFontSizePercentageRelativeToVideoHeight: CFString

Declaration
From
let kCMTextMarkupAttribute_BoldStyle: CFString!
To
let kCMTextMarkupAttribute_BoldStyle: CFString

Declaration
From
let kCMTextMarkupAttribute_CharacterBackgroundColorARGB: CFString!
To
let kCMTextMarkupAttribute_CharacterBackgroundColorARGB: CFString

Declaration
From
let kCMTextMarkupAttribute_CharacterEdgeStyle: CFString!
To
let kCMTextMarkupAttribute_CharacterEdgeStyle: CFString

Declaration
From
let kCMTextMarkupAttribute_FontFamilyName: CFString!
To
let kCMTextMarkupAttribute_FontFamilyName: CFString

Declaration
From
let kCMTextMarkupAttribute_ForegroundColorARGB: CFString!
To
let kCMTextMarkupAttribute_ForegroundColorARGB: CFString

Declaration
From
let kCMTextMarkupAttribute_GenericFontFamilyName: CFString!
To
let kCMTextMarkupAttribute_GenericFontFamilyName: CFString

Declaration
From
let kCMTextMarkupAttribute_ItalicStyle: CFString!
To
let kCMTextMarkupAttribute_ItalicStyle: CFString

Declaration
From
let kCMTextMarkupAttribute_OrthogonalLinePositionPercentageRelativeToWritingDirection: CFString!
To
let kCMTextMarkupAttribute_OrthogonalLinePositionPercentageRelativeToWritingDirection: CFString

Declaration
From
let kCMTextMarkupAttribute_RelativeFontSize: CFString!
To
let kCMTextMarkupAttribute_RelativeFontSize: CFString

Declaration
From
let kCMTextMarkupAttribute_TextPositionPercentageRelativeToWritingDirection: CFString!
To
let kCMTextMarkupAttribute_TextPositionPercentageRelativeToWritingDirection: CFString

Declaration
From
let kCMTextMarkupAttribute_UnderlineStyle: CFString!
To
let kCMTextMarkupAttribute_UnderlineStyle: CFString

Declaration
From
let kCMTextMarkupAttribute_VerticalLayout: CFString!
To
let kCMTextMarkupAttribute_VerticalLayout: CFString

Declaration
From
let kCMTextMarkupAttribute_WritingDirectionSizePercentage: CFString!
To
let kCMTextMarkupAttribute_WritingDirectionSizePercentage: CFString

Declaration
From
let kCMTextMarkupCharacterEdgeStyle_Depressed: CFString!
To
let kCMTextMarkupCharacterEdgeStyle_Depressed: CFString

Declaration
From
let kCMTextMarkupCharacterEdgeStyle_DropShadow: CFString!
To
let kCMTextMarkupCharacterEdgeStyle_DropShadow: CFString

Declaration
From
let kCMTextMarkupCharacterEdgeStyle_None: CFString!
To
let kCMTextMarkupCharacterEdgeStyle_None: CFString

Declaration
From
let kCMTextMarkupCharacterEdgeStyle_Raised: CFString!
To
let kCMTextMarkupCharacterEdgeStyle_Raised: CFString

Declaration
From
let kCMTextMarkupCharacterEdgeStyle_Uniform: CFString!
To
let kCMTextMarkupCharacterEdgeStyle_Uniform: CFString

Declaration
From
let kCMTextMarkupGenericFontName_Casual: CFString!
To
let kCMTextMarkupGenericFontName_Casual: CFString

Declaration
From
let kCMTextMarkupGenericFontName_Cursive: CFString!
To
let kCMTextMarkupGenericFontName_Cursive: CFString

Declaration
From
let kCMTextMarkupGenericFontName_Default: CFString!
To
let kCMTextMarkupGenericFontName_Default: CFString

Declaration
From
let kCMTextMarkupGenericFontName_Fantasy: CFString!
To
let kCMTextMarkupGenericFontName_Fantasy: CFString

Declaration
From
let kCMTextMarkupGenericFontName_Monospace: CFString!
To
let kCMTextMarkupGenericFontName_Monospace: CFString

Declaration
From
let kCMTextMarkupGenericFontName_MonospaceSansSerif: CFString!
To
let kCMTextMarkupGenericFontName_MonospaceSansSerif: CFString

Declaration
From
let kCMTextMarkupGenericFontName_MonospaceSerif: CFString!
To
let kCMTextMarkupGenericFontName_MonospaceSerif: CFString

Declaration
From
let kCMTextMarkupGenericFontName_ProportionalSansSerif: CFString!
To
let kCMTextMarkupGenericFontName_ProportionalSansSerif: CFString

Declaration
From
let kCMTextMarkupGenericFontName_ProportionalSerif: CFString!
To
let kCMTextMarkupGenericFontName_ProportionalSerif: CFString

Declaration
From
let kCMTextMarkupGenericFontName_SansSerif: CFString!
To
let kCMTextMarkupGenericFontName_SansSerif: CFString

Declaration
From
let kCMTextMarkupGenericFontName_Serif: CFString!
To
let kCMTextMarkupGenericFontName_Serif: CFString

Declaration
From
let kCMTextMarkupGenericFontName_SmallCapital: CFString!
To
let kCMTextMarkupGenericFontName_SmallCapital: CFString

Declaration
From
let kCMTextVerticalLayout_LeftToRight: CFString!
To
let kCMTextVerticalLayout_LeftToRight: CFString

Declaration
From
let kCMTextVerticalLayout_RightToLeft: CFString!
To
let kCMTextVerticalLayout_RightToLeft: CFString

Declaration
From
var kCMTimebaseError_AllocationFailed: Int { get }
To
var kCMTimebaseError_AllocationFailed: OSStatus { get }

Declaration
From
var kCMTimebaseError_InvalidParameter: Int { get }
To
var kCMTimebaseError_InvalidParameter: OSStatus { get }

Declaration
From
var kCMTimebaseError_MissingRequiredParameter: Int { get }
To
var kCMTimebaseError_MissingRequiredParameter: OSStatus { get }

Declaration
From
var kCMTimebaseError_ReadOnly: Int { get }
To
var kCMTimebaseError_ReadOnly: OSStatus { get }

Declaration
From
var kCMTimebaseError_TimerIntervalTooShort: Int { get }
To
var kCMTimebaseError_TimerIntervalTooShort: OSStatus { get }

Declaration
From
let kCMTimebaseNotification_EffectiveRateChanged: CFString!
To
let kCMTimebaseNotification_EffectiveRateChanged: CFString

Declaration
From
let kCMTimebaseNotification_TimeJumped: CFString!
To
let kCMTimebaseNotification_TimeJumped: CFString

Declaration
From
let kCMTimebaseNotificationKey_EventTime: CFString!
To
let kCMTimebaseNotificationKey_EventTime: CFString

Declaration
From
var kCMTimeCodeFlag_24HourMax: Int { get }
To
var kCMTimeCodeFlag_24HourMax: UInt32 { get }

Declaration
From
var kCMTimeCodeFlag_DropFrame: Int { get }
To
var kCMTimeCodeFlag_DropFrame: UInt32 { get }

Declaration
From
var kCMTimeCodeFlag_NegTimesOK: Int { get }
To
var kCMTimeCodeFlag_NegTimesOK: UInt32 { get }

Declaration
From
let kCMTimeCodeFormatDescriptionExtension_SourceReferenceName: CFString!
To
let kCMTimeCodeFormatDescriptionExtension_SourceReferenceName: CFString

Declaration
From
let kCMTimeCodeFormatDescriptionKey_LangCode: CFString!
To
let kCMTimeCodeFormatDescriptionKey_LangCode: CFString

Declaration
From
let kCMTimeCodeFormatDescriptionKey_Value: CFString!
To
let kCMTimeCodeFormatDescriptionKey_Value: CFString

Declaration
From
var kCMTimeCodeFormatType_Counter32: Int { get }
To
var kCMTimeCodeFormatType_Counter32: CMTimeCodeFormatType { get }

Declaration
From
var kCMTimeCodeFormatType_Counter64: Int { get }
To
var kCMTimeCodeFormatType_Counter64: CMTimeCodeFormatType { get }

Declaration
From
var kCMTimeCodeFormatType_TimeCode32: Int { get }
To
var kCMTimeCodeFormatType_TimeCode32: CMTimeCodeFormatType { get }

Declaration
From
var kCMTimeCodeFormatType_TimeCode64: Int { get }
To
var kCMTimeCodeFormatType_TimeCode64: CMTimeCodeFormatType { get }

Declaration
From
let kCMTimeEpochKey: CFString!
To
let kCMTimeEpochKey: CFString

Declaration
From
let kCMTimeFlagsKey: CFString!
To
let kCMTimeFlagsKey: CFString

Declaration
From
let kCMTimeRangeDurationKey: CFString!
To
let kCMTimeRangeDurationKey: CFString

Declaration
From
let kCMTimeRangeStartKey: CFString!
To
let kCMTimeRangeStartKey: CFString

Declaration
From
let kCMTimeScaleKey: CFString!
To
let kCMTimeScaleKey: CFString

Declaration
From
let kCMTimeValueKey: CFString!
To
let kCMTimeValueKey: CFString

Declaration
From
var kCMVideoCodecType_422YpCbCr8: Int { get }
To
var kCMVideoCodecType_422YpCbCr8: CMVideoCodecType { get }

Declaration
From
var kCMVideoCodecType_Animation: Int { get }
To
var kCMVideoCodecType_Animation: CMVideoCodecType { get }

Declaration
From
var kCMVideoCodecType_AppleProRes422: Int { get }
To
var kCMVideoCodecType_AppleProRes422: CMVideoCodecType { get }

Declaration
From
var kCMVideoCodecType_AppleProRes422HQ: Int { get }
To
var kCMVideoCodecType_AppleProRes422HQ: CMVideoCodecType { get }

Declaration
From
var kCMVideoCodecType_AppleProRes422LT: Int { get }
To
var kCMVideoCodecType_AppleProRes422LT: CMVideoCodecType { get }

Declaration
From
var kCMVideoCodecType_AppleProRes422Proxy: Int { get }
To
var kCMVideoCodecType_AppleProRes422Proxy: CMVideoCodecType { get }

Declaration
From
var kCMVideoCodecType_AppleProRes4444: Int { get }
To
var kCMVideoCodecType_AppleProRes4444: CMVideoCodecType { get }

Declaration
From
var kCMVideoCodecType_Cinepak: Int { get }
To
var kCMVideoCodecType_Cinepak: CMVideoCodecType { get }

Declaration
From
var kCMVideoCodecType_DVCNTSC: Int { get }
To
var kCMVideoCodecType_DVCNTSC: CMVideoCodecType { get }

Declaration
From
var kCMVideoCodecType_DVCPAL: Int { get }
To
var kCMVideoCodecType_DVCPAL: CMVideoCodecType { get }

Declaration
From
var kCMVideoCodecType_DVCPro50NTSC: Int { get }
To
var kCMVideoCodecType_DVCPro50NTSC: CMVideoCodecType { get }

Declaration
From
var kCMVideoCodecType_DVCPro50PAL: Int { get }
To
var kCMVideoCodecType_DVCPro50PAL: CMVideoCodecType { get }

Declaration
From
var kCMVideoCodecType_DVCPROHD1080i50: Int { get }
To
var kCMVideoCodecType_DVCPROHD1080i50: CMVideoCodecType { get }

Declaration
From
var kCMVideoCodecType_DVCPROHD1080i60: Int { get }
To
var kCMVideoCodecType_DVCPROHD1080i60: CMVideoCodecType { get }

Declaration
From
var kCMVideoCodecType_DVCPROHD1080p25: Int { get }
To
var kCMVideoCodecType_DVCPROHD1080p25: CMVideoCodecType { get }

Declaration
From
var kCMVideoCodecType_DVCPROHD1080p30: Int { get }
To
var kCMVideoCodecType_DVCPROHD1080p30: CMVideoCodecType { get }

Declaration
From
var kCMVideoCodecType_DVCPROHD720p50: Int { get }
To
var kCMVideoCodecType_DVCPROHD720p50: CMVideoCodecType { get }

Declaration
From
var kCMVideoCodecType_DVCPROHD720p60: Int { get }
To
var kCMVideoCodecType_DVCPROHD720p60: CMVideoCodecType { get }

Declaration
From
var kCMVideoCodecType_DVCProPAL: Int { get }
To
var kCMVideoCodecType_DVCProPAL: CMVideoCodecType { get }

Declaration
From
var kCMVideoCodecType_H263: Int { get }
To
var kCMVideoCodecType_H263: CMVideoCodecType { get }

Declaration
From
var kCMVideoCodecType_H264: Int { get }
To
var kCMVideoCodecType_H264: CMVideoCodecType { get }

Declaration
From
var kCMVideoCodecType_JPEG: Int { get }
To
var kCMVideoCodecType_JPEG: CMVideoCodecType { get }

Declaration
From
var kCMVideoCodecType_JPEG_OpenDML: Int { get }
To
var kCMVideoCodecType_JPEG_OpenDML: CMVideoCodecType { get }

Declaration
From
var kCMVideoCodecType_MPEG1Video: Int { get }
To
var kCMVideoCodecType_MPEG1Video: CMVideoCodecType { get }

Declaration
From
var kCMVideoCodecType_MPEG2Video: Int { get }
To
var kCMVideoCodecType_MPEG2Video: CMVideoCodecType { get }

Declaration
From
var kCMVideoCodecType_MPEG4Video: Int { get }
To
var kCMVideoCodecType_MPEG4Video: CMVideoCodecType { get }

Declaration
From
var kCMVideoCodecType_SorensonVideo: Int { get }
To
var kCMVideoCodecType_SorensonVideo: CMVideoCodecType { get }

Declaration
From
var kCMVideoCodecType_SorensonVideo3: Int { get }
To
var kCMVideoCodecType_SorensonVideo3: CMVideoCodecType { get }