decklink: Fix mingw compiler warnings

master
jp9000 2015-07-11 14:22:14 -07:00
parent aa0e64b7c9
commit 845a9d2f1a
2 changed files with 5 additions and 0 deletions

View File

@ -19,6 +19,10 @@ DeckLinkDeviceInstance::DeckLinkDeviceInstance(DeckLink *decklink_,
currentPacket.format = AUDIO_FORMAT_16BIT;
}
DeckLinkDeviceInstance::~DeckLinkDeviceInstance()
{
}
void DeckLinkDeviceInstance::HandleAudioPacket(
IDeckLinkAudioInputPacket *audioPacket,
const uint64_t timestamp)

View File

@ -19,6 +19,7 @@ protected:
public:
DeckLinkDeviceInstance(DeckLink *decklink, DeckLinkDevice *device);
virtual ~DeckLinkDeviceInstance();
inline DeckLinkDevice *GetDevice() const {return device;}
inline long long GetActiveModeId() const