2015-02-18 15:15:38 -08:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "decklink.hpp"
|
|
|
|
#include "decklink-device-mode.hpp"
|
|
|
|
|
|
|
|
#include <map>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
class DeckLinkDevice {
|
|
|
|
ComPtr<IDeckLink> device;
|
|
|
|
std::map<long long, DeckLinkDeviceMode *> modeIdMap;
|
|
|
|
std::vector<DeckLinkDeviceMode *> modes;
|
|
|
|
std::string name;
|
|
|
|
std::string displayName;
|
|
|
|
std::string hash;
|
2017-03-30 21:03:38 -07:00
|
|
|
int32_t maxChannel;
|
2015-02-18 15:15:38 -08:00
|
|
|
volatile long refCount = 1;
|
|
|
|
|
|
|
|
public:
|
|
|
|
DeckLinkDevice(IDeckLink *device);
|
|
|
|
~DeckLinkDevice(void);
|
|
|
|
|
|
|
|
ULONG AddRef(void);
|
|
|
|
ULONG Release(void);
|
|
|
|
|
|
|
|
bool Init();
|
|
|
|
|
|
|
|
DeckLinkDeviceMode *FindMode(long long id);
|
|
|
|
const std::string& GetDisplayName(void);
|
|
|
|
const std::string& GetHash(void) const;
|
|
|
|
const std::vector<DeckLinkDeviceMode *>& GetModes(void) const;
|
|
|
|
const std::string& GetName(void) const;
|
2017-05-10 12:55:02 -07:00
|
|
|
int32_t GetMaxChannel(void) const;
|
2015-02-18 15:15:38 -08:00
|
|
|
|
|
|
|
bool GetInput(IDeckLinkInput **input);
|
|
|
|
|
|
|
|
inline bool IsDevice(IDeckLink *device_)
|
|
|
|
{
|
|
|
|
return device_ == device;
|
|
|
|
}
|
|
|
|
};
|