Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Create a CMSampleBuffer from a CVPixelBuffer

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?

like image 752
Shai Balassiano Avatar asked Dec 27 '17 13:12

Shai Balassiano


1 Answers

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)
like image 175
Reeonce Zeng Avatar answered Nov 15 '22 19:11

Reeonce Zeng