首页 > 解决方案 > 如何创建 CMVideoFormatDescription 对象

问题描述

我从 ARSessionDelegate 得到一个 CVPixelBuffer。

我的应用程序还有一个不可更改的部分,我需要一个 CMSampleBuffer 对象。所以我试图从 CVPixelBuffer 中创建一个 CMSampleBuffer。

我正在使用这种方法来创建 CMSampleBuffer:

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

这个函数有 5 个参数:

  1. CFAllocator - 我相信这不是必需的。
  2. imageBuffer - 这是 CVPixelBuffer。
  3. CMVideoFormatDescription -我如何正确创建它?
  4. sampleTiming:我可以弄清楚如何使用这个答案来创建它。
  5. sBufOut - 只是一个指向我要创建的 CMSampleBuffer 对象的指针。

这是我创建 CMVideoFormatDescription 的尝试:

    let w = CVPixelBufferGetWidth(pixelBuffer)
    let h = CVPixelBufferGetHeight(pixelBuffer)
    var format: CMVideoFormatDescription?
    CMVideoFormatDescriptionCreate(nil, kCMVideoCodecType_HEVC, Int32(w), Int32(h), nil, &format)

我很确定我不应该硬编码,kCMVideoCodecType_HEVC但我不确定如何确定编解码器类型。

标签: swiftavfoundationcore-video

解决方案


用于CMVideoFormatDescriptionCreateForImageBuffer直接从 CVPixelBuffer(它是一个 CVImageBuffer)创建格式描述。


推荐阅读