1
0
mirror of https://github.com/obsproject/obs-studio.git synced 2026-04-11 22:22:49 +02:00
Files
obs-studio-streamer/plugins/decklink/DecklinkBase.cpp
2024-10-04 18:19:27 -04:00

19 lines
417 B
C++

#include "DecklinkBase.h"
DecklinkBase::DecklinkBase(DeckLinkDeviceDiscovery *discovery_) : discovery(discovery_) {}
DeckLinkDevice *DecklinkBase::GetDevice() const
{
return instance ? instance->GetDevice() : nullptr;
}
bool DecklinkBase::Activate(DeckLinkDevice *, long long)
{
return false;
}
bool DecklinkBase::Activate(DeckLinkDevice *, long long, BMDVideoConnection, BMDAudioConnection)
{
return false;
}