MCPcopy Create free account
hub / github.com/Aleksoid1978/VideoRenderer / QueryInterface

Method QueryInterface

Source/MediaSampleSideData.cpp:33–44  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

31}
32
33STDMETHODIMP CMediaSampleSideData::QueryInterface(REFIID riid, __deref_out void **ppv)
34{
35 CheckPointer(ppv, E_POINTER);
36 ValidateReadWritePtr(ppv, sizeof(PVOID));
37
38 if (riid == __uuidof(IMediaSideData)) {
39 return GetInterface((IMediaSideData*) this, ppv);
40 }
41 else {
42 return __super::QueryInterface(riid, ppv);
43 }
44}
45
46STDMETHODIMP_(ULONG) CMediaSampleSideData::Release()
47{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected