I'm trying to access the USB web with MJPG format in Media Foundation. for decoding the buffer sample i'm using the MFT intel hardware.
hr = m_pTransform->ProcessInput(0, pInputSample, 0);
this process input API throws the error code 0xc00d36b5.
I need to know what causes the error.
Microsoft docs say that
0xc00d36b5 = MF_E_NOTACCEPTINGor "The transform cannot process more input at this time." andSo you probably need to call or keep calling
ProcessOutput()to get your decoded buffer(s).