I am implementing an example of media foundation, using below link. https://msdn.microsoft.com/en-us/library/windows/desktop/ms701605(v=vs.85).aspx The change that I have did to this example is I have added to Streams by calling. CreateMediaSource(wFile1, &m_pSource_1); CreateMediaSource(wFile2, &m_pSource_2); CreateAggregatedSource(m_pSource_1, m_pSource_2, &m_pAggregatedSource); m_pAggregatedSource->CreatePresentationDescriptor(&pSourcePD); m_pSession->SetTopology(0, pTopology); Issue that I am facing is, I am getting below error [...] read more