| 108 | } |
| 109 | } |
| 110 | virtual HRESULT STDMETHODCALLTYPE SetAncillaryData(IDeckLinkVideoFrameAncillary *ancillary) |
| 111 | { |
| 112 | if (_ancillary) |
| 113 | _ancillary->Release(); |
| 114 | _ancillary = ancillary; |
| 115 | _ancillary->AddRef(); |
| 116 | return S_OK; |
| 117 | } |
| 118 | virtual HRESULT STDMETHODCALLTYPE QueryInterface(REFIID riid, LPVOID *ppv) |
| 119 | { |
| 120 | if (DECKLINK_IsEqualIID(riid, IID_IUnknown)) { |
no test coverage detected