Files
UnrealEngine/Engine/Extras/VirtualProduction/LiveLinkVCAM/vcam/VideoDecoder.swift
2025-05-18 13:04:45 +08: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)
}