Table of Contents
wmffix
wmffix is a library created by me (pahaze) intended to fix the usage of the Windows Media Foundation on Windows for ARM32 through LLVM-MinGW. It's based on MinGW's CRT libraries and headers for WMF. It's licensed under the GPLv3 license.
Actual Usage
No actual WMF libraries are overwritten for development purposes. Because of this, you'll have to change the headers and libraries used in any code.
Instead of using this:
#include <mfapi.h>
#include <mfidl.h>
#include <mfreadwrite.h>
#include <propsys.h>
You use this:
#include <mfapi2.h>
#include <mfcaptureengine.h>
#include <mfd3d12.h>
#include <mfidl2.h>
#include <mfmediacapture.h>
#include <mfreadwrite2.h>
#include <propsys2.h>
As for the libraries, instead of using -lmfuuid
and -lpropsys
, you'll use -lmfuuid2
and -lpropsys2
. No actual code needs to be changed. Just the headers and libraries.