作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我无法使用 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)
因此请在创建 port.formatDescription
的位置调整代码作为一个 Unmanaged,你应该是个好人。
关于ios - CMVideoFormatDescriptionGetCleanAperture() 快速错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24395265/
我无法使用 CMVideoFormatDescriptionGetCleanAperture() 函数。使用 var videoDescriptionRef = port.formatDescript
let fdesc : CMFormatDescriptionRef = CMSampleBufferGetFormatDescription(sampleBuffer)! let clap : C
我是一名优秀的程序员,十分优秀!