How to connect object to the filter graph?
问题 What I need to do is - get decoded sample frames (like vector<frames> ) from DirectShow in order to do it I follow this implementation https://docs.microsoft.com/en-us/windows/win32/directshow/using-the-sample-grabber There is my implementation bool coAudioPlayerSampleGrabber::LoadImp(SoundDataType dataType, unsigned char const * pData, int64_t dataLen) { Cleanup(); m_bReady = false; HRESULT hr = S_OK; assert(pData); assert(dataLen); m_memBuffer.resize(dataLen); memcpy(m_memBuffer.data(),