23 lines
541 B
C
23 lines
541 B
C
|
|
// ------------------------------------------------
|
||
|
|
// Copyright Joe Marshall 2024- All Rights Reserved
|
||
|
|
// ------------------------------------------------
|
||
|
|
//
|
||
|
|
// AndroidVulkanVideo module implementation
|
||
|
|
// ------------------------------------------------
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "Modules/ModuleManager.h"
|
||
|
|
|
||
|
|
#include"IMediaPlayer.h"
|
||
|
|
#include"IMediaEventSink.h"
|
||
|
|
|
||
|
|
class IAndroidVulkanVideoModule : public IModuleInterface
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
|
||
|
|
virtual TSharedPtr<IMediaPlayer, ESPMode::ThreadSafe> CreatePlayer(IMediaEventSink& EventSink)=0;
|
||
|
|
|
||
|
|
private:
|
||
|
|
};
|