Create a CMSampleBuffer from a CVPixelBuffer

爱⌒轻易说出口 提交于 2019-12-01 04:53:33

问题


I get a CVPixelBuffer from ARSessionDelegate:

func session(_ session: ARSession, didUpdate frame: ARFrame) {
    frame.capturedImage // CVPixelBufferRef
}

But another part of my app (that I can't change) uses a CMSampleBuffer.

CMSampleBuffer is a container of CVPixelBuffer.

In order to create a CMSampleBuffer I can use this function:

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

The only missing parameter for me is sampleTiming - how can I extract that from CVPixelBuffer?


回答1:


The sampleTiming mainly contains the presentationTimeStamp, You can easy create it by following codes:

let scale = CMTimeScale(NSEC_PER_SEC)
let pts = CMTime(value: CMTimeValue(frame.timestamp * Double(scale)),
                 timescale: scale)
var timingInfo = CMSampleTimingInfo(duration: kCMTimeInvalid,
                                    presentationTimeStamp: pts,
                                    decodeTimeStamp: kCMTimeInvalid)


来源:https://stackoverflow.com/questions/47993457/create-a-cmsamplebuffer-from-a-cvpixelbuffer

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!