1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- #pragma once
- #include "platform.hpp"
- #include "obs.hpp"
- class OBSVideoFrame : public IDeckLinkMutableVideoFrame {
- private:
- BMDFrameFlags flags = bmdFrameFlagDefault;
- BMDPixelFormat pixelFormat = bmdFormat8BitYUV;
- long width;
- long height;
- long rowBytes;
- unsigned char *data;
- public:
- OBSVideoFrame(long width, long height, BMDPixelFormat pixelFormat);
- ~OBSVideoFrame();
- HRESULT STDMETHODCALLTYPE SetFlags(BMDFrameFlags newFlags) override;
- HRESULT STDMETHODCALLTYPE SetTimecode(
- BMDTimecodeFormat format, IDeckLinkTimecode *timecode) override;
- HRESULT STDMETHODCALLTYPE SetTimecodeFromComponents(
- BMDTimecodeFormat format, uint8_t hours, uint8_t minutes,
- uint8_t seconds, uint8_t frames,
- BMDTimecodeFlags flags) override;
- HRESULT
- STDMETHODCALLTYPE
- SetAncillaryData(IDeckLinkVideoFrameAncillary *ancillary) override;
- HRESULT STDMETHODCALLTYPE
- SetTimecodeUserBits(BMDTimecodeFormat format,
- BMDTimecodeUserBits userBits) override;
- long STDMETHODCALLTYPE GetWidth() override;
- long STDMETHODCALLTYPE GetHeight() override;
- long STDMETHODCALLTYPE GetRowBytes() override;
- BMDPixelFormat STDMETHODCALLTYPE GetPixelFormat() override;
- BMDFrameFlags STDMETHODCALLTYPE GetFlags() override;
- HRESULT STDMETHODCALLTYPE GetBytes(void **buffer) override;
- //Dummy implementations of remaining virtual methods
- virtual HRESULT STDMETHODCALLTYPE
- GetTimecode(/* in */ BMDTimecodeFormat format,
- /* out */ IDeckLinkTimecode **timecode) override
- {
- UNUSED_PARAMETER(format);
- UNUSED_PARAMETER(timecode);
- return E_NOINTERFACE;
- };
- virtual HRESULT STDMETHODCALLTYPE GetAncillaryData(
- /* out */ IDeckLinkVideoFrameAncillary **ancillary) override
- {
- UNUSED_PARAMETER(ancillary);
- return E_NOINTERFACE;
- };
- // IUnknown interface (dummy implementation)
- virtual HRESULT STDMETHODCALLTYPE QueryInterface(REFIID iid,
- LPVOID *ppv) override
- {
- UNUSED_PARAMETER(iid);
- UNUSED_PARAMETER(ppv);
- return E_NOINTERFACE;
- }
- virtual ULONG STDMETHODCALLTYPE AddRef() override { return 1; }
- virtual ULONG STDMETHODCALLTYPE Release() override { return 1; }
- };
|