yolobs-studio/plugins/decklink/DecklinkBase.cpp

23 lines
426 B
C++
Raw Normal View History

2019-07-27 12:47:10 +00:00
#include "DecklinkBase.h"
DecklinkBase::DecklinkBase(DeckLinkDeviceDiscovery *discovery_)
2019-09-22 21:19:10 +00:00
: discovery(discovery_)
2019-07-27 12:47:10 +00:00
{
}
DeckLinkDevice *DecklinkBase::GetDevice() const
{
return instance ? instance->GetDevice() : nullptr;
}
2019-09-22 21:19:10 +00:00
bool DecklinkBase::Activate(DeckLinkDevice *, long long)
2019-07-27 12:47:10 +00:00
{
return false;
}
2020-10-01 20:15:25 +00:00
bool DecklinkBase::Activate(DeckLinkDevice *, long long, BMDVideoConnection,
BMDAudioConnection)
{
return false;
}