0
0
mirror of https://github.com/obsproject/obs-studio.git synced 2024-09-20 21:13:04 +02:00
obs-studio/plugins/decklink/decklink-device-mode.hpp
Skyler Lipthay 4225fa8eee decklink: Add Blackmagic DeckLink capture plugin
This is a cross-platform Blackmagic device capture plugin that makes use
of the manufacturer provided DeckLink SDK.
2015-03-21 16:40:05 -07:00

22 lines
466 B
C++

#pragma once
#include "platform.hpp"
#include <string>
class DeckLinkDeviceMode {
protected:
long long id;
IDeckLinkDisplayMode *mode;
std::string name;
public:
DeckLinkDeviceMode(IDeckLinkDisplayMode *mode, long long id);
DeckLinkDeviceMode(const std::string& name, long long id);
virtual ~DeckLinkDeviceMode(void);
BMDDisplayMode GetDisplayMode(void) const;
long long GetId(void) const;
const std::string& GetName(void) const;
};