| 98 | |
| 99 | virtual HRESULT STDMETHODCALLTYPE GetTimecode (BMDTimecodeFormat format, IDeckLinkTimecode **timecode) { return S_FALSE; } |
| 100 | virtual HRESULT STDMETHODCALLTYPE GetAncillaryData(IDeckLinkVideoFrameAncillary **ancillary) |
| 101 | { |
| 102 | *ancillary = _ancillary; |
| 103 | if (_ancillary) { |
| 104 | _ancillary->AddRef(); |
| 105 | return S_OK; |
| 106 | } else { |
| 107 | return S_FALSE; |
| 108 | } |
| 109 | } |
| 110 | virtual HRESULT STDMETHODCALLTYPE SetAncillaryData(IDeckLinkVideoFrameAncillary *ancillary) |
| 111 | { |
| 112 | if (_ancillary) |
no test coverage detected