gpt4 book ai didi

ios - CMVideoFormatDescriptionGetCleanAperture() 快速错误

转载 作者:行者123 更新时间:2023-11-28 09:28:54 24 4
gpt4 key购买 nike

我无法使用 CMVideoFormatDescriptionGetCleanAperture() 函数。使用

var videoDescriptionRef = port.formatDescription as CMVideoFormatDescriptionRef
var cleanAperture = CMVideoFormatDescriptionGetCleanAperture(videoDescriptionRef, true)

var cleanAperture = CMVideoFormatDescriptionGetCleanAperture(port.formatDescription, true)

分别给我以下错误:

Cannot convert expression's type 'CMVideoFormatDescriptionRef' to type 'CMVideoFormatDescriptionRef'

第二个是

Could not find an overlad for '__conversion' that accepts the supplied arguments

有谁知道如何解决这些问题,或者谁能指出在获取用于检索干净孔径的格式描述时有任何错误吗?

最佳答案

CMFormatDescription本身没有成员(member)takeUnretainedValue .它是Unmanaged<T>的成员.您需要先定义一个非托管变量,为其赋值,然后保留它。

因为我不知道你是怎么创建的port.formatDescription ,这是一个例子,其中 formatDescription从 AVC 视频的 PPS/SPS 创建。

// create the receiving unmanaged variable
var formatDescription: Unmanaged<CMVideoFormatDescription>?

// call the not annotated method, this method will fill in formatDescription which is Unmanaged<T>
let result = CMVideoFormatDescriptionCreateFromH264ParameterSets(nil, UInt(parameterSets.count), parameterSets, parameterSetSizes, 4, &formatDescription)

// check result, yada yada yada before continuing

// now we can actually retain the value
let formatDescriptionRef = formatDescription!.takeUnretainedValue() as CMVideoFormatDescriptionRef

// and we can do what ever we want with it in Swift without caring anymore.
var cleanAperture = CMVideoFormatDescriptionGetCleanAperture(formatDescriptionRef, 1)
  1. 创建非托管类型
  2. 在未注释的方法中使用此非托管类型
  3. 保留值(value)
  4. 使用它而不用考虑你是如何创建它的。

因此请在创建 port.formatDescription 的位置调整代码作为一个 Unmanaged,你应该是个好人。

关于ios - CMVideoFormatDescriptionGetCleanAperture() 快速错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24395265/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com