mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-03 15:06:34 +00:00
26 lines
781 B
C
26 lines
781 B
C
|
#ifndef __CAPTURE_H__
|
||
|
#define __CAPTURE_H__
|
||
|
|
||
|
#include "DeckLinkAPI.h"
|
||
|
|
||
|
class DeckLinkCaptureDelegate : public IDeckLinkInputCallback
|
||
|
{
|
||
|
public:
|
||
|
DeckLinkCaptureDelegate();
|
||
|
~DeckLinkCaptureDelegate();
|
||
|
|
||
|
virtual HRESULT STDMETHODCALLTYPE QueryInterface(REFIID iid, LPVOID *ppv) { return E_NOINTERFACE; }
|
||
|
virtual ULONG STDMETHODCALLTYPE AddRef(void);
|
||
|
virtual ULONG STDMETHODCALLTYPE Release(void);
|
||
|
virtual HRESULT STDMETHODCALLTYPE VideoInputFormatChanged(BMDVideoInputFormatChangedEvents, IDeckLinkDisplayMode*, BMDDetectedVideoInputFormatFlags);
|
||
|
virtual HRESULT STDMETHODCALLTYPE VideoInputFrameArrived(IDeckLinkVideoInputFrame*, IDeckLinkAudioInputPacket*);
|
||
|
|
||
|
void *priv;
|
||
|
|
||
|
private:
|
||
|
ULONG m_refCount;
|
||
|
pthread_mutex_t m_mutex;
|
||
|
};
|
||
|
|
||
|
#endif
|