I'm trying to build an IMFTransform object that operates on frames in-place, instead of copying them. I started with the nicely-written MFT_Grayscale + MFPlayer2 sample in the Windows SDK. The MFT_Grayscale sample converts color images to grayscale by copying each frame, but it looks like that shouldn't be a requirement. Here are the changes I made:
- I made sure GetOutputStreamInfo returns the flags with MFT_OUTPUT_STREAM_PROVIDES_SAMPLES set.
- I changed the ProcessOutput call so that the input sample is AddRef'd and placed in the right slot in the output buffer array.
After doing this, it appears to operate fine for a few frames. I get successful ProcessInput and ProcessOutput calls. But then I start getting OnMediaPlayerEvent callback with error codes. The first is of type MFP_EVENT_TYPE_PLAY and the error is E_ABORT. Then I get a bunch of callbacks of type MFP_EVENT_TYPE_ERROR with the error as E_NOINTERFACE. But I can't tell what interface might be missing from what object.
Has anyone seen this behavior before? Any ideas on how to fix it?