解码 H264:VTDecompressionSessionCreate 失败,错误代码为 -12910 (kVTVideoDecoderUnsupportedDataFormatErr)

Decoding H264: VTDecompressionSessionCreate fails with error code -12910 (kVTVideoDecoderUnsupportedDataFormatErr)

我在 iPad、 上使用 VTDecompressionSessionCreate 时遇到错误 -12910 (kVTVideoDecoderUnsupportedDataFormatErr),但在 sim 上却没有。我正在使用 Avios (https://github.com/tidwall/Avios),这是相关部分:

private func initVideoSession() throws {
    formatDescription = nil
    var _formatDescription : CMFormatDescription?
    let parameterSetPointers : [UnsafePointer<UInt8>] = [ pps!.buffer.baseAddress, sps!.buffer.baseAddress ]
    let parameterSetSizes : [Int] = [ pps!.buffer.count, sps!.buffer.count ]
    var status = CMVideoFormatDescriptionCreateFromH264ParameterSets(kCFAllocatorDefault, 2, parameterSetPointers, parameterSetSizes, 4, &_formatDescription);
    if status != noErr {
        throw H264Error.CMVideoFormatDescriptionCreateFromH264ParameterSets(status)
    }
    formatDescription = _formatDescription!

    if videoSession != nil {
        VTDecompressionSessionInvalidate(videoSession)
        videoSession = nil
    }
    var videoSessionM : VTDecompressionSession?

    let decoderParameters = NSMutableDictionary()
    let destinationPixelBufferAttributes = NSMutableDictionary()
    destinationPixelBufferAttributes.setValue(NSNumber(unsignedInt: kCVPixelFormatType_32BGRA), forKey: kCVPixelBufferPixelFormatTypeKey as String)

    var outputCallback = VTDecompressionOutputCallbackRecord()
    outputCallback.decompressionOutputCallback = callback
    outputCallback.decompressionOutputRefCon = UnsafeMutablePointer<Void>(unsafeAddressOf(self))

    status = VTDecompressionSessionCreate(nil, formatDescription, decoderParameters, destinationPixelBufferAttributes, &outputCallback, &videoSessionM)
    if status != noErr {
        throw H264Error.VTDecompressionSessionCreate(status)
    }
    self.videoSession = videoSessionM;
}

这里 ppssps 是包含 PPS 和 SPS 帧的缓冲区。

如上所述,奇怪的是它在模拟器上完全可以正常工作,但在实际设备上却不行。两者都在 iOS 9.3 上,我正在模拟与设备相同的硬​​件。

什么可能导致此错误?

而且,更一般地说,我可以在哪里找到 VideoToolbox 的 API 参考和错误文档?在 Apple 的网站上确实找不到任何相关内容。

答案是流分辨率大于 1920x1080,这是 iPad 支持的最大值。这与支持超出该分辨率的模拟器有明显区别(也许它只是使用 Mac VideoToolbox 库而不是模拟 iOS 库)。

将流减少到小于 1080p 的像素数解决了问题。

这是一位 Apple 员工的回复,为我指明了正确的方向:https://forums.developer.apple.com/thread/11637

至于正确的 VideoToolbox 参考 - 仍然没有任何有价值的东西存在,这是一个巨大的缺点。有人想知道教程编写者最初是如何获得他们的信息的。

编辑: iOS 10 现在似乎支持大于 1080p 的流。