20 lines
339 B
C++
20 lines
339 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;
|
|
}
|
|
|
|
void DecklinkBase::Deactivate()
|
|
{
|
|
}
|