DecklinkBase.cpp 417 B

123456789101112131415161718
  1. #include "DecklinkBase.h"
  2. DecklinkBase::DecklinkBase(DeckLinkDeviceDiscovery *discovery_) : discovery(discovery_) {}
  3. DeckLinkDevice *DecklinkBase::GetDevice() const
  4. {
  5. return instance ? instance->GetDevice() : nullptr;
  6. }
  7. bool DecklinkBase::Activate(DeckLinkDevice *, long long)
  8. {
  9. return false;
  10. }
  11. bool DecklinkBase::Activate(DeckLinkDevice *, long long, BMDVideoConnection, BMDAudioConnection)
  12. {
  13. return false;
  14. }