| 25 | struct SideDataGUIDComparer |
| 26 | { |
| 27 | bool operator()(const GUID & Left, const GUID & Right) const |
| 28 | { |
| 29 | // comparison logic goes here |
| 30 | return memcmp(&Left, &Right, sizeof(Right)) < 0; |
| 31 | } |
| 32 | }; |
| 33 | |
| 34 | class CMediaSampleSideData : public CMediaSample, public IMediaSideData |
nothing calls this directly
no outgoing calls
no test coverage detected