I need to create a custom MFT because it's the only way to get raw frames in YUV format on windows phone 8.1 (Runtime, no silverlight).
I know it's not easy but I don't have any other choice.
I'm trying to learn for the example of GrayscaleTransform: https://code.msdn.microsoft.com/windowsapps/Media-Capture-Sample-adf87622
But I don't really understand how does it work. The only thing I see which has a reference on the C++ Grayscale in the Application is :
_mediaCaptureMgr.AddEffectAsync(Windows.Media.Capture.MediaStreamType.Photo,"GrayscaleTransform.GrayscaleEffect", null);
There isn't any instance of the Grayscale created, or any called to any methods. So, I'm wondering how does is work ?
Thanks,
Sebastien
The MediaCapture sample registers GrayscaleTransform.GrayscaleEffect in its Pakage.appxmanifest, line 35:
This lets the MediaCapture object find the added effect and add it to the media pipeline.
An app can also register MFTs with the MediaExtensionManager class.