Files
UnrealEngine/Engine/Extras/VirtualProduction/LiveLinkVCAM/vcam/VideoDecoder.swift
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

17 lines
337 B
Swift

//
// VideoDecoder.swift
// vcam
//
// Created by Brian Smith on 8/8/20.
// Copyright Epic Games, Inc. All Rights Reserved.
//
import Foundation
import CoreVideo
protocol VideoDecoder : AnyObject {
func decode(width : Int32, height : Int32, data: Data, _ completion: @escaping (_ pixelBuffer : CVPixelBuffer?) -> Void)
}