From: Shaun Ren sren@codeweavers.com
--- dlls/mfplat/main.c | 1 + include/mfapi.h | 1 + 2 files changed, 2 insertions(+)
diff --git a/dlls/mfplat/main.c b/dlls/mfplat/main.c index e1315de125a..f868b2a37d0 100644 --- a/dlls/mfplat/main.c +++ b/dlls/mfplat/main.c @@ -2125,6 +2125,7 @@ const char *debugstr_mf_guid(const GUID *guid) X(MFVideoFormat_WMV2), X(MFVideoFormat_WMV3), X(MFVideoFormat_WVC1), + X(MFVideoFormat_IV50), X(MFT_CATEGORY_OTHER), X(MFVideoFormat_Y210), X(MFVideoFormat_Y216), diff --git a/include/mfapi.h b/include/mfapi.h index 3185fc6944f..7402bcd892b 100644 --- a/include/mfapi.h +++ b/include/mfapi.h @@ -134,6 +134,7 @@ DEFINE_MEDIATYPE_GUID(MFVideoFormat_WMV1, MAKEFOURCC('W','M','V','1')); DEFINE_MEDIATYPE_GUID(MFVideoFormat_WMV2, MAKEFOURCC('W','M','V','2')); DEFINE_MEDIATYPE_GUID(MFVideoFormat_WMV3, MAKEFOURCC('W','M','V','3')); DEFINE_MEDIATYPE_GUID(MFVideoFormat_WVC1, MAKEFOURCC('W','V','C','1')); +DEFINE_MEDIATYPE_GUID(MFVideoFormat_IV50, MAKEFOURCC('I','V','5','0'));
DEFINE_GUID(MFVideoFormat_Base_HDCP, 0xeac3b9d5, 0xbd14, 0x4237, 0x8f, 0x1f, 0xba, 0xb4, 0x28, 0xe4, 0x93, 0x12); DEFINE_GUID(MFVideoFormat_H264_ES, 0x3f40f4f0, 0x5622, 0x4ff8, 0xb6, 0xd8, 0xa1, 0x7a, 0x58, 0x4b, 0xee, 0x5e);