DecklinkBase.cpp 426 B

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