|
@@ -5,7 +5,7 @@
|
|
|
|
|
|
class OBSVideoFrame : public IDeckLinkMutableVideoFrame {
|
|
class OBSVideoFrame : public IDeckLinkMutableVideoFrame {
|
|
private:
|
|
private:
|
|
- BMDFrameFlags flags;
|
|
|
|
|
|
+ BMDFrameFlags flags = bmdFrameFlagDefault;
|
|
BMDPixelFormat pixelFormat = bmdFormat8BitYUV;
|
|
BMDPixelFormat pixelFormat = bmdFormat8BitYUV;
|
|
|
|
|
|
long width;
|
|
long width;
|
|
@@ -16,6 +16,7 @@ private:
|
|
|
|
|
|
public:
|
|
public:
|
|
OBSVideoFrame(long width, long height, BMDPixelFormat pixelFormat);
|
|
OBSVideoFrame(long width, long height, BMDPixelFormat pixelFormat);
|
|
|
|
+ ~OBSVideoFrame();
|
|
|
|
|
|
HRESULT STDMETHODCALLTYPE SetFlags(BMDFrameFlags newFlags) override;
|
|
HRESULT STDMETHODCALLTYPE SetFlags(BMDFrameFlags newFlags) override;
|
|
|
|
|