2018-09-25 15:51:32 -07:00
|
|
|
#include "DecklinkBase.h"
|
|
|
|
|
|
|
|
DecklinkBase::DecklinkBase(DeckLinkDeviceDiscovery *discovery_)
|
2019-06-22 22:13:45 -07:00
|
|
|
: discovery(discovery_)
|
2018-09-25 15:51:32 -07:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
DeckLinkDevice *DecklinkBase::GetDevice() const
|
|
|
|
{
|
|
|
|
return instance ? instance->GetDevice() : nullptr;
|
|
|
|
}
|
|
|
|
|
2019-06-22 22:13:45 -07:00
|
|
|
bool DecklinkBase::Activate(DeckLinkDevice *, long long)
|
2018-09-25 15:51:32 -07:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-08-05 14:14:47 -07:00
|
|
|
bool DecklinkBase::Activate(DeckLinkDevice *, long long, BMDVideoConnection,
|
|
|
|
BMDAudioConnection)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|