mirror of https://github.com/oxen-io/session-ios
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
664 B
Swift
15 lines
664 B
Swift
import WebRTC
|
|
|
|
extension CallVCV2 : CameraManagerDelegate {
|
|
|
|
func handleVideoOutputCaptured(sampleBuffer: CMSampleBuffer) {
|
|
guard let pixelBuffer = CMSampleBufferGetImageBuffer(sampleBuffer) else { return }
|
|
let rtcPixelBuffer = RTCCVPixelBuffer(pixelBuffer: pixelBuffer)
|
|
let timestamp = CMTimeGetSeconds(CMSampleBufferGetPresentationTimeStamp(sampleBuffer))
|
|
let timestampNs = Int64(timestamp * 1000000000)
|
|
let frame = RTCVideoFrame(buffer: rtcPixelBuffer, rotation: RTCVideoRotation._0, timeStampNs: timestampNs)
|
|
frame.timeStamp = Int32(timestamp)
|
|
callManager.handleLocalFrameCaptured(frame)
|
|
}
|
|
}
|