Files
UnrealEngine/Engine/Plugins/Media/PixelStreaming2/Source/PixelStreaming2Input/Internal/DefaultDataProtocol.h
2025-05-18 13:04:45 +08:00

21 lines
551 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Templates/SharedPointer.h"
#include "IPixelStreaming2DataProtocol.h"
namespace UE::PixelStreaming2Input
{
/**
* @return The default "ToStreamer" data protocol.
*/
PIXELSTREAMING2INPUT_API TSharedPtr<IPixelStreaming2DataProtocol> GetDefaultToStreamerProtocol();
/**
* @return The default "FromStreamer" data protocol.
*/
PIXELSTREAMING2INPUT_API TSharedPtr<IPixelStreaming2DataProtocol> GetDefaultFromStreamerProtocol();
} // namespace UE::PixelStreaming2Input